@import url('themes.css');
@import url('fonts.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #050505;
    --secondary-color: #0f0f0f;
    --accent-color: #141414;
    --highlight-color: #1c1c1c;
    --highlight-color-2: #1c1c1c;
    --highlight-color-3: #1c1c1c;
    --text-primary: #ffffff;
    --text-secondary: #a3a3a3;
    --bg-dark: #000000;
    --bg-card: rgba(255, 255, 255, 0.04);
    --border-color: rgba(255, 255, 255, 0.09);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.12);
    --success-color: #333333;
    --warning-color: #333333;
    --danger-color: #333333;
    --navy-blue: #0a0a0a;
    --navy-blue-light: #141414;
    --navy-blue-dark: #000000;
    --accent-primary: #ef2323;
    --accent-secondary: #ff5050;
    --accent-glow: rgba(239, 35, 35, 0.22);
    --surface-nav: rgba(0, 0, 0, 0.86);
    --surface-nav-scrolled: rgba(0, 0, 0, 0.96);
    --surface-modal-start: rgba(14, 14, 14, 0.98);
    --surface-modal-end: rgba(0, 0, 0, 0.98);
    --surface-panel: rgba(8, 8, 8, 0.55);
    --surface-footer: rgba(5, 5, 5, 0.98);
    --shadow-nav: rgba(0, 0, 0, 0.75);
    --bg-gradient: radial-gradient(ellipse at bottom, #111111 0%, #000000 100%);
    --orb-1: rgba(255, 255, 255, 0.045);
    --orb-2: rgba(255, 255, 255, 0.03);
    --orb-3: rgba(255, 255, 255, 0.02);
    --grid-line: rgba(255, 255, 255, 0.025);
    --theme-color-meta: #000000;
    --bg-primary: #0a0a0a;
    --bg-elevated: #111111;
    --bg-surface: #161616;
    --surface-card: rgba(18, 18, 18, 0.95);
    --surface-tag: rgba(255, 255, 255, 0.07);
    --text-muted: rgba(163, 163, 163, 0.85);
    --brand-red: #ef2323;
    --brand-red-light: #ff5050;
    --brand-red-dark: #c81010;
    --brand-red-glow: rgba(239, 35, 35, 0.22);
    --brand-red-soft: rgba(239, 35, 35, 0.18);
    --brand-red-soft-strong: rgba(239, 35, 35, 0.28);
    --surface-dropdown: linear-gradient(135deg, rgba(18, 18, 18, 0.98), rgba(8, 8, 8, 0.98));
    --surface-card-gradient: linear-gradient(135deg, rgba(20, 20, 20, 0.88), rgba(10, 10, 10, 0.94));
    --hero-accent-gradient: linear-gradient(135deg, #ff5858 0%, #ef2323 45%, #d41818 75%, #a80000 100%);
    --hero-gradient:
        radial-gradient(ellipse 90% 65% at 50% -10%, rgba(239, 35, 35, 0.22) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 82% 15%, rgba(168, 0, 0, 0.1) 0%, transparent 48%),
        radial-gradient(ellipse 40% 35% at 15% 80%, rgba(239, 35, 35, 0.06) 0%, transparent 50%);
    --hero-title-gradient: linear-gradient(165deg, #ffffff 0%, #e8e8e8 50%, #a3a3a3 100%);
    --btn-primary-bg: linear-gradient(180deg, #f53535 0%, #ef2323 38%, #d01818 72%, #a80000 100%);
    --btn-primary-bg-hover: linear-gradient(180deg, #ff5a5a 0%, #f03030 38%, #e02020 72%, #b81010 100%);
    --btn-primary-color: #ffffff;
    --btn-primary-border: rgba(255, 110, 110, 0.4);
    --btn-primary-shadow: 0 4px 20px rgba(239, 35, 35, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    --btn-primary-shadow-hover: 0 8px 28px rgba(239, 35, 35, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    --btn-secondary-bg: transparent;
    --btn-secondary-color: var(--text-secondary);
    --btn-secondary-border: rgba(255, 255, 255, 0.14);
    --btn-secondary-bg-hover: rgba(255, 255, 255, 0.06);
    --btn-secondary-border-hover: rgba(255, 255, 255, 0.24);
    --btn-secondary-color-hover: var(--text-primary);
    --cta-btn-padding-y: 0.65rem;
    --cta-btn-padding-x: 1.25rem;
    --cta-btn-font-size: 0.9375rem;
    --cta-btn-radius: 0;
    --cta-btn-min-height: 2.75rem;
    --cta-btn-min-width: 11.75rem;
    --cta-btn-gap: 0.5rem;
    --cta-btn-icon-size: 19px;
    --nav-cta-padding-y: 0.5rem;
    --nav-cta-padding-x: 1.15rem;
    --nav-cta-font-size: 0.8125rem;
    --nav-cta-radius: 0;
    --nav-cta-min-height: 2.25rem;
    --nav-cta-gap: 0.35rem;
    --nav-cta-icon-size: 16px;
    --btn-radius: 0;
    --card-radius: 0;
    --font-display: 'General Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --heading-weight: 500;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

img, svg {
    max-width: 100%;
    height: auto;
}

/* Modal */
.modal-overlay[hidden] {
    display: none !important;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal {
    width: min(720px, 100%);
    max-height: min(82vh, 720px);
    overflow: auto;
    border-radius: var(--card-radius);
    background: linear-gradient(135deg, var(--surface-modal-start), var(--surface-modal-end));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
    padding: 24px;
    position: relative;
}

.modal-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: -0.5px;
    margin-bottom: 0.25rem;
}

.modal-subtitle {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
}

.modal-form label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.modal-form input,
.modal-form textarea {
    width: 100%;
    padding: 0.9rem 0.95rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    outline: none;
}

.modal-form textarea {
    resize: vertical;
    min-height: 120px;
}

.modal-submit {
    width: 100%;
    justify-content: center;
    margin-top: 0.25rem;
}

.modal-fineprint {
    margin-top: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.modal-success h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin-bottom: 0.25rem;
}

.modal-success p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .modal-overlay {
        padding: 16px;
    }

    .modal {
        padding: 20px 16px 16px;
        border-radius: 16px;
        max-height: 86vh;
    }
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: var(--bg-gradient);
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--orb-1) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--orb-2) 0%, transparent 70%);
    top: 50%;
    right: -150px;
    animation-delay: -7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--orb-3) 0%, transparent 70%);
    bottom: -150px;
    left: 30%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.container {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 0 80px;
    position: relative;
    z-index: 1;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--surface-nav);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--shadow-nav);
}

.navbar.scrolled {
    background: var(--surface-nav-scrolled);
    box-shadow: 0 8px 32px var(--shadow-nav);
}

.nav-container {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    position: absolute;
    left: 80px;
}

.logo-container a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    display: block;
}

.logo:hover {
    opacity: 0.8;
}

.logo-container::after {
    content: 'Shred Security';
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    margin-left: 0;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    text-transform: none;
    line-height: 1.2;
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo-container:hover::after {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu li:last-child {
    position: absolute;
    right: 80px;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
    letter-spacing: 0.3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
}

.landing-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--cta-btn-padding-y) var(--cta-btn-padding-x);
    min-height: var(--cta-btn-min-height);
    min-width: var(--cta-btn-min-width);
    font-size: var(--cta-btn-font-size);
    font-weight: 600;
    border-radius: var(--cta-btn-radius);
    letter-spacing: 0.02em;
    box-sizing: border-box;
    text-align: center;
}

.nav-link.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--nav-cta-padding-y) var(--nav-cta-padding-x);
    min-height: var(--nav-cta-min-height);
    min-width: 0;
    width: auto;
    font-size: var(--nav-cta-font-size);
    font-weight: 500;
    border-radius: var(--nav-cta-radius);
    letter-spacing: 0.02em;
    box-sizing: border-box;
    background: var(--btn-primary-bg);
    color: var(--btn-primary-color);
    border: 1px solid var(--btn-primary-border);
    box-shadow: var(--btn-primary-shadow);
    white-space: nowrap;
    gap: var(--nav-cta-gap);
}

.nav-link.btn-primary .btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-link.btn-primary .btn-icon svg {
    width: var(--nav-cta-icon-size);
    height: var(--nav-cta-icon-size);
}

.landing-buttons .btn-icon svg {
    width: var(--cta-btn-icon-size);
    height: var(--cta-btn-icon-size);
}

.nav-link.btn-primary::after {
    display: none;
}

.nav-link.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--btn-primary-bg-hover);
    border-color: var(--btn-primary-border);
    box-shadow: var(--btn-primary-shadow-hover);
    color: var(--btn-primary-color);
}

/* Dropdown Styles — editorial panels */
.dropdown {
    position: relative;
}

/* Invisible bridge so the menu stays open while moving the cursor down */
.dropdown::after {
    content: '';
    position: absolute;
    left: -0.5rem;
    right: -0.5rem;
    top: 100%;
    height: 14px;
    z-index: 1000;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 0.625rem;
    opacity: 0.55;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.dropdown:hover .dropdown-arrow,
.dropdown:focus-within .dropdown-arrow,
.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
    opacity: 0.9;
}

.dropdown-menu {
    --dd-border: rgba(255, 255, 255, 0.09);
    --dd-muted: rgba(255, 255, 255, 0.52);
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: #050505;
    border: 1px solid var(--dd-border);
    border-radius: 0;
    padding: 0;
    min-width: 300px;
    max-width: 340px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.2s ease 0.18s,
        visibility 0.2s ease 0.18s,
        transform 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.18s;
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.03);
    z-index: 1001;
    overflow: hidden;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(239, 35, 35, 0.65) 45%, transparent);
    pointer-events: none;
}

.dropdown-menu--grid {
    min-width: 420px;
    max-width: 460px;
}

.dropdown-menu--align-end {
    left: auto;
    right: -0.75rem;
    transform: translateY(4px);
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu,
.dropdown.is-hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition-delay: 0s;
}

