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

        :root {
            --bg: #0A0F0D;
            --bg-light: #0F1512;
            --bg-card: #121A16;
            --bg-card-hover: #1A2620;
            --gold: #34D399;
            --gold-dim: rgba(52, 211, 153, 0.12);
            --gold-glow: rgba(52, 211, 153, 0.3);
            --blue: #6EE7B7;
            --blue-dim: rgba(110, 231, 183, 0.12);
            --white: #F0FDF4;
            --text: #E2E8F0;
            --text-secondary: #94A3B8;
            --text-muted: #64748B;
            --border: rgba(255, 255, 255, 0.06);
            --border-light: rgba(255, 255, 255, 0.1);
            --green: #22C55E;
            --red: #EF4444;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
            --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
            --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
            --radius: 16px;
            --radius-sm: 10px;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        ::selection {
            background: rgba(52, 211, 153, 0.25);
            color: var(--white);
        }

        .heading {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
            line-height: 1.15;
        }

        /* --- GRADIENT TEXT --- */
        .heading-gradient {
            background: linear-gradient(135deg, #F0FDF4 30%, #34D399 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* --- ANIMATED BORDER GLOW ON CARDS --- */
        @property --border-angle {
            syntax: '<angle>';
            initial-value: 0deg;
            inherits: false;
        }

        .glow-card {
            position: relative;
        }

        .glow-card::before {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: inherit;
            background: conic-gradient(from var(--border-angle), transparent 60%, var(--gold) 80%, transparent 100%);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s;
            animation: borderRotate 4s linear infinite;
        }

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

        @keyframes borderRotate {
            to { --border-angle: 360deg; }
        }

        .mono {
            font-family: 'JetBrains Mono', monospace;
        }

        /* --- BACKGROUND MESH + DOT GRID --- */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            background:
                radial-gradient(circle, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                radial-gradient(ellipse 800px 600px at 30% 30%, rgba(52, 211, 153, 0.06), transparent),
                radial-gradient(ellipse 600px 800px at 70% 60%, rgba(110, 231, 183, 0.04), transparent),
                radial-gradient(ellipse 900px 400px at 50% 90%, rgba(52, 211, 153, 0.03), transparent);
            background-size: 32px 32px, 100% 100%, 100% 100%, 100% 100%;
        }

        /* --- SKIP LINK --- */
        .skip-link {
            position: absolute;
            top: -100px;
            left: 1rem;
            background: var(--gold);
            color: #fff;
            padding: 0.5rem 1rem;
            border-radius: 0 0 8px 8px;
            z-index: 200;
            font-size: 0.85rem;
            font-weight: 600;
            text-decoration: none;
            transition: top 0.2s;
        }

        .skip-link:focus { top: 0; }

        /* --- SCROLL PROGRESS BAR (gold) --- */
        @supports (animation-timeline: scroll()) {
            .scroll-progress {
                position: fixed;
                top: 0;
                left: 0;
                height: 3px;
                width: 100%;
                background: linear-gradient(to right, #34D399, #6EE7B7);
                transform-origin: left;
                transform: scaleX(0);
                animation: scrollProgress linear;
                animation-timeline: scroll();
                z-index: 200;
            }
            @keyframes scrollProgress {
                to { transform: scaleX(1); }
            }
        }

        .scroll-progress-js {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            width: 0%;
            background: linear-gradient(to right, #34D399, #6EE7B7);
            z-index: 200;
            transition: width 0.08s linear;
        }

        /* --- LAYOUT --- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        section {
            position: relative;
            z-index: 1;
        }

        section[id] {
            scroll-margin-top: 88px;
        }

        /* --- NAV (frosted glass) --- */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 0 24px;
            transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
        }

        .nav.scrolled {
            background: rgba(10, 15, 13, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 1px 0 var(--border);
        }

        .nav-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }

        .nav-wordmark {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
            font-size: 1.3rem;
            color: var(--white);
            text-decoration: none;
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        .nav-wordmark span {
            color: var(--gold);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
            list-style: none;
        }

        .nav-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 500;
            transition: color 0.2s;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--white);
        }

        .nav-dropdown {
            position: relative;
        }

        .nav-dropdown > .nav-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: none;
            border: 0;
            font-family: inherit;
            cursor: pointer;
            padding: 0;
        }

        .nav-dropdown > .nav-link::after {
            content: '';
            width: 6px;
            height: 6px;
            border-right: 1.5px solid currentColor;
            border-bottom: 1.5px solid currentColor;
            transform: rotate(45deg) translateY(-2px);
            opacity: 0.7;
        }

        .nav-dropdown-menu {
            position: absolute;
            top: calc(100% + 14px);
            left: 50%;
            min-width: 230px;
            transform: translateX(-50%) translateY(8px);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            background: rgba(18, 26, 22, 0.98);
            border: 1px solid var(--border-light);
            border-radius: 12px;
            padding: 8px;
            box-shadow: var(--shadow-md);
            transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
        }

        .nav-dropdown-menu::before {
            content: '';
            position: absolute;
            top: -14px;
            left: 0;
            right: 0;
            height: 14px;
        }

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

        .nav-dropdown-menu a {
            display: block;
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.84rem;
            font-weight: 600;
            padding: 10px 12px;
            border-radius: 8px;
            transition: color 0.2s, background 0.2s;
        }

        .nav-dropdown-menu a:hover {
            color: var(--white);
            background: var(--gold-dim);
        }

        .nav-buttons {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .btn-ghost {
            color: var(--text-secondary);
            background: none;
            border: 1px solid var(--border-light);
            padding: 8px 20px;
            border-radius: 8px;
            font-size: 0.875rem;
            font-weight: 500;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.2s;
        }

        .btn-ghost:hover {
            color: var(--white);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .btn-gold {
            background: linear-gradient(135deg, #34D399, #10B981);
            color: #fff;
            border: none;
            padding: 10px 24px;
            border-radius: 8px;
            font-size: 0.875rem;
            font-weight: 700;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.2s;
            box-shadow: 0 2px 12px rgba(52, 211, 153, 0.25);
        }

        .btn-gold:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 20px rgba(52, 211, 153, 0.35);
        }

        .btn-gold-lg {
            padding: 14px 36px;
            font-size: 1rem;
            border-radius: 10px;
        }

        /* Hamburger */
        .nav-hamburger {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }

        .nav-hamburger span {
            display: block;
            width: 26px;
            height: 3px;
            background: var(--gold);
            margin: 5px 0;
            transition: all 0.3s;
            border-radius: 2px;
        }

        /* Mobile menu */
        .nav-mobile {
            display: none;
            position: fixed;
            top: 72px;
            left: 0;
            right: 0;
            background: rgba(10, 15, 13, 0.98);
            backdrop-filter: blur(20px);
            padding: 24px;
            border-bottom: 1px solid var(--border);
            z-index: 99;
        }

        .nav-mobile.open { display: block; }

        .nav-mobile a {
            display: block;
            color: var(--text);
            text-decoration: none;
            padding: 12px 0;
            font-size: 1rem;
            font-weight: 500;
            border-bottom: 1px solid var(--border);
        }

        .nav-mobile a:last-child { border: none; }

        /* --- HERO --- */
        .hero {
            padding: 160px 0 100px;
            text-align: center;
            position: relative;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--gold-dim);
            border: 1px solid rgba(212, 168, 83, 0.2);
            color: var(--gold);
            padding: 8px 18px;
            border-radius: 100px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 28px;
        }

        .hero-badge-below {
            margin-top: 32px;
            margin-bottom: 0;
        }

        .hero-badge .pulse {
            width: 8px;
            height: 8px;
            background: var(--gold);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

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

        .hero h1 {
            font-size: clamp(2.5rem, 6vw, 4.2rem);
            max-width: 800px;
            margin: 0 auto 20px;
            letter-spacing: -1px;
        }

        .hero h1 .gold { color: var(--gold); }

        .hero-rotating {
            height: 36px;
            overflow: hidden;
            margin-bottom: 24px;
        }

        .hero-rotating-inner {
            display: flex;
            flex-direction: column;
            animation: rotateStats 12s ease-in-out infinite;
        }

        .hero-rotating-item {
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.05rem;
            color: var(--text-secondary);
        }

        .hero-rotating-item strong {
            color: var(--gold);
            margin-right: 6px;
            font-family: 'JetBrains Mono', monospace;
        }

        @keyframes rotateStats {
            0%, 20% { transform: translateY(0); }
            25%, 45% { transform: translateY(-36px); }
            50%, 70% { transform: translateY(-72px); }
            75%, 95% { transform: translateY(-108px); }
            100% { transform: translateY(-144px); }
        }

        .hero-sub {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 560px;
            margin: 0 auto 36px;
            line-height: 1.7;
        }

        .hero-ctas {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        /* --- HERO ENTRANCE ANIMATION --- */
        @keyframes heroFadeUp {
            from { opacity: 0; transform: translateY(24px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero-anim {
            opacity: 0;
            animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        .hero-anim-1 { animation-delay: 0s; }
        .hero-anim-2 { animation-delay: 0.12s; }
        .hero-anim-3 { animation-delay: 0.24s; }
        .hero-anim-4 { animation-delay: 0.36s; }
        .hero-anim-5 { animation-delay: 0.48s; }
        .hero-anim-6 { animation-delay: 0.6s; }

        /* Hero trust badges — mobile-only row matching appearonline-style trust strip */
        .hero-trust-badges {
            display: none;
            gap: 18px;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            margin-top: 32px;
        }

        .hero-trust-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.72rem;
            font-weight: 600;
            color: var(--text-secondary);
            letter-spacing: 0.3px;
        }

        /* --- SCROLL REVEAL --- */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
        }

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

        /* --- LOGO CAROUSEL --- */
        .logo-carousel {
            padding: 60px 0;
            overflow: hidden;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            -webkit-mask-image: linear-gradient(to right, transparent 0, black 6%, black 94%, transparent 100%);
            mask-image: linear-gradient(to right, transparent 0, black 6%, black 94%, transparent 100%);
        }

        .logo-carousel p {
            text-align: center;
            font-size: 0.8rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
            margin-bottom: 28px;
        }

        .logo-track {
            display: flex;
            gap: 60px;
            animation: scrollLogos 30s linear infinite;
            width: max-content;
        }

        .logo-track-reverse {
            animation-direction: reverse;
        }

        .logo-track img {
            flex-shrink: 0;
            height: 70px;
            width: auto;
            object-fit: contain;
            border-radius: 10px;
            opacity: 0.75;
            transition: opacity 0.3s;
        }

        .logo-track img:hover {
            opacity: 1;
        }

        @keyframes scrollLogos {
            to { transform: translateX(-50%); }
        }

        /* --- STATS BAR --- */
        .stats-bar {
            padding: 80px 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .stat-card {
            text-align: center;
            padding: 32px 16px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
        }

        .stat-number {
            font-family: 'JetBrains Mono', monospace;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--gold);
            line-height: 1;
            margin-bottom: 8px;
        }

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

        /* --- SECTION STYLES --- */
        .section-label {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--gold);
            margin-bottom: 16px;
        }

        .section-title {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

        .section-sub {
            font-size: 1.05rem;
            color: var(--text-secondary);
            max-width: 600px;
            line-height: 1.7;
        }

        .section-header {
            text-align: center;
            margin-bottom: 56px;
        }

        .section-header .section-sub {
            margin: 0 auto;
        }

        /* --- SERVICES --- */
        .services {
            padding: 100px 0;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .service-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-top: 3px solid var(--gold);
            border-radius: var(--radius);
            padding: 32px 24px;
            transition: all 0.3s;
        }

        .service-card:hover {
            background: var(--bg-card-hover);
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }

        .service-icon {
            width: 48px;
            height: 48px;
            background: var(--gold-dim);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }

        .service-card h3 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            font-size: 1.15rem;
            margin-bottom: 10px;
            color: var(--white);
        }

        .service-card p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* --- CASE STUDIES --- */
        .case-studies {
            padding: 100px 0;
        }

        .cases-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .case-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            transition: all 0.3s;
            position: relative;
        }

        .case-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: var(--gold-glow);
        }

        .case-accent {
            height: 4px;
            background: linear-gradient(to right, #34D399, #6EE7B7);
        }

        .case-body {
            padding: 28px 24px;
        }

        .case-tag {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--blue);
            background: var(--blue-dim);
            padding: 4px 10px;
            border-radius: 4px;
            margin-bottom: 14px;
        }

        .case-card h3 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            font-size: 1.15rem;
            color: var(--white);
            margin-bottom: 10px;
        }

        .case-card p {
            font-size: 0.88rem;
            color: var(--text-secondary);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .case-stat {
            display: flex;
            align-items: baseline;
            gap: 8px;
        }

        .case-stat .number {
            font-family: 'JetBrains Mono', monospace;
            font-size: 2rem;
            font-weight: 700;
            color: var(--gold);
        }

        .case-stat .label {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        /* --- RESULTS TICKER --- */
        .results-ticker {
            padding: 20px 0;
            overflow: hidden;
            background: var(--bg-light);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .ticker-track {
            display: flex;
            gap: 48px;
            animation: scrollTicker 25s linear infinite;
            width: max-content;
        }

        .ticker-item {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
            color: var(--text-secondary);
            white-space: nowrap;
        }

        .ticker-item .dot {
            width: 6px;
            height: 6px;
            background: var(--gold);
            border-radius: 50%;
        }

        .ticker-item strong {
            color: var(--white);
            font-weight: 600;
        }

        @keyframes scrollTicker {
            to { transform: translateX(-50%); }
        }

        /* --- PROCESS --- */
        .process {
            padding: 100px 0;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            position: relative;
        }

        .process-grid::before {
            content: '';
            position: absolute;
            top: 36px;
            left: calc(16.67% + 24px);
            right: calc(16.67% + 24px);
            height: 2px;
            background: var(--border-light);
        }

        .process-step {
            text-align: center;
            position: relative;
        }

        .process-num {
            width: 72px;
            height: 72px;
            background: var(--bg-card);
            border: 2px solid var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--gold);
            position: relative;
            z-index: 1;
            box-shadow: 0 0 24px rgba(52, 211, 153, 0.15);
        }

        .process-step h3 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--white);
            margin-bottom: 10px;
        }

        .process-step p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.6;
            max-width: 280px;
            margin: 0 auto;
        }

        /* --- WHY UPSCALE --- */
        .why-upscale {
            padding: 100px 0;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .why-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 28px 24px;
            transition: all 0.3s;
        }

        .why-card:hover {
            background: var(--bg-card-hover);
            border-color: var(--border-light);
        }

        .why-icon {
            font-size: 1.5rem;
            margin-bottom: 14px;
        }

        .why-card h3 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--white);
            margin-bottom: 8px;
        }

        .why-card p {
            font-size: 0.88rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* --- CERTIFICATION BADGES --- */
        .certifications {
            padding: 60px 0;
            border-bottom: 1px solid var(--border);
        }

        .cert-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .cert-badge {
            display: flex;
            align-items: center;
            gap: 10px;
            opacity: 0.5;
            transition: opacity 0.3s;
        }

        .cert-badge:hover { opacity: 0.9; }

        .cert-badge svg { flex-shrink: 0; }

        .cert-badge span {
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--text-secondary);
            white-space: nowrap;
        }

        /* --- COMPARISON TABLE --- */
        .comparison {
            padding: 100px 0;
        }

        .compare-table {
            max-width: 800px;
            margin: 0 auto;
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid var(--border);
        }

        .compare-header {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
        }

        .compare-header div {
            padding: 18px 24px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            font-size: 0.95rem;
            text-align: center;
        }

        .compare-header div:first-child {
            text-align: left;
            background: transparent;
            color: var(--text-muted);
        }

        .compare-header .col-them {
            background: rgba(239, 68, 68, 0.08);
            color: var(--red);
        }

        .compare-header .col-us {
            background: var(--gold-dim);
            color: var(--gold);
        }

        .compare-row {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            border-top: 1px solid var(--border);
        }

        .compare-row:nth-child(odd) {
            background: rgba(255, 255, 255, 0.015);
        }

        .compare-row div {
            padding: 14px 24px;
            font-size: 0.88rem;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .compare-row div:first-child {
            text-align: left;
            justify-content: flex-start;
            color: var(--text-secondary);
            font-weight: 500;
        }

        .compare-row .icon-x {
            color: var(--red);
            opacity: 0.6;
        }

        .compare-row .icon-check {
            color: var(--gold);
        }

        .compare-row .them-text {
            color: var(--text-muted);
            font-size: 0.82rem;
        }

        .compare-row .us-text {
            color: var(--text);
            font-weight: 600;
            font-size: 0.82rem;
        }

        /* --- QUALIFICATION --- */
        .qualification {
            padding: 100px 0;
        }

        .qual-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            max-width: 900px;
            margin: 0 auto;
        }

        .qual-col h3 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            font-size: 1.15rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .qual-col.good h3 { color: var(--green); }
        .qual-col.not h3 { color: var(--text-muted); }

        .qual-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .qual-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 0.92rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        .qual-list .icon {
            flex-shrink: 0;
            margin-top: 2px;
            font-size: 1rem;
        }

        .qual-col.good .icon { color: var(--green); }
        .qual-col.not .icon { color: var(--text-muted); }

        .qual-cta {
            text-align: center;
            margin-top: 48px;
        }

        /* --- FOUNDER --- */
        .founder {
            padding: 100px 0;
        }

        .founder-card {
            max-width: 700px;
            margin: 0 auto;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 48px 40px;
            text-align: center;
        }

        .founder-avatar {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #34D399, #10B981);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
            font-size: 1.5rem;
            color: #fff;
        }

        .founder-quote {
            font-size: 1.15rem;
            color: var(--text);
            line-height: 1.7;
            font-style: italic;
            margin-bottom: 24px;
            position: relative;
        }

        .founder-quote::before {
            content: '\201C';
            font-size: 3rem;
            color: var(--gold);
            position: absolute;
            top: -16px;
            left: -8px;
            font-style: normal;
            line-height: 1;
        }

        .founder-name {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--white);
        }

        .founder-title {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: 2px;
        }

        .founder-creds {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .founder-cred {
            font-size: 0.78rem;
            color: var(--text-secondary);
            background: var(--bg-light);
            border: 1px solid var(--border);
            padding: 4px 12px;
            border-radius: 100px;
        }

        /* --- FAQ --- */
        .faq {
            padding: 100px 0;
        }

        .faq-list {
            max-width: 720px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            overflow: hidden;
        }

        .faq-q {
            width: 100%;
            background: none;
            border: none;
            color: var(--white);
            font-size: 0.95rem;
            font-weight: 600;
            text-align: left;
            padding: 20px 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            font-family: inherit;
            transition: color 0.2s;
        }

        .faq-q:hover { color: var(--gold); }

        .faq-q .arrow {
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            transition: transform 0.3s;
            color: var(--text-muted);
        }

        .faq-item.open .faq-q .arrow {
            transform: rotate(180deg);
            color: var(--gold);
        }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .faq-item.open .faq-a {
            max-height: 300px;
        }

        .faq-a-inner {
            padding: 0 24px 20px;
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* --- CONTACT --- */
        .contact {
            padding: 100px 0;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            max-width: 960px;
            margin: 0 auto;
        }

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

        .contact-left h2 {
            font-size: 2rem;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

        .contact-left p {
            color: var(--text-secondary);
            margin-bottom: 28px;
            line-height: 1.7;
        }

        .audit-deliverables {
            display: grid;
            gap: 10px;
            margin: 0 0 28px;
        }

        .audit-deliverable {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .audit-deliverable span {
            color: var(--gold);
            flex-shrink: 0;
            margin-top: 1px;
        }

        .contact-note {
            color: var(--text-muted);
            font-size: 0.82rem;
            line-height: 1.6;
            margin: 16px 0 0;
        }

        .contact-left .btn-gold {
            align-self: flex-start;
        }

        .contact-info {
            margin-top: 28px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .contact-info a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.88rem;
            transition: color 0.2s;
        }

        .contact-info a:hover { color: var(--gold); }

        /* Contact form */
        .contact-form {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 32px;
        }

        .form-progress {
            height: 3px;
            background: var(--border);
            border-radius: 3px;
            margin-bottom: 24px;
            overflow: hidden;
        }

        .form-progress-fill {
            height: 100%;
            background: var(--gold);
            width: 0%;
            transition: width 0.3s;
            border-radius: 3px;
        }

        .form-progress-text {
            font-size: 0.75rem;
            color: var(--text-muted);
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 16px;
        }

        .form-group label {
            display: block;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--text-secondary);
            margin-bottom: 6px;
        }

        .form-group label .req {
            color: var(--gold);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 8px;
            padding: 10px 14px;
            color: var(--text);
            font-size: 0.9rem;
            font-family: inherit;
            transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
            outline: none;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.15), 0 0 20px rgba(52, 211, 153, 0.08);
            background: rgba(52, 211, 153, 0.04);
        }

        .form-group input.valid,
        .form-group select.valid {
            border-color: var(--green);
        }

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

        .form-group select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            padding-right: 36px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .form-submit {
            width: 100%;
            margin-top: 8px;
        }

        .form-success {
            display: none;
            text-align: center;
            padding: 40px 20px;
        }

        .form-success.show { display: block; }

        .form-success .check {
            width: 56px;
            height: 56px;
            background: rgba(34, 197, 94, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            font-size: 1.5rem;
        }

        .form-success h3 {
            color: var(--white);
            font-family: 'Plus Jakarta Sans', sans-serif;
            margin-bottom: 8px;
        }

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

        /* --- BOTTOM CTA --- */
        .bottom-cta {
            padding: 100px 0;
            text-align: center;
        }

        .bottom-cta h2 {
            font-size: clamp(1.8rem, 4vw, 2.6rem);
            max-width: 600px;
            margin: 0 auto 12px;
            letter-spacing: -0.5px;
        }

        .bottom-cta .sub {
            color: var(--text-secondary);
            font-size: 1.05rem;
            margin-bottom: 32px;
        }

        .bottom-cta .cta-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .share-buttons {
            display: flex;
            justify-content: center;
            gap: 12px;
        }

        .share-btn {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.85rem;
            transition: all 0.2s;
        }

        .share-btn:hover {
            color: var(--gold);
            border-color: var(--gold-dim);
        }

        /* --- FOOTER --- */
        .footer {
            border-top: 1px solid var(--border);
            padding: 48px 0 32px;
        }

        .footer-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-left {
            font-size: 0.82rem;
            color: var(--text-muted);
        }

        .footer-left a {
            color: var(--text-secondary);
            text-decoration: none;
            margin-left: 12px;
        }

        .footer-left a:hover { color: var(--gold); }

        .footer-right {
            display: flex;
            gap: 16px;
        }

        .footer-right a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.82rem;
            transition: color 0.2s;
        }

        .footer-right a:hover { color: var(--gold); }

        /* --- EXIT INTENT MODAL --- */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(4px);
            z-index: 150;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 24px;
        }

        .modal-overlay.show { display: flex; }

        .modal {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            padding: 48px 40px;
            max-width: 480px;
            width: 100%;
            text-align: center;
            position: relative;
        }

        .modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            background: none;
            border: none;
            color: var(--text-muted);
            font-size: 1.3rem;
            cursor: pointer;
            padding: 4px;
            line-height: 1;
        }

        .modal h3 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--white);
            margin-bottom: 12px;
        }

        .modal p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-bottom: 24px;
            line-height: 1.6;
        }

        /* --- BACK TO TOP --- */
        .back-to-top {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 44px;
            height: 44px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            cursor: pointer;
            z-index: 80;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s;
        }

        .back-to-top.show {
            opacity: 1;
            transform: translateY(0);
        }

        .back-to-top:hover {
            color: var(--gold);
            border-color: var(--gold-dim);
        }

        /* --- MOBILE STICKY CTA --- */
        .mobile-sticky-cta {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(10, 15, 13, 0.95);
            backdrop-filter: blur(12px);
            border-top: 1px solid var(--border);
            padding: 12px 20px calc(12px + env(safe-area-inset-bottom, 0px));
            z-index: 90;
        }

        .mobile-sticky-cta .btn-gold {
            width: 100%;
            text-align: center;
            display: block;
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 1024px) {
            .services-grid { grid-template-columns: repeat(2, 1fr); }
            .why-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            .nav {
                background: rgba(10, 15, 13, 0.9);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                box-shadow: 0 1px 0 var(--border);
            }
            .nav-links { display: none; }
            .nav-buttons .btn-ghost { display: none; }
            .nav-buttons .btn-gold { display: none; }
            .nav-dropdown-menu { display: none; }
            .nav-hamburger {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                min-width: 44px;
                min-height: 44px;
                padding: 10px;
            }
            .nav-hamburger span { margin: 4px 0; }

            .cert-row { gap: 20px; }
            .cert-badge span { font-size: 0.7rem; }

            .compare-header div,
            .compare-row div { padding: 10px 12px; font-size: 0.75rem; }
            .compare-row .them-text,
            .compare-row .us-text { font-size: 0.7rem; }

            .hero { padding: 152px 0 48px; }
            .hero h1 {
                font-size: 2.4rem;
                line-height: 1.1;
                letter-spacing: -0.5px;
                margin-bottom: 20px;
                text-wrap: balance;
            }
            .hero-rotating { display: none; }
            .hero-sub { font-size: 1rem; max-width: 420px; margin: 0 auto 28px; line-height: 1.55; }
            .hero-ctas {
                flex-direction: column;
                align-items: center;
            }
            .hero-ctas .btn-gold,
            .hero-ctas .btn-ghost {
                width: min(100%, 280px);
            }
            .hero-trust-badges { display: flex; }
            .hero-badge-below { display: none; }
            .logo-carousel { padding: 48px 0; }
            .logo-carousel p { margin-bottom: 22px; }
            .logo-track img { height: 60px; }

            .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
            .stat-number { font-size: 1.8rem; }
            .stat-card { padding: 20px 12px; }

            .services-grid { grid-template-columns: 1fr; }
            .cases-grid { grid-template-columns: 1fr; }
            .process-grid { grid-template-columns: 1fr; gap: 32px; }
            .process-grid::before { display: none; }
            .why-grid { grid-template-columns: 1fr; }
            .qual-grid { grid-template-columns: 1fr; gap: 32px; }
            .contact-grid { grid-template-columns: 1fr; gap: 32px; }

            .form-row { grid-template-columns: 1fr; }
            .contact-form input,
            .contact-form select,
            .contact-form textarea { font-size: 16px; min-height: 44px; }

            .calendly-inline-widget { height: 580px !important; }

            .btn-ghost, .btn-gold { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
            .share-btn { min-width: 44px; min-height: 44px; }

            .mobile-sticky-cta { display: block; }
            .footer-inner { flex-direction: column; text-align: center; }
            .footer { padding-bottom: calc(32px + 70px + env(safe-area-inset-bottom, 0px)); }

            section:not(.hero) { padding: 60px 0 !important; }

            .founder-card { padding: 32px 24px; }
            .founder-quote { font-size: 1rem; }
            .founder-quote::before { display: none; }
        }

        @media (max-width: 480px) {
            .hero { padding: 152px 0 40px; }
            .hero h1 { font-size: 2rem; line-height: 1.15; letter-spacing: -0.5px; max-width: 340px; }
            .hero-sub { font-size: 0.95rem; }
            .hero-rotating-item { font-size: 0.875rem; }
            .section-title { font-size: 1.5rem; }
        }

        /* Print styles */
        @media print {
            .nav, .scroll-progress, .scroll-progress-js, .modal-overlay,
            .back-to-top, .mobile-sticky-cta { display: none !important; }
            body { background: white; color: black; }
            body::before { display: none; }
        }