.dropdown:hover .dropdown-menu--align-end,
.dropdown:focus-within .dropdown-menu--align-end,
.dropdown.is-hover .dropdown-menu--align-end {
    transform: translateY(0);
}

.dropdown-header {
    padding: 0.85rem 1rem 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
}

.dropdown-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand-red);
    margin-bottom: 0.35rem;
}

.dropdown-label::before {
    content: '';
    width: 18px;
    height: 2px;
    background: var(--brand-red);
    flex-shrink: 0;
}

.dropdown-lede {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    line-height: 1.45;
    color: var(--dd-muted);
    margin: 0;
}

.dropdown-items {
    display: flex;
    flex-direction: column;
}

.dropdown-menu--grid .dropdown-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dropdown-menu--grid .dropdown-link:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.04);
}

.dropdown-link {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.dropdown-menu--grid .dropdown-link:nth-last-child(-n+2) {
    border-bottom: none;
}

.dropdown-link:last-child {
    border-bottom: none;
}

.dropdown-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--brand-red);
    transform: scaleY(0);
    transform-origin: center top;
    transition: transform 0.2s ease;
}

.dropdown-link:hover,
.dropdown-link:focus-visible {
    background: rgba(239, 35, 35, 0.06);
    color: var(--text-primary);
    outline: none;
}

.dropdown-link:hover::before,
.dropdown-link:focus-visible::before {
    transform: scaleY(1);
}

.dropdown-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.7rem;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.dropdown-link:hover .dropdown-link-icon,
.dropdown-link:focus-visible .dropdown-link-icon {
    color: var(--brand-red);
    border-color: rgba(239, 35, 35, 0.35);
    background: rgba(239, 35, 35, 0.08);
}

.dropdown-link-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
    min-width: 0;
}

.dropdown-link-title {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.92);
}

.dropdown-link-desc {
    font-size: 0.8125rem;
    line-height: 1.45;
    color: var(--dd-muted);
}

.dropdown-ext {
    display: inline-block;
    margin-left: 0.2rem;
    font-size: 0.6875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.38);
    vertical-align: baseline;
}

.dropdown-link--external:hover .dropdown-ext,
.dropdown-link--external:focus-visible .dropdown-ext {
    color: rgba(239, 35, 35, 0.75);
}

.dropdown-link--featured {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dropdown-link--featured:hover,
.dropdown-link--featured:focus-visible {
    background: rgba(239, 35, 35, 0.08);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
    position: absolute;
    right: 20px;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger span {
    width: 22px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
    padding: 180px 120px 120px;
    text-align: center;
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 60px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.35rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 0.85rem 1.75rem;
    border-radius: var(--btn-radius);
    text-decoration: none;
    font-weight: 600;
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, color 0.25s ease;
    display: inline-block;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
    font-family: inherit;
    line-height: 1.2;
}

.btn.btn-with-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.btn .btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: var(--btn-primary-bg);
    color: var(--btn-primary-color);
    border-color: var(--btn-primary-border);
    box-shadow: var(--btn-primary-shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--btn-primary-bg-hover);
    border-color: var(--btn-primary-border);
    box-shadow: var(--btn-primary-shadow-hover);
    color: var(--btn-primary-color);
}

.btn-secondary {
    background: var(--btn-secondary-bg);
    color: var(--btn-secondary-color);
    border-color: var(--btn-secondary-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--btn-secondary-bg-hover);
    border-color: var(--btn-secondary-border-hover);
    color: var(--btn-secondary-color-hover);
    transform: translateY(-2px);
}

/* Section Styles */
.section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -1px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.15rem;
    margin-bottom: 4rem;
    font-weight: 400;
}

/* Services Section */
.services {
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    width: 100%;
}

/* Make service cards more compact for horizontal layout */
.smart-contract-audits .service-card {
    padding: 2rem;
    text-align: center;
}

.smart-contract-audits .service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.smart-contract-audits .service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.smart-contract-audits .service-card p {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive layout for smaller screens */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.service-card:nth-child(odd) {
    transform: translateY(0);
}

.service-card:nth-child(even) {
    transform: translateY(20px);
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 12px var(--accent-glow));
    opacity: 0.9;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 16px var(--accent-glow));
    opacity: 1;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--accent-primary);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Service Sections */
.pricing-hero {
    padding-bottom: 20px;
}

.engagements-section {
    padding: 20px 0 20px 0;
    position: relative;
}

.services-section {
    padding: 20px 0 80px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-family: var(--font-display);
}

.engagements-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.engagements-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-family: var(--font-display);
}

.engagements-header p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Team Section */
.team {
    position: relative;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    width: 100%;
}

.team-member {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-member:hover::before {
    opacity: 1;
}

.team-member:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.team-avatar {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.team-member h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.team-role {
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 1;
}

.team-title {
    color: var(--accent-primary);
    font-weight: 500;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.team-bio {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* Engagements Section - Modern Design */
.engagements-section-modern {
    padding: 150px 0;
    position: relative;
    z-index: 1;
}

.engagements-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 6rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.engagements-highlights {
    position: sticky;
    top: 120px;
}

.highlights-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.highlights-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 2rem;
}

.highlights-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 100%;
}

.engagements-list-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--card-radius);
    padding: 0;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.engagements-list {
    display: flex;
    flex-direction: column;
}

.engagement-row {
    display: grid;
    grid-template-columns: 60px 1fr auto auto;
    gap: 2rem;
    align-items: center;
    padding: 2rem 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s ease;
}

.engagement-row:last-child {
    border-bottom: none;
}

.engagement-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.engagement-logo-area {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.engagement-logo-img {
    width: 50px;
    height: 50px;
    border-radius: var(--card-radius);
    object-fit: contain;
    background: rgba(255, 255, 255, 0.03);
    padding: 4px;
}

.engagement-logo-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--card-radius);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.engagement-info {
    flex: 1;
}

.engagement-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.engagement-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.engagement-date-modern {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    white-space: nowrap;
}

.engagement-btn {
    padding: 0.6rem 1.2rem;
    border-radius: var(--btn-radius);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.view-btn {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.view-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.private-btn {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: default;
}

/* Impact Metrics Section - Modern Design */
.impact-section-modern {
    padding: 150px 0;
    position: relative;
    z-index: 1;
}

.impact-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 6rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.impact-highlights {
    position: sticky;
    top: 120px;
}

.stats-list-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 0;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.stats-list {
    display: flex;
    flex-direction: column;
}

.stat-row {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2rem 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s ease;
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.stat-icon-area {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.2rem;
}

.stat-info {
    flex: 1;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.stat-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Testimonials Section - Attractive Design */
.testimonials-section-attractive {
    padding: 150px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.testimonials-section-attractive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.testimonials-header-attractive {
    text-align: left;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.testimonials-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.testimonials-title-attractive {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
    letter-spacing: -1px;
}

.testimonials-grid-attractive {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card-attractive {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card-attractive::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-card-attractive::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-card-attractive:hover {
    transform: translateY(-12px) scale(1.02);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.testimonial-card-attractive:hover::before {
    opacity: 1;
}

.testimonial-card-attractive:hover::after {
    opacity: 1;
}

.quote-decoration {
    position: absolute;
    top: 2rem;
    right: 2rem;
    opacity: 0.15;
    transform: rotate(180deg);
    transition: transform 0.5s ease;
}

.testimonial-card-attractive:hover .quote-decoration {
    transform: rotate(180deg) scale(1.1);
    opacity: 0.25;
}

.testimonial-content-attractive {
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-text-attractive {
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--text-primary);
    margin: 0;
    font-weight: 400;
    position: relative;
}

.testimonial-author-attractive {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    position: relative;
    z-index: 1;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-avatar-attractive {
    position: relative;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.avatar-img-attractive {
    width: 100%;
    height: 100%;
    border-radius: 14px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.avatar-inner {
    width: 100%;
    height: 100%;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.avatar-glow {
    position: absolute;
    inset: -4px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.3s ease;
}

.testimonial-card-attractive:hover .avatar-glow {
    opacity: 0.6;
}

.testimonial-card-attractive:hover .avatar-img-attractive,
.testimonial-card-attractive:hover .avatar-inner {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.author-text-attractive {
    flex: 1;
}

.author-name-attractive {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
}

.author-title-attractive {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 400;
    opacity: 0.8;
}

/* Projects Section - Modern Design (Single Column) */
.projects-section-modern {
    padding: 150px 0;
    position: relative;
    z-index: 1;
}

.projects-header-single {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.projects-list-container-single {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 0;
    backdrop-filter: blur(10px);
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.projects-list {
    display: flex;
    flex-direction: column;
}

.project-row {
    padding: 2rem 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s ease;
}

.project-row:last-child {
    border-bottom: none;
}

.project-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.project-name-modern {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Trusted By Section */
.trusted-by-section {
    padding: 150px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.trusted-by-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.trusted-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.trusted-tagline {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-top: 1.5rem;
    margin-bottom: 0;
    opacity: 0.8;
    font-style: italic;
    line-height: 1.6;
}

.trusted-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 3rem auto 0;
    align-items: center;
}

.trusted-logo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.trusted-logo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.trusted-logo-card:hover::before {
    opacity: 1;
}

.trusted-logo-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.trusted-logo-card a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 100%;
    height: 120px;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.logo-img {
    max-width: 100%;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.4s ease;
    display: block;
}

.trusted-logo-card span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    opacity: 0.8;
    transition: all 0.4s ease;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.trusted-logo-card:hover .logo-img {
    opacity: 1;
    transform: scale(1.1);
}

.trusted-logo-card:hover span {
    opacity: 1;
    color: var(--text-primary);
}

.trusted-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
}

.trusted-card-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}


/* Team Section - Modern Design (Single Column with Cards) */
/* Team Section - New Design */
.team-section-new {
    padding: 150px 0;
    position: relative;
    z-index: 1;
    background: var(--bg-primary);
}

.team-header-new {
    text-align: left;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.team-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.team-title-new {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
}

.team-description-new {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    opacity: 0.9;
}

.team-cards-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
}

.team-card-new {
    background: var(--surface-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.team-card-new:hover {
    transform: translateY(-4px);
    border-color: var(--glass-border);
    box-shadow: 0 12px 32px var(--shadow-nav), 0 0 0 1px var(--accent-glow);
}

.team-card-avatar-new {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    flex-shrink: 0;
    width: 100%;
}

.team-avatar-icon-new {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand-red-soft), rgba(239, 35, 35, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    flex-shrink: 0;
}

.team-avatar-img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid var(--border-color);
    display: block;
    flex-shrink: 0;
}

.team-card-content-new {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
    min-height: 0;
    align-items: center;
    text-align: center;
}

.team-handle {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
    flex-shrink: 0;
    text-align: center;
}

.team-handle a {
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.team-handle a:hover {
    color: var(--accent-primary);
    transform: translateY(-2px);
    text-decoration: underline;
}

.team-bio-new {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
    flex: 1;
    text-align: center;
}

.team-found-bugs {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-languages {
    border-top: none;
    padding-top: 0.75rem;
}

.found-bugs-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.team-tag {
    display: inline-block;
    padding: 0.4rem 0.75rem;
    background: var(--surface-tag);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.team-languages .team-tag {
    padding: 0.25rem 0.5rem;
    font-size: 0.65rem;
    font-weight: 500;
}

.team-section-modern {
    padding: 150px 0;
    position: relative;
    z-index: 1;
}

.team-header-single {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.team-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background: var(--surface-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
}

.team-card:hover {
    background: var(--bg-card);
    border-color: var(--glass-border);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow-nav);
}

.team-card-avatar {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.team-avatar-icon-large {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.team-card-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.team-card-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.team-card-role {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin: 0;
}

.team-card-bio {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 1rem;
    margin-bottom: 0;
}

.team-list {
    display: flex;
    flex-direction: column;
}

.team-row {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 2rem;
    align-items: start;
    padding: 2rem 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s ease;
}

.team-row:last-child {
    border-bottom: none;
}

.team-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.team-avatar-area {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-avatar-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
}

.team-info-modern {
    flex: 1;
}

.team-name-modern {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.team-role-modern {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: block;
}

.team-bio-modern {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Responsive for All Modern Sections */
@media (max-width: 1024px) {
    .engagements-layout,
    .impact-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .engagements-highlights,
    .impact-highlights {
        position: static;
    }

    .testimonials-grid-attractive {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonial-card-attractive {
        padding: 2.5rem 2rem;
    }

    .testimonials-header-attractive {
        text-align: center;
        margin-bottom: 3rem;
    }

    .engagement-row {
        grid-template-columns: 50px 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .engagement-date-modern,
    .engagement-btn {
        grid-column: 2;
        justify-self: start;
        margin-top: 0.5rem;
    }

    .engagement-date-modern {
        margin-right: 1rem;
    }

    .stat-row,
    .team-row {
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .projects-header-single,
    .team-header-single,
    .trusted-by-header {
        margin-bottom: 3rem;
    }

    .trusted-tagline {
        font-size: 1rem;
        margin-top: 1rem;
    }

    .projects-list-container-single,
    .team-list-container-single {
        max-width: 100%;
    }

    .team-cards-grid,
    .team-cards-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .team-header-new {
        text-align: center;
        margin-bottom: 3rem;
    }

    .team-card-new {
        padding: 1.5rem;
    }

    .team-avatar-icon-new,
    .team-avatar-img {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .trusted-card {
        min-width: 160px;
        padding: 1.5rem 2rem;
    }
}

/* Engagements Section - Old Style (keep for reference) */
.engagements {
    position: relative;
}

.engagements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    width: 100%;
}

.engagement-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.engagement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.engagement-card:hover::before {
    opacity: 1;
}

.engagement-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.engagement-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.engagement-header h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--text-primary);
    font-weight: 600;
}

.engagement-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.engagement-type {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 1;
}

.engagement-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.engagement-stats {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.engagement-stats span {
    padding: 0.5rem 1rem;
    background: var(--surface-panel);
    border-radius: 8px;
    font-size: 0.85rem;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

/* Book an Audit Section */
.book-audit {
    position: relative;
}

.audit-form-container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.audit-form {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 3.5rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--surface-panel);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
    background: var(--surface-nav);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Call to Action Section */
.cta-section {
    padding: 40px 0;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.cta-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cta-heading {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -1px;
    margin: 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--btn-radius);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: fit-content;
    backdrop-filter: blur(10px);
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.15);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

.cta-tagline {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin: 0;
    opacity: 0.8;
}

.cta-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.wireframe-graphic {
    width: 100%;
    max-width: 500px;
    height: 400px;
    position: relative;
}

.wireframe-svg {
    width: 100%;
    height: 100%;
    opacity: 0.7;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
}

/* Footer Styles */
.footer {
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(1.25rem, 3vw, 1.75rem);
    margin-top: 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(239, 35, 35, 0.55) 50%, transparent);
    pointer-events: none;
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(0, 0.75fr)) minmax(0, 0.95fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    padding-bottom: clamp(2rem, 4vw, 2.75rem);
}

.footer-brand {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: var(--heading-weight);
    letter-spacing: -0.03em;
    color: var(--text-primary);
    text-decoration: none;
    margin-bottom: 0.65rem;
}

.footer-brand:hover {
    color: var(--brand-red);
}

.footer-brand-desc {
    max-width: 26ch;
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.5);
}

.footer-nav-heading {
    display: block;
    font-family: var(--font-body);
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(239, 35, 35, 0.75);
    margin-bottom: 1rem;
}

.footer-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-nav-list a {
    font-size: 0.875rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-nav-list a:hover {
    color: var(--text-primary);
}

.footer-cta-text {
    margin: 0 0 1rem;
    font-size: 0.875rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.55);
    max-width: 22ch;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.25rem;
    font-size: 0.875rem;
    border-radius: var(--btn-radius);
}

.footer-inline-link {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--brand-red);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-inline-link:hover {
    color: var(--brand-red-light);
}

.footer-rail {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    justify-self: start;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.75rem;
    padding: 0 0.15rem;
    background: transparent;
    border: none;
    border-radius: 0;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}

.social-link:hover {
    background: transparent;
    color: var(--brand-red);
    transform: none;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.25rem;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.42);
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: rgba(255, 255, 255, 0.72);
}

.footer-copy {
    margin: 0;
    justify-self: end;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.38);
    text-align: right;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Legacy footer class aliases */
.footer-content,
.footer-bottom,
.footer-links,
.footer-cta,
.footer-cta-title,
.footer-cta-button,
.footer-cta-tagline {
    display: none;
}

/* Legal Pages Styles */
.legal-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-header {
    text-align: center;
    margin-bottom: 4rem;
}

.legal-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.legal-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin: 0;
}

.legal-body {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.legal-section h2 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2.5rem 0 1rem 0;
}

.legal-section h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 0.5rem 0;
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-section li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-table th {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-weight: 600;
}

.cookie-table td {
    color: var(--text-secondary);
}

/* Careers Page Styles */
.careers-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.careers-header {
    text-align: center;
    margin-bottom: 4rem;
}

.careers-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.careers-subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.careers-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.careers-content {
    max-width: 1000px;
    margin: 0 auto;
}

.careers-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.careers-intro h2 {
    color: var(--text-primary);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.careers-intro p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.open-positions h2 {
    color: var(--text-primary);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.position-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.no-positions {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.no-positions-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--accent-primary);
    font-size: 2rem;
}

.no-positions h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.no-positions p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.position-header h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.position-meta {
    display: flex;
    gap: 1rem;
}

.position-type,
.position-location {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.position-description {
    margin-bottom: 1.5rem;
}

.position-description p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.position-requirements,
.position-benefits {
    margin-bottom: 1.5rem;
}

.position-requirements h4,
.position-benefits h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.position-requirements ul,
.position-benefits ul {
    margin: 0;
    padding-left: 1.5rem;
}

.position-requirements li,
.position-benefits li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.25rem;
}

.position-actions {
    text-align: right;
}

.culture-section {
    margin-bottom: 4rem;
}

.culture-section h2 {
    color: var(--text-primary);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.culture-item {
    text-align: center;
    padding: 2rem;
}

.culture-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--accent-primary);
    font-size: 1.5rem;
}

.culture-item h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.culture-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.benefits-section {
    margin-bottom: 4rem;
}

.benefits-section h2 {
    color: var(--text-primary);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
}

.benefit-item i {
    font-size: 2rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.benefit-item h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.application-process {
    margin-bottom: 4rem;
}

.application-process h2 {
    color: var(--text-primary);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--bg-dark);
    font-weight: 700;
    font-size: 1.2rem;
}

.process-step h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-section {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
}

.contact-section h2 {
    color: var(--text-primary);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-section p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item i {
    color: var(--accent-primary);
}

.contact-item a {
    color: var(--text-secondary);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--accent-primary);
}

/* Responsive Footer */
@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-brand-col {
        grid-column: 1 / -1;
    }

    .footer-rail {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: left;
    }

    .footer-social,
    .footer-legal-links,
    .footer-copy {
        justify-self: start;
        text-align: left;
    }
}

@media (max-width: 640px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .careers-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .culture-grid,
    .benefits-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .legal-body {
        padding: 2rem 1.5rem;
    }
    
    .position-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .position-actions {
        text-align: left;
    }
}

/* Blog Section Styles */
.blog-section {
    padding: 150px 0 100px;
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

.blog-header {
    text-align: center;
    margin-bottom: 5rem;
}

.blog-main-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.blog-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.blog-card-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-thumbnail {
    transform: scale(1.05);
}

.blog-placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.blog-placeholder-img-large {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.blog-card-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    flex-wrap: wrap;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-category {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    gap: 0.8rem;
    color: var(--text-primary);
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

/* Blog Post Page Styles */
.blog-post-section {
    padding: 150px 0 100px;
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

.blog-post-container {
    max-width: 900px;
    margin: 0 auto;
}

.blog-post {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.blog-post-header {
    padding: 3rem 3rem 2rem;
}

.blog-post-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    flex-wrap: wrap;
}

.blog-post-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-post-category {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-post-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -1px;
}

.blog-post-author {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.blog-post-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
}

.blog-post-header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-post-content {
    padding: 3rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

.blog-post-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.blog-post-content h2:first-child {
    margin-top: 0;
}

.blog-post-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
}

.blog-post-content ul,
.blog-post-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.blog-post-content li {
    margin-bottom: 0.8rem;
}

/* Vulnerability Table Styling */
.vulnerability-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.vulnerability-table thead {
    background: rgba(255, 255, 255, 0.08);
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

.vulnerability-table th {
    padding: 1.2rem 1.5rem;
    text-align: left;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vulnerability-table td {
    padding: 1.2rem 1.5rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.95rem;
}

.vulnerability-table tbody tr {
    transition: all 0.3s ease;
}

.vulnerability-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(4px);
}

.vulnerability-table tbody tr:last-child td {
    border-bottom: none;
}

.vulnerability-table td:nth-child(3) {
    font-weight: 500;
    color: var(--text-primary);
}

/* Severity color coding - will be handled via JS if needed */
.vulnerability-table td.severity-critical {
    color: #ff6b6b;
}

.vulnerability-table td.severity-high {
    color: #ff8c69;
}

.vulnerability-table td.severity-medium {
    color: #ffa366;
}

.vulnerability-table td.severity-low {
    color: #b8b8b8;
}

/* Code Block Styling */
.blog-post-content pre {
    background: var(--bg-elevated);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    overflow-x: auto;
    position: relative;
    font-size: 0.9rem;
    line-height: 1.6;
}

.blog-post-content pre code {
    font-family: 'Courier New', 'Fira Code', 'Consolas', monospace;
    color: #e0e0e0;
    display: block;
    white-space: pre;
    overflow-x: auto;
}

.blog-post-content code:not(pre code) {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', 'Fira Code', 'Consolas', monospace;
    font-size: 0.9em;
    color: #ffd700;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Prism.js Theme Override */
.blog-post-content pre[class*="language-"] {
    background: var(--bg-elevated);
}

.blog-post-content code[class*="language-"] {
    background: transparent;
    padding: 0;
    border: none;
    color: inherit;
}

.blog-post-footer {
    padding: 2rem 3rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1.5rem;
}

.blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-back-link:hover {
    gap: 0.8rem;
}

.blog-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.share-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Responsive Blog Styles */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-post-header,
    .blog-post-content,
    .blog-post-footer {
        padding: 2rem 1.5rem;
    }

    .blog-post-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Responsive Design */
@media (max-width: 1440px) {
    .container,
    .nav-container,
    .landing-container {
        padding: 0 64px;
        max-width: 1320px;
    }

    .logo-container {
        left: 64px;
    }

    .nav-menu {
        gap: 2rem;
    }

    .nav-menu li:last-child {
        right: 64px;
    }

    .landing-container {
        gap: 4rem;
    }

    .landing-title {
        font-size: clamp(2.5rem, 4.5vw, 4rem);
    }

    .landing-description {
        font-size: 1rem;
        max-width: 720px;
    }

    .landing-stats {
        gap: 1.75rem;
    }

    .hero {
        padding: 140px 0 70px;
    }

    .section,
    .team-section-new,
    .engagements-section-modern,
    .testimonials-section-attractive,
    .cta-section {
        padding: 55px 0;
    }
}

@media (max-width: 1366px) {
    .container,
    .nav-container,
    .landing-container {
        padding: 0 56px;
        max-width: 1180px;
    }

    .logo-container {
        left: 56px;
    }

    .nav-menu {
        gap: 1.15rem;
    }

    .nav-menu li:last-child {
        right: 56px;
    }

    .logo-container::after {
        display: none;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .nav-link.btn-primary {
        padding: var(--nav-cta-padding-y) var(--nav-cta-padding-x);
        font-size: var(--nav-cta-font-size);
        min-height: var(--nav-cta-min-height);
    }

    .landing-container {
        gap: 3.5rem;
    }

    .landing-title {
        font-size: clamp(2.3rem, 5vw, 3.8rem);
    }

    .landing-description {
        max-width: 680px;
    }

    .hero {
        padding: 130px 0 65px;
    }
}

@media (min-width: 1200px) {
    .team-cards-grid-new {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .dropdown::after {
        display: none;
    }

    .dropdown:hover .dropdown-menu,
    .dropdown:focus-within .dropdown-menu,
    .dropdown.is-hover .dropdown-menu {
        transform: none;
        transition-delay: 0s;
    }

    .dropdown-menu--align-end {
        left: auto;
        right: auto;
    }

    .container,
    .nav-container,
    .landing-container {
        padding: 0 40px;
    }

    /* Navbar: switch to hamburger earlier to avoid link overlap */
    .hamburger {
        display: flex;
        right: 16px;
        z-index: 1001;
    }

    .logo-container {
        left: 40px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background: var(--surface-nav-scrolled);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 1.5rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        gap: 0;
        z-index: 999;
        max-height: calc(100vh - 75px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        margin: 0;
    }

    .nav-link {
        padding: 1rem 0;
        font-size: 1rem;
        width: 100%;
        display: block;
        margin: 0;
    }

    .nav-menu li:last-child {
        position: static;
        right: auto;
        margin-top: 0.5rem;
        padding: 0 1.5rem;
    }

    .nav-menu .nav-link.btn-primary {
        width: 100%;
        min-width: 0;
        padding: var(--nav-cta-padding-y) var(--nav-cta-padding-x);
        min-height: var(--nav-cta-min-height);
        font-size: var(--nav-cta-font-size);
        border-radius: var(--nav-cta-radius);
    }

    /* Dropdown — mobile accordion */
    .dropdown {
        width: 100%;
        margin: 0;
    }

    .dropdown-toggle {
        justify-content: center;
        padding: 1rem 0;
        font-size: 1rem;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 0;
        padding: 0;
        margin: 0 1rem 0.5rem;
        box-shadow: none;
        display: none;
        width: calc(100% - 2rem);
        min-width: auto;
        max-width: none;
    }

    .dropdown-menu::before {
        display: none;
    }

    .dropdown-menu--grid {
        min-width: auto;
        max-width: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-header {
        display: block;
        padding: 0.75rem 0.85rem 0.65rem;
        text-align: left;
    }

    .dropdown-menu--grid .dropdown-items {
        grid-template-columns: 1fr;
    }

    .dropdown-items {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .dropdown-link {
        padding: 0.7rem 0.85rem;
        gap: 0.65rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dropdown-link:last-child {
        border-bottom: none;
    }

    .dropdown-link:hover,
    .dropdown-link:focus-visible {
        background: rgba(239, 35, 35, 0.06);
    }

    .dropdown-link-desc {
        display: block;
    }

    .dropdown-arrow {
        transition: transform 0.25s ease;
        margin-left: 0.35rem;
    }

    .dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }

    .team-cards-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .landing-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .landing-visual {
        height: 450px;
    }

    .hub-core {
        width: 180px;
        height: 180px;
    }

    .hub-inner {
        width: 120px;
        height: 120px;
    }

    .node-circle {
        width: 70px;
        height: 70px;
    }

    .node-label {
        font-size: 0.65rem;
    }

    .node-subtitle {
        font-size: 0.5rem;
    }

    .blockchain-node {
        width: 120px;
    }
}

@media (max-width: 900px) {
    .engagements-layout,
    .impact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .testimonials-grid-attractive {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
    }

    .hamburger {
        display: flex;
        right: 16px;
        z-index: 1001;
    }

    .nav-container,
    .container,
    .landing-container {
        padding: 0 16px;
    }

    .logo-container {
        left: 16px;
        gap: 0.2rem;
    }

    .logo {
        height: 40px;
    }

    .logo-container::after {
        font-size: 0.9rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background: var(--surface-nav-scrolled);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 1.5rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        gap: 0;
        z-index: 999;
        max-height: calc(100vh - 75px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        margin: 0;
    }

    .nav-link {
        padding: 1rem 0;
        font-size: 1rem;
        width: 100%;
        display: block;
        margin: 0;
    }

    .nav-menu li:last-child {
        position: static;
        right: auto;
        margin-top: 0.5rem;
        padding: 0 1.5rem;
    }

    .nav-menu .nav-link.btn-primary {
        width: 100%;
        min-width: 0;
        padding: var(--nav-cta-padding-y) var(--nav-cta-padding-x);
        min-height: var(--nav-cta-min-height);
        font-size: var(--nav-cta-font-size);
        border-radius: var(--nav-cta-radius);
    }

    /* Mobile Dropdown Styles */
    .dropdown {
        width: 100%;
        margin: 0;
    }

    .dropdown-toggle {
        justify-content: center;
        padding: 1rem 0;
        font-size: 1rem;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 0;
        padding: 0;
        margin: 0 16px 0.5rem;
        box-shadow: none;
        display: none;
        width: calc(100% - 32px);
        min-width: auto;
        max-width: none;
        box-sizing: border-box;
    }

    .dropdown-menu::before {
        display: none;
    }

    .dropdown-menu--grid {
        min-width: auto;
        max-width: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-header {
        display: block;
        padding: 0.75rem 0.85rem 0.65rem;
        text-align: left;
    }

    .dropdown-menu--grid .dropdown-items {
        grid-template-columns: 1fr;
    }

    .dropdown-items {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .dropdown-link {
        padding: 0.7rem 0.85rem;
        gap: 0.65rem;
        margin: 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dropdown-link:last-child {
        border-bottom: none;
    }

    .dropdown-link:hover,
    .dropdown-link:focus-visible {
        background: rgba(239, 35, 35, 0.06);
    }

    .dropdown-link-content {
        text-align: left;
        flex: 1;
    }

    .dropdown-link-title {
        display: block;
        font-size: 0.8125rem;
    }

    .dropdown-link-desc {
        display: block;
        font-size: 0.8125rem;
    }

    .dropdown-link-icon {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.625rem;
    }

    .dropdown-arrow {
        transition: transform 0.25s ease;
        margin-left: 0.35rem;
    }

    .dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }

    .hide-on-mobile {
        display: none;
    }

    .landing-section {
        padding: 100px 0 60px;
        min-height: auto;
        justify-content: center;
    }

    .landing-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        padding: 0 16px;
    }

    .landing-content {
        order: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .content-wrapper {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .landing-title,
    .landing-description {
        text-align: center;
        width: 100%;
    }

    .landing-buttons {
        justify-content: center;
        width: 100%;
    }

    .landing-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
        margin-bottom: 1.5rem;
    }

    .landing-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .landing-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .landing-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .landing-visual {
        display: none !important;
    }

    .blockchain-visualization {
        display: none !important;
    }

    .hero {
        padding: 150px 0 80px;
        min-height: auto;
    }

    .section {
        padding: 60px 0;
    }

    .team-section-new,
    .engagements-section-modern,
    .testimonials-section-attractive,
    .cta-section {
        padding: 60px 0;
    }

    .team-header-new,
    .engagements-section-modern .container > div:first-child,
    .testimonials-header-attractive {
        margin-bottom: 2.5rem;
    }

    .team-cards-grid-new {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-card-new {
        padding: 2rem 1.5rem;
    }

    .testimonials-grid-attractive {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonial-card-attractive {
        padding: 2rem 1.5rem;
    }

    .engagements-layout,
    .impact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .engagement-row {
        padding: 1.5rem;
        gap: 1rem;
    }

    .stat-row {
        padding: 1.5rem;
        gap: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .audit-form {
        padding: 2.5rem 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .cta-text {
        align-items: center;
    }

    .cta-button {
        margin: 0 auto;
        width: 100%;
        max-width: 300px;
    }

    .landing-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem 0;
    }
}

@media (max-width: 480px) {
    .nav-container,
    .container,
    .landing-container {
        padding: 0 16px;
    }

    .logo-container {
        left: 16px;
    }

    .hamburger {
        right: 16px;
    }

    .landing-section {
        padding: 90px 0 40px;
    }

    .landing-title {
        font-size: clamp(1.75rem, 10vw, 2.5rem);
        letter-spacing: -1px;
    }

    .landing-description {
        font-size: 0.95rem;
    }

    .landing-visual {
        display: none !important;
    }

    .blockchain-visualization {
        display: none !important;
    }

    .node-circle {
        width: 50px;
        height: 50px;
    }

    .node-label {
        font-size: 0.55rem;
        margin-top: 0.8rem;
    }

    .node-subtitle {
        font-size: 0.4rem;
    }

    .blockchain-node {
        width: 90px;
    }

    .team-card-new,
    .testimonial-card-attractive,
    .engagement-row {
        padding: 1.5rem 1rem;
    }

    .team-handle {
        font-size: 1rem;
    }

    .team-bio-new {
        font-size: 0.85rem;
    }

    .team-tags {
        gap: 0.4rem;
    }

    .team-tag {
        font-size: 0.7rem;
        padding: 0.35rem 0.65rem;
    }

    .team-languages .team-tag {
        font-size: 0.6rem;
        padding: 0.2rem 0.45rem;
    }

    .cta-heading {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }

    .testimonial-text-attractive {
        font-size: 1rem;
    }

    .engagement-name {
        font-size: 1rem;
    }

    .engagement-desc {
        font-size: 0.9rem;
    }
}

/* ── Mobile: missing sections pass ── */
@media (max-width: 768px) {

    /* Engagement cards */
    .engagement-row {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .engagement-logo {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }

    .engagement-meta {
        flex-direction: column;
        gap: 4px;
        align-items: flex-start;
    }

    .engagement-tags {
        flex-wrap: wrap;
        gap: 4px;
    }

    /* Impact stats */
    .impact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .impact-number {
        font-size: 2.2rem;
    }

    /* Blog grid */
    .blog-hero {
        padding: 100px 0 50px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-card {
        padding: 1.5rem;
    }

    /* Portfolio table: hide low-priority columns on mobile */
    .portfolio-table .col-date,
    .portfolio-table .col-type {
        display: none;
    }

    /* Careers / contact page */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Section headers */
    .section-header,
    .section-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
    }

    /* Generic card grids */
    .cards-grid,
    .projects-grid-zenith,
    .clients-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Services preview */
    .service-card {
        padding: 1.5rem;
    }

    /* Audit process CTA */
    .audit-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 20px;
        gap: 20px;
    }

    .audit-cta-heading {
        font-size: 1.5rem;
    }

    .audit-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .audit-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {

    /* Impact stats: stack */
    .impact-grid {
        grid-template-columns: 1fr;
    }

    /* Engagement full-width actions */
    .engagement-actions {
        width: 100%;
    }

    .engagement-action-btn {
        width: 100%;
        justify-content: center;
    }

    /* Blog card */
    .blog-card-meta {
        flex-wrap: wrap;
        gap: 6px;
    }

    /* Portfolio table: also hide severity on very small */
    .portfolio-table .col-severity {
        display: none;
    }

    /* Timeline on very small screens */
    .audit-tl-item {
        grid-template-columns: 32px 1fr;
        column-gap: 12px;
    }

    .audit-tl-dot {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
        box-shadow: 0 0 0 4px rgba(0,0,0,0.3);
    }

    .audit-tl-card {
        padding: 14px 16px;
    }

    .audit-tl-badge {
        font-size: 0.65rem;
    }

    .audit-tl-title {
        font-size: 0.95rem;
    }

    .audit-tl-desc {
        font-size: 0.87rem;
    }

    /* Stat row */
    .stat-row {
        flex-direction: column;
        gap: 0.75rem;
    }

    /* Modal */
    .modal {
        padding: 24px 18px;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .nav-link,
    .cta-button {
        min-height: 44px;
        min-width: 44px;
    }

    .hamburger {
        min-height: 44px;
        min-width: 44px;
        padding: 10px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Selection Styling */
::selection {
    background: rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
}

/* Landing Page Styles */
.landing-section {
    min-height: 100vh;
    padding: 120px 0 80px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-dark);
}

.page-home .landing-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image:
        radial-gradient(at 38% 18%, rgba(255, 255, 255, 0.035) 0, transparent 52%),
        radial-gradient(at 82% 6%, rgba(255, 255, 255, 0.02) 0, transparent 48%),
        radial-gradient(at 8% 62%, rgba(255, 255, 255, 0.018) 0, transparent 50%);
}

.landing-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 80px;
    background: var(--bg-dark);
    pointer-events: none;
    z-index: 0;
    mask-image: linear-gradient(to bottom, transparent, #000);
    -webkit-mask-image: linear-gradient(to bottom, transparent, #000);
}

.hero-ambient,
.landing-logo-panel {
    position: relative;
    overflow: hidden;
}

.landing-logo-panel canvas,
.hero-ambient canvas {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-reveal {
    opacity: 0;
    transform: translateY(50px);
    animation: heroReveal 0.65s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

.hero-reveal--delay-1 {
    animation-delay: 0.85s;
}

.hero-reveal--delay-2 {
    animation-delay: 1.05s;
}

.hero-reveal--delay-3 {
    animation-delay: 1.25s;
}

@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-reveal {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .scroll-reveal {
        opacity: 1;
        transform: none;
    }
}

.hide-on-mobile {
    display: inline;
}

.landing-container {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3.5rem);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.landing-split {
    display: grid;
    grid-template-columns: minmax(0, min(540px, 100%)) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
    width: 100%;
}

.landing-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.landing-logo-panel {
    min-height: clamp(420px, 60vh, 720px);
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: none;
}

.landing-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-wrapper {
    max-width: 560px;
}

.page-home .content-wrapper {
    padding: 0;
    max-width: 560px;
}

.page-home .landing-split {
    grid-template-columns: minmax(0, min(540px, 100%)) minmax(0, 1fr);
}

.page-home .landing-copy {
    text-align: left;
}

.page-home .landing-description {
    margin-left: 0;
    margin-right: 0;
}

    .page-home .landing-buttons {
        justify-content: flex-start;
        margin-left: 0;
        margin-right: auto;
    }

/* Mobile centering - must come AFTER base styles to win cascade */
@media (max-width: 768px) {
    .landing-section {
        justify-content: center;
        min-height: auto;
        padding: 100px 0 60px;
    }

    .landing-container {
        width: 100%;
        padding: 0 16px;
        max-width: 100%;
    }

    .landing-split {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .landing-copy,
    .page-home .landing-copy {
        text-align: center;
        align-items: center;
    }

    .content-wrapper,
    .page-home .content-wrapper {
        max-width: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .landing-title,
    .landing-description,
    .page-home .landing-title,
    .page-home .landing-description {
        text-align: center;
        width: 100%;
    }

    .landing-buttons,
    .page-home .landing-buttons {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        align-items: center;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .landing-logo-panel {
        min-height: 320px;
        order: -1;
    }
}

.content-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.landing-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 2rem;
    letter-spacing: -2px;
    color: var(--text-primary);
}

.landing-title-line {
    display: block;
}

.landing-title-accent {
    color: var(--brand-red, #ef2323);
}

.gradient-text {
    color: var(--text-primary);
}

.landing-description {
    font-size: 1.125rem;
    line-height: 1.9;
    letter-spacing: 0.012em;
    color: var(--text-secondary);
    margin-bottom: 1.85rem;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.landing-desc-lead {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.0625rem;
    font-weight: 400;
}

.landing-desc-line {
    display: block;
}

.landing-desc-line + .landing-desc-line {
    margin-top: 0.9rem;
}

.landing-desc-brand {
    color: var(--text-primary);
    font-weight: 600;
}

.landing-desc-line--secondary {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.88;
}

.landing-desc-highlight {
    color: var(--text-primary);
    font-weight: 500;
}

.landing-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.landing-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.landing-buttons .btn {
    flex: 1 1 var(--cta-btn-min-width);
}

.landing-buttons .btn.btn-with-icon {
    gap: var(--cta-btn-gap);
}

/* ── Homepage scroll reveals & polish ── */
.scroll-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.page-home .stat-row:nth-child(1) { transition-delay: 0.05s; }
.page-home .stat-row:nth-child(2) { transition-delay: 0.12s; }
.page-home .stat-row:nth-child(3) { transition-delay: 0.19s; }
.page-home .stat-row:nth-child(4) { transition-delay: 0.26s; }

.page-home .testimonial-card-attractive:nth-child(1) { transition-delay: 0.08s; }
.page-home .testimonial-card-attractive:nth-child(2) { transition-delay: 0.16s; }
.page-home .testimonial-card-attractive:nth-child(3) { transition-delay: 0.24s; }

.page-home .team-card:nth-child(1) { transition-delay: 0.05s; }
.page-home .team-card:nth-child(2) { transition-delay: 0.1s; }
.page-home .team-card:nth-child(3) { transition-delay: 0.15s; }
.page-home .team-card:nth-child(4) { transition-delay: 0.2s; }

.page-home .engagement-row:nth-child(1) { transition-delay: 0.04s; }
.page-home .engagement-row:nth-child(2) { transition-delay: 0.08s; }
.page-home .engagement-row:nth-child(3) { transition-delay: 0.12s; }
.page-home .engagement-row:nth-child(4) { transition-delay: 0.16s; }
.page-home .engagement-row:nth-child(5) { transition-delay: 0.2s; }
.page-home .engagement-row:nth-child(6) { transition-delay: 0.24s; }

.page-home .impact-section-modern,
.page-home .testimonials-section-attractive,
.page-home .team-section-new,
.page-home .engagements-section-modern {
    position: relative;
}

.page-home .landing-section {
    background: #000000;
}

.page-home .landing-section::before {
    background-image:
        radial-gradient(at 18% 42%, rgba(239, 35, 35, 0.045) 0, transparent 42%),
        radial-gradient(at 88% 18%, rgba(255, 255, 255, 0.022) 0, transparent 48%);
}

.page-home .landing-container {
    max-width: 1180px;
}

.page-home .landing-split {
    gap: clamp(1.5rem, 3vw, 2.75rem);
}

.page-home .landing-copy {
    padding-left: 1.35rem;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.page-home .landing-copy::before {
    content: '';
    position: absolute;
    left: -1px;
    top: 0.2rem;
    width: 2px;
    height: 2.25rem;
    background: var(--brand-red);
}

.page-home .landing-title {
    font-family: var(--font-display);
    font-size: clamp(1.875rem, 3.15vw, 2.75rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.035em;
    margin-bottom: 1.25rem;
}

.page-home .landing-title-accent {
    font-weight: 500;
}

.page-home .landing-description {
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.72;
    letter-spacing: 0.008em;
    color: rgba(255, 255, 255, 0.66);
    margin-bottom: 1.5rem;
    max-width: 100%;
}

.page-home .landing-desc-brand {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 500;
}

.page-home .landing-desc-highlight {
    color: rgba(255, 255, 255, 0.84);
    font-weight: 400;
}

.page-home .landing-buttons {
    gap: 0.75rem;
    margin-bottom: 0;
}

.page-home .landing-buttons .btn {
    font-size: 0.9375rem;
    padding: 0.72rem 1.35rem;
}

.page-home .hero-reveal {
    transform: translateY(22px);
    animation: heroRevealHome 0.7s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

@keyframes heroRevealHome {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .page-home .landing-copy {
        padding-left: 0;
        border-left: none;
    }

    .page-home .landing-copy::before {
        display: none;
    }
}

.page-home .landing-buttons .btn-primary {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.page-home .landing-buttons .btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
}

.page-home .landing-buttons .btn-primary {
    background: var(--brand-red, #ef2323);
    border-color: var(--brand-red, #ef2323);
    box-shadow: none;
}

.page-home .landing-buttons .btn-primary:hover {
    background: var(--brand-red-light, #ff5050);
    border-color: var(--brand-red-light, #ff5050);
    box-shadow: none;
}

.page-home .hero-reveal {
    animation-delay: 0.75s;
}

.page-home .hero-reveal--delay-1 {
    animation-delay: 0.95s;
}

.page-home .hero-reveal--delay-2 {
    animation-delay: 1.15s;
}

.page-home .hero-reveal--delay-3 {
    animation-delay: 1.35s;
}

@media (max-width: 1024px) {
    .landing-split,
    .page-home .landing-split {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .landing-copy,
    .page-home .landing-copy {
        text-align: center;
        align-items: center;
    }

    .content-wrapper,
    .page-home .content-wrapper {
        align-items: center;
    }

    .landing-title,
    .landing-description,
    .page-home .landing-title,
    .page-home .landing-description {
        text-align: center;
    }

    .landing-buttons,
    .page-home .landing-buttons {
        justify-content: center;
    }

    .landing-logo-panel {
        height: clamp(260px, 46vh, 380px);
        min-height: 0;
        width: 100%;
        order: -1;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.pricing-hero .portfolio-buttons .btn {
    padding: 0.8rem 1.65rem;
    font-size: 0.9375rem;
    min-width: 10.5rem;
    text-align: center;
    justify-content: center;
}

.pricing-hero .portfolio-buttons .btn-icon svg {
    width: 16px;
    height: 16px;
}

.trust-badges {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.badge-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--text-primary);
}

/* Blockchain Visualization */
.landing-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.blockchain-visualization {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 700px;
    margin: 0 auto;
}

/* Visual Grid Background */
.visual-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.03;
    z-index: 0;
}

.grid-line {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
}

.line-h-1 {
    top: 33.33%;
    left: 0;
    width: 100%;
    height: 1px;
}

.line-h-2 {
    top: 66.66%;
    left: 0;
    width: 100%;
    height: 1px;
}

.line-v-1 {
    top: 0;
    left: 33.33%;
    width: 1px;
    height: 100%;
}

.line-v-2 {
    top: 0;
    left: 66.66%;
    width: 1px;
    height: 100%;
}


.blockchain-visualization::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 60%, transparent 100%);
    animation: breathe 8s ease-in-out infinite;
    z-index: 0;
    filter: blur(2px);
}

@keyframes breathe {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

.network-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.hub-core {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 70%, transparent 100%);
    border: 3px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 0 60px rgba(255, 255, 255, 0.25),
        inset 0 0 60px rgba(255, 255, 255, 0.1),
        0 0 100px rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
}

.hub-core::before {
    content: '◆';
    position: absolute;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.4);
    animation: rotate 15s linear infinite;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
    z-index: 3;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hub-core:hover {
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 0 80px rgba(255, 255, 255, 0.35),
        inset 0 0 80px rgba(255, 255, 255, 0.12),
        0 0 120px rgba(255, 255, 255, 0.2);
}

.hub-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.4);
    animation: pulse 4s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.hub-pulse::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    animation: pulse 4s ease-in-out infinite;
    animation-delay: 1.5s;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.25);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.hub-inner {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 2px solid rgba(255, 255, 255, 0.25);
    position: relative;
    box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hub-orbital-ring {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1.5px dashed rgba(255, 255, 255, 0.25);
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 10s linear infinite reverse;
    z-index: 2;
}

.hub-inner::before {
    content: '';
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.06) 100%);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.2), inset 0 0 18px rgba(255, 255, 255, 0.1);
    z-index: 2;
}

.hub-inner::after {
    content: '';
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.9);
    z-index: 4;
}

.hub-label {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    font-size: 0.8rem;
    color: var(--text-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 1;
    font-family: var(--font-display);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    z-index: 10;
}

.blockchain-node {
    position: absolute;
    z-index: 6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 140px;
}

/* Position nodes equally distributed around center - same distance */
.node-1 {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.node-2 {
    top: 20%;
    right: 8%;
}

.node-3 {
    bottom: 15%;
    right: 8%;
}

.node-4 {
    bottom: 0%;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
}

.node-5 {
    bottom: 15%;
    left: 8%;
}

.node-6 {
    top: 20%;
    left: 8%;
}

.node-circle {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    border: 2.5px solid rgba(255, 255, 255, 0.4);
    position: relative;
    margin: 0 auto;
    backdrop-filter: blur(12px);
    box-shadow: 
        0 0 30px rgba(255, 255, 255, 0.25),
        inset 0 0 20px rgba(255, 255, 255, 0.08);
    transition: all 0.5s ease;
    transform: rotate(45deg);
    animation: nodeFloat 8s ease-in-out infinite;
}

.node-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 45%;
    height: 45%;
    border-radius: 4px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.06);
}

.node-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.9);
}

.node-1 .node-circle {
    animation-delay: 0s;
}

.node-2 .node-circle {
    animation-delay: -1.3s;
}

.node-3 .node-circle {
    animation-delay: -2.6s;
}

.node-4 .node-circle {
    animation-delay: -3.9s;
}

.node-5 .node-circle {
    animation-delay: -5.2s;
}

.node-6 .node-circle {
    animation-delay: -6.5s;
}

@keyframes nodeFloat {
    0%, 100% {
        transform: rotate(45deg) translateY(0px);
    }
    50% {
        transform: rotate(45deg) translateY(-8px);
    }
}

.blockchain-node:hover .node-circle {
    transform: rotate(45deg) scale(1.15);
    border-color: rgba(255, 255, 255, 0.55);
    box-shadow: 
        0 0 40px rgba(255, 255, 255, 0.35),
        inset 0 0 25px rgba(255, 255, 255, 0.1);
    animation: none;
}


.node-label {
    margin-top: 1.2rem;
    text-align: center;
    font-size: 0.65rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.75;
    transition: all 0.5s ease;
    white-space: nowrap;
    line-height: 1.2;
}

.node-subtitle {
    margin-top: 0.15rem;
    text-align: center;
    font-size: 0.5rem;
    color: var(--text-secondary);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.2px;
    opacity: 0.6;
    transition: all 0.3s ease;
    line-height: 1.15;
    white-space: normal;
}

.node-subtitle:first-of-type {
    margin-top: 0.35rem;
}

.node-4 .node-subtitle {
    font-size: 0.48rem;
    line-height: 1.1;
    margin-top: 0.1rem;
}

.node-4 .node-subtitle:first-of-type {
    margin-top: 0.3rem;
}

.blockchain-node:hover .node-label {
    opacity: 1;
    color: var(--text-primary);
    transform: translateY(-3px);
}

.blockchain-node:hover .node-subtitle {
    opacity: 0.8;
    color: var(--text-secondary);
}

.connections-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.connections-svg path {
    stroke-dasharray: 12, 10;
    animation: dashMove 25s linear infinite;
    transition: opacity 0.3s ease;
    stroke-linecap: round;
}

.blockchain-visualization:hover .connections-svg path {
    opacity: 0.7;
}


@keyframes dottedPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes dashMove {
    to {
        stroke-dashoffset: -500;
    }
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.security-shield {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 480px;
    height: 480px;
    z-index: 1;
}

.security-shield::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.1);
    animation: rotate 15s linear infinite reverse;
}

.shield-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ring-1 {
    width: 240px;
    height: 240px;
    animation: rotate 25s linear infinite;
    border-style: dashed;
    border-width: 2px;
}

.ring-2 {
    width: 320px;
    height: 320px;
    animation: rotate 30s linear infinite reverse;
    border-style: dashed;
    border-width: 1.5px;
}

.ring-3 {
    width: 460px;
    height: 460px;
    animation: rotate 35s linear infinite;
    border-style: dotted;
    border-width: 1px;
}

.ring-1::after,
.ring-2::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
    border-radius: 50%;
    animation: floatParticle 15s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.7),
                0 0 30px rgba(255, 255, 255, 0.4);
}

.particle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    animation: particlePulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

.particle-1 {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.particle-2 {
    top: 60%;
    left: 70%;
    animation-delay: -3s;
}

.particle-3 {
    top: 40%;
    right: 20%;
    animation-delay: -6s;
}

.particle-4 {
    bottom: 30%;
    left: 50%;
    animation-delay: -9s;
}

.particle-5 {
    top: 80%;
    left: 20%;
    animation-delay: -12s;
}

.particle-6 {
    top: 30%;
    right: 40%;
    animation-delay: -15s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.5;
    }
    50% {
        transform: translate(40px, -40px);
        opacity: 1;
    }
}

@keyframes particlePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Impact Metrics Section - Zenith Style */
.impact-section {
    padding: 150px 0;
    position: relative;
    z-index: 1;
}

.impact-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 5rem;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -1px;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.impact-stat {
    text-align: left;
    border-left: 1px solid var(--border-color);
    padding-left: 2rem;
}

.impact-number {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
    letter-spacing: -2px;
}

.impact-label {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
    font-weight: 400;
}

/* Testimonials Section - Zenith Style */
.testimonials-section {
    padding: 150px 0;
    position: relative;
    z-index: 1;
    background: var(--surface-panel);
}

.testimonials-grid-zenith {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1000px;
    margin: 4rem auto 0;
}

.testimonial-item-zenith {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-quote {
    padding-left: 2rem;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
}

.testimonial-quote p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-weight: 400;
    letter-spacing: -0.3px;
}

.testimonial-author-zenith {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-left: 2rem;
}

.author-name-zenith {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.author-role-zenith {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Services Preview Section */
.services-preview-section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
    background: var(--surface-panel);
}

.services-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.service-preview-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
}

.service-preview-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.service-preview-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.service-preview-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.service-preview-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.services-cta {
    text-align: center;
    margin-top: 4rem;
}

/* Client Logos Section - Removed */

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    align-items: center;
    justify-items: center;
}

.client-logo-item {
    padding: 1.5rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0.7;
    width: 100%;
    max-width: 250px;
}

.client-logo-item:hover {
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Projects Section - Zenith Style */
.projects-section-zenith {
    padding: 150px 0;
    position: relative;
    z-index: 1;
}

.projects-grid-zenith {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.project-item-zenith {
    padding: 1.5rem 2rem;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 0;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.project-item-zenith::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--text-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-item-zenith:hover {
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.3);
    padding-left: 2.5rem;
}

.project-item-zenith:hover::before {
    opacity: 1;
}

@media (max-width: 1024px) {
    .landing-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .landing-visual {
        height: 400px;
    }

    .landing-content {
        align-items: center;
        text-align: center;
    }

    .content-wrapper {
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .impact-stat {
        border-left: none;
        border-bottom: 1px solid var(--border-color);
        padding-left: 0;
        padding-bottom: 2rem;
        text-align: center;
    }

    .impact-number {
        font-size: 3.5rem;
    }

    .testimonial-quote p {
        font-size: 1.2rem;
    }

    .projects-grid-zenith {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-preview-grid {
        grid-template-columns: 1fr;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Final mobile override - must be last to win cascade */
@media (max-width: 768px) {
    /* Navbar: compact height, proper flex row */
    .navbar {
        padding: 0.4rem 0;
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 16px;
        position: relative;
    }

    .logo-container {
        position: static;
        left: auto;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .logo-container::after {
        content: 'Shred Security';
        display: block;
        font-size: 1rem;
        font-weight: 600;
        color: var(--text-primary);
    }

    .logo {
        height: 38px;
    }

    .hamburger {
        position: static;
        right: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        padding: 8px;
        z-index: 1001;
        align-self: center;
    }

    /* Fix dropdown & nav-menu */
    .nav-menu {
        top: 52px;
        max-height: calc(100vh - 52px);
    }

    .dropdown-menu {
        position: static !important;
        left: auto !important;
        transform: none !important;
        margin: 0.5rem 16px !important;
        width: calc(100% - 32px) !important;
        padding: 0.5rem 0.75rem;
        box-sizing: border-box;
    }

    .hide-on-mobile {
        display: none !important;
    }

    .landing-buttons {
        width: 100%;
        justify-content: center;
        align-items: center;
        max-width: 320px;
        margin: 0 auto 2.5rem auto;
        gap: 0.75rem;
    }

    .landing-buttons .btn {
        flex: 1 1 100%;
        width: 100%;
        min-width: 0;
    }

    .landing-title {
        margin-bottom: 1.5rem !important;
    }

    .landing-buttons {
        margin-top: 1.5rem !important;
    }

    .landing-section {
        padding: 185px 0 80px !important;
        min-height: auto !important;
    }

    .landing-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center;
        padding: 0 16px !important;
        max-width: 100%;
    }

    .landing-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100%;
    }

    .content-wrapper {
        max-width: 100% !important;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Portfolio Page Styles */
.portfolio-hero {
    padding: 150px 0 80px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.portfolio-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.portfolio-label {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.portfolio-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -2px;
}

.portfolio-subtitle {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 100%;
}

.portfolio-statement {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.portfolio-highlights {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.highlight-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.highlight-icon {
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.highlight-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.highlight-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Portfolio Team Section */
.portfolio-team-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.portfolio-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.2;
    letter-spacing: -1px;
}

.portfolio-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-team-category {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.team-category-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-team-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.portfolio-team-member {
    display: flex;
    align-items: center;
}

.team-member-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.team-member-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.team-member-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
}

.team-member-link i {
    color: var(--brand-red);
    font-size: 1.2rem;
}

/* Portfolio Tables */
.portfolio-audits-section,
.portfolio-competitions-section,
.portfolio-bugbounties-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.portfolio-table-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    overflow-x: auto;
}

.portfolio-table-scrollable {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.portfolio-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.portfolio-table-wide {
    min-width: 1200px;
}

.portfolio-table thead {
    background: rgba(255, 255, 255, 0.08);
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

.portfolio-table th {
    padding: 1.2rem 1rem;
    text-align: left;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.portfolio-table td {
    padding: 1.2rem 1rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
    vertical-align: middle;
}

.portfolio-table tbody tr {
    transition: all 0.3s ease;
}

.portfolio-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.portfolio-table tbody tr:last-child td {
    border-bottom: none;
}

.table-total-row {
    background: rgba(255, 255, 255, 0.05) !important;
    border-top: 2px solid rgba(255, 255, 255, 0.15) !important;
}

.table-total-row td {
    font-weight: 700;
    color: var(--text-primary);
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.finding-badge {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-right: 0.4rem;
    margin-bottom: 0.25rem;
    white-space: nowrap;
}

.finding-badge.solo {
    background: rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.4);
    color: #a78bfa;
}

.finding-severity--high {
    background: rgba(239, 35, 35, 0.14);
    border-color: rgba(239, 35, 35, 0.45);
    color: #ff9a9a;
}

.finding-severity--medium {
    background: rgba(245, 158, 11, 0.14);
    border-color: rgba(245, 158, 11, 0.42);
    color: #fbbf24;
}

.finding-severity--low {
    background: rgba(56, 189, 248, 0.12);
    border-color: rgba(56, 189, 248, 0.38);
    color: #7dd3fc;
}

.private-badge {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.report-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.report-link:hover {
    color: var(--brand-red);
    gap: 0.8rem;
}

.report-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.report-link:hover::after {
    transform: translateX(3px);
}

.contest-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.contest-link:hover {
    color: var(--brand-red);
    text-decoration: underline;
}

.coming-soon {
    color: var(--text-secondary);
    font-style: italic;
    opacity: 0.7;
}

/* Portfolio Contact Section */
.portfolio-contact-section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
    text-align: center;
}

.portfolio-contact-content {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 4rem 3rem;
    backdrop-filter: blur(10px);
}

.contact-icon {
    font-size: 3.5rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--btn-radius);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 250px;
    justify-content: center;
}

.contact-link.primary {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    font-size: 1.1rem;
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
}

.contact-link i {
    font-size: 1.3rem;
}

.contact-alt-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-alt-links .contact-link {
    min-width: auto;
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
}

/* Responsive Portfolio Styles */
@media (max-width: 1024px) {
    .portfolio-team-grid {
        grid-template-columns: 1fr;
    }

    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .portfolio-hero {
        padding: 120px 0 60px;
    }

    .portfolio-highlights,
    .portfolio-team-section,
    .portfolio-audits-section,
    .portfolio-competitions-section,
    .portfolio-bugbounties-section,
    .portfolio-contact-section {
        padding: 60px 0;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .highlight-card {
        padding: 2rem 1.5rem;
    }

    .portfolio-contact-content {
        padding: 3rem 2rem;
    }

    .contact-alt-links {
        flex-direction: column;
        width: 100%;
    }

    .contact-alt-links .contact-link {
        width: 100%;
    }

    .portfolio-table-container {
        padding: 1rem;
        border-radius: 12px;
    }

    .portfolio-table th,
    .portfolio-table td {
        padding: 0.8rem 0.6rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .portfolio-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }

    .portfolio-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .portfolio-contact-content {
        padding: 2.5rem 1.5rem;
    }

    .contact-link {
        min-width: 100%;
        padding: 0.9rem 1.5rem;
    }
}

/* Audit Process Page Styles */
.audit-process-hero {
    padding: 90px 0 40px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.audit-process-label {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    opacity: 0.75;
}

.audit-process-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 750;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -1.6px;
}

.audit-process-subtitle {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--text-secondary);
    max-width: 980px;
    margin: 0 auto;
}

/* ── Vertical Audit Timeline ── */
.audit-timeline-section {
    padding: 20px 0 100px;
    position: relative;
    z-index: 1;
}

.audit-timeline {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 760px;
    position: relative;
}

/* Each row */
.audit-tl-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto 1fr;
    column-gap: 24px;
    position: relative;
}

/* Vertical spine line below each dot (except last) */
.audit-tl-spine {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
    width: 2px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
    min-height: 24px;
}

.audit-tl-item--last .audit-tl-spine {
    display: none;
}

/* Icon dot */
.audit-tl-dot {
    grid-column: 1;
    grid-row: 1;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 0 0 6px rgba(0,0,0,0.3), 0 8px 24px rgba(0,0,0,0.4);
}

.audit-tl-dot--blue   { background: linear-gradient(135deg, var(--brand-red-light), var(--brand-red-dark)); color: #fff; }
.audit-tl-dot--green  { background: linear-gradient(135deg, #3fb950, #15803d); color: #fff; }
.audit-tl-dot--orange { background: linear-gradient(135deg, #ff7a1a, #f0532d); color: #fff; }
.audit-tl-dot--purple { background: linear-gradient(135deg, #7c5cff, #3b2dd8); color: #fff; }

/* Card */
.audit-tl-card {
    grid-column: 2;
    grid-row: 1 / 3;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    padding: 22px 24px;
    margin-bottom: 20px;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.audit-tl-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255,255,255,0.03), transparent);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.audit-tl-card:hover {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.audit-tl-card:hover::before {
    opacity: 1;
}

.audit-tl-card--featured {
    border-color: rgba(255, 122, 26, 0.25);
    background: rgba(255, 122, 26, 0.04);
}

.audit-tl-card--featured:hover {
    border-color: rgba(255, 122, 26, 0.4);
    background: rgba(255, 122, 26, 0.07);
}

/* Step number badge */
.audit-tl-badge {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    margin-bottom: 6px;
}

/* Title */
.audit-tl-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: var(--text-primary);
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.audit-tl-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ff7a1a;
    background: rgba(255, 122, 26, 0.12);
    border: 1px solid rgba(255, 122, 26, 0.25);
    border-radius: 999px;
    padding: 2px 10px;
    font-family: Inter, sans-serif;
}

/* Description */
.audit-tl-desc {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.65;
    margin: 0 0 12px;
}

/* Bullet list */
.audit-tl-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.audit-tl-bullets li {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    padding-left: 14px;
    position: relative;
}

.audit-tl-bullets li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.75rem;
}

/* Branch sub-items (Formal + Fuzzing inside manual review) */
.audit-tl-branches {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 14px;
}

.audit-tl-branch {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
}

.audit-tl-branch i {
    color: var(--brand-red);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.audit-tl-branch strong {
    display: block;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
    margin-bottom: 2px;
}

.audit-tl-branch span {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .audit-process-hero {
        padding: 80px 0 30px;
    }

    .audit-tl-item {
        grid-template-columns: 36px 1fr;
        column-gap: 16px;
    }

    .audit-tl-dot {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .audit-tl-card {
        padding: 18px;
    }

    .audit-tl-branches {
        grid-template-columns: 1fr;
    }

    .audit-tl-title {
        font-size: 1rem;
    }

    .audit-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 24px;
    }

    .audit-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .audit-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Pricing Page Styles */
.pricing-hero {
    padding: 100px 0 60px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.pricing-hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.pricing-hero .portfolio-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.pricing-hero .portfolio-label {
    font-size: 0.7rem;
    margin-bottom: 1rem;
}

.pricing-hero .portfolio-statement {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.pricing-hero .portfolio-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.pricing-models {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: var(--surface-card-gradient);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 40px var(--brand-red-glow);
}

.pricing-card.featured {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 1px var(--accent-primary), 0 20px 40px var(--accent-glow);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-primary);
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: 1.25rem;
    color: white;
}

.pricing-card.featured .pricing-icon {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.pricing-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--brand-red-soft);
    color: var(--accent-primary);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.pricing-card.featured .pricing-badge {
    background: var(--brand-red-soft-strong);
}

.pricing-content {
    text-align: center;
}

.pricing-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
    text-align: left;
}

.pricing-features i {
    color: var(--accent-primary);
    font-size: 0.9rem;
    min-width: 16px;
}

.pricing-cta {
    margin-top: auto;
}

.comparison-section {
    text-align: center;
    margin-bottom: 4rem;
}

.comparison-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.comparison-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: left;
}

.comparison-item h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.comparison-item i {
    color: var(--accent-primary);
}

.comparison-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-item li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.2rem;
}

.comparison-item li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
}

.pricing-cta-section {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--surface-card-gradient);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.pricing-cta-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.pricing-cta-section p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Responsive for Pricing Page */
@media (max-width: 768px) {
    .pricing-hero {
        padding: 100px 0 60px;
    }
    
    .pricing-models {
        padding: 60px 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-item {
        padding: 1.5rem;
    }
    
    .pricing-cta-section {
        padding: 2rem 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Site typography — General Sans headings @ weight 500 (see typography.css) */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display) !important;
    font-weight: var(--heading-weight) !important;
}

.landing-title,
.landing-title-accent,
.landing-title-line,
.hero-title,
.section-title,
.highlights-title,
.portfolio-title,
.audit-process-title,
.audit-tl-title,
.team-title-new,
.testimonials-title-attractive,
.modal-title,
.blog-title,
.blog-main-title,
.blog-post-title,
.blog-hero-title,
.blog-post-content h1,
.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4,
.team-category-title,
.team-member h3,
.pricing-header h3,
.pricing-card h3,
.highlight-card h3,
.service-card h3,
.service-preview-card h3,
.culture-item h3,
.benefit-item h3,
.process-step h3,
.legal-section h3,
.comparison-item h3,
.no-positions h3,
.position-header h3,
.engagement-header h3,
.engagements-header h2,
.dropdown-link-title,
.footer-cta-title,
.cta-heading,
.legal-title,
.careers-title,
.stat-number,
.engagement-name,
.author-name-attractive {
    font-family: var(--font-display) !important;
    font-weight: var(--heading-weight) !important;
}

.page-home .highlights-title,
.page-home .testimonials-title-attractive,
.page-home .team-title-new {
    font-family: var(--font-display) !important;
    font-weight: var(--heading-weight) !important;
}

.page-home .stat-number {
    font-weight: var(--heading-weight) !important;
}

.page-home .landing-desc-brand {
    font-weight: var(--heading-weight);
}

/* Buttons — sharp corners site-wide */
.btn,
button.btn,
a.btn,
.nav-link.btn-primary,
.landing-buttons .btn,
.engagement-btn,
.view-btn,
.private-btn,
.footer-cta-btn,
.modal-submit,
.modal-done,
.modal-close,
.btn-submit,
.cta-button,
.audit-cta-btn,
.engagement-action-btn,
.contact-link,
.page-home .engagements-view-all-link {
    border-radius: var(--btn-radius) !important;
}

/* Cards & panel surfaces — sharp corners site-wide */
.service-card,
.testimonial-card-attractive,
.trusted-logo-card,
.team-card-new,
.team-card,
.engagement-card,
.position-card,
.blog-card,
.pricing-card,
.highlight-card,
.comparison-item,
.stat-item,
.metric-cell,
.modal,
.legal-body,
.no-positions,
.editorial-statement,
.portfolio-statement,
.process-subtitle,
.dropdown-menu,
.audit-tooltip,
.blog-card-image,
.blog-card-thumbnail,
.service-icon,
.pricing-icon,
.dropdown-link-icon,
.trusted-card-icon,
.team-protocol-list li,
.page-home .team-card,
.page-home .engagement-row,
.page-home .testimonial-card-attractive,
.engagements-list-container,
.page-home .engagements-list-container,
.page-home .avatar-img-attractive,
.page-home .avatar-inner,
.page-home .engagement-logo-img,
.page-home .engagement-logo-icon,
.page-home .engagement-logo-area,
.page-editorial .pricing-card,
.page-editorial .service-card,
.page-audit-process .audit-tl-branch,
[class$="-card"] {
    border-radius: var(--card-radius) !important;
}
