        /* ══════════════════════════════════════════
           RESET & BASE
           ══════════════════════════════════════════ */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { 
            scroll-behavior: smooth; 
            font-size: 16px;
            overflow-x: hidden;
            width: 100%;
            max-width: 100vw;
        }
        body {
            font-family: 'Inter', -apple-system, sans-serif;
            line-height: 1.6;
            color: #e0e0e0;
            background: #000;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
            width: 100%;
            max-width: 100vw;
            position: relative;
        }
        ::selection { background: #fff; color: #000; }
        img { max-width: 100%; display: block; }
        a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
        ul { list-style: none; }

        /* ══════════════════════════════════════════
           LAYOUT
           ══════════════════════════════════════════ */
        .container { max-width: 1400px; margin: 0 auto; padding: 0 48px; }
        .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

        /* ══════════════════════════════════════════
           GRAIN BACKGROUND
           ══════════════════════════════════════════ */
        .grain {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
            opacity: 0.03;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
        }

        /* ══════════════════════════════════════════
           HEADER / SITE HEADER
           ══════════════════════════════════════════ */
        :root {
            --header-height: 64px;
            --yellow: #FFFF00;
            --white: #ffffff;
            --black: #000000;
        }

        body {
            padding-top: var(--header-height);
        }

        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            min-height: var(--header-height);
            display: flex;
            align-items: center;
            background: var(--black);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .header-inner {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 1rem;
            align-items: center;
            justify-content: space-between;
            padding: 0.85rem 5vw;
            max-width: 100%;
            width: 100%;
        }

        .header-nav {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }

        /* Hamburger: always visible, two white (top/bottom) and one yellow (middle) */
        .header-menu-toggle {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            width: 28px;
            height: 22px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
            position: relative;
        }

        /* Hamburger: two white lines, one yellow (middle) */
        .header-menu-toggle span,
        .header-menu-toggle::before,
        .header-menu-toggle::after {
            position: absolute;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--white);
            transition: transform 0.25s ease, opacity 0.25s ease;
        }

        .header-menu-toggle::before { top: 0; }
        .header-menu-toggle span {
            top: 50%;
            transform: translateY(-50%);
            background: var(--yellow);
        }
        .header-menu-toggle::after { bottom: 0; }

        .header-menu-toggle[aria-expanded="true"]::before {
            top: 50%;
            transform: translateY(-50%) rotate(45deg);
        }

        .header-menu-toggle[aria-expanded="true"] span {
            opacity: 0;
        }

        .header-menu-toggle[aria-expanded="true"]::after {
            bottom: 50%;
            transform: translateY(50%) rotate(-45deg);
        }

        /* Menu overlay: does not take space, never reduces bottom content */
        .header-menu {
            list-style: none;
            margin: 0;
            padding: 1rem 5vw 1.25rem;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            position: fixed;
            top: var(--header-height);
            left: 0;
            right: 0;
            z-index: 99;
            background: var(--black);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
        }

        .header-nav.is-open .header-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .header-menu a {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--white);
            transition: color 0.2s ease;
        }

        .header-menu a:hover {
            color: var(--yellow);
        }

        .header-logo {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            flex-shrink: 0;
        }

        .header-logo-name {
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.02em;
            color: var(--white);
            line-height: 1.2;
        }

        .header-actions {
            flex: 1;
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }

        .header-whatsapp {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            color: var(--white);
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
        }

        .header-whatsapp:hover {
            color: var(--black);
            background: #25D366;
            border-color: #25D366;
        }

        .header-whatsapp i {
            font-size: 1.25rem;
        }

        @media (max-width: 768px) {
            .header-inner {
                grid-template-columns: auto 1fr auto;
                gap: 0.75rem;
            }

            .header-logo-name {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .header-inner {
                padding-left: 4vw;
                padding-right: 4vw;
            }

            .header-logo-name {
                font-size: 0.8rem;
            }
        }
        /* ══════════════════════════════════════════
           WHAT IS AEO HEADING - Yellow Text with Left Border Accent
           ══════════════════════════════════════════ */
        #what-is-aeo .grid-2 h2 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            line-height: 0.95;
            margin-bottom: 16px;
            font-family: 'Oswald', 'Arial Narrow', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: -0.01em;
            color: #fff;
            position: relative;
            padding-left: 24px;
        }
        #what-is-aeo .grid-2 h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 6px;
            background: #FFFF00;
            transform: scaleY(1.1);
        }
        #what-is-aeo .grid-2 h2 mark {
            background: transparent;
            color: #FFFF00;
            padding: 0;
            display: inline-block;
            position: relative;
            font-weight: 700;
            text-shadow: 0 0 20px rgba(255, 255, 0, 0.4);
        }
        
        /* ══════════════════════════════════════════
           WHY AEO MATTERS HEADING - Yellow Background Box Style
           ══════════════════════════════════════════ */
        #why-aeo .section-header h2 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            line-height: 0.95;
            margin-bottom: 16px;
            font-family: 'Oswald', 'Arial Narrow', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: -0.01em;
            color: #fff;
        }
        #why-aeo .section-header h2 mark {
            background: #FFFF00;
            color: #000;
            padding: 0.1em 0.3em;
            display: inline-block;
            font-weight: 700;
            box-shadow: 0 0 0 2px #FFFF00;
        }
        
        /* ══════════════════════════════════════════
           HOW AEO WORKS HEADING - Yellow Text with Diagonal Slash
           ══════════════════════════════════════════ */
        #how-it-works .section-header h2 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            line-height: 0.95;
            margin-bottom: 16px;
            font-family: 'Oswald', 'Arial Narrow', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: -0.01em;
            color: #fff;
        }
        #how-it-works .section-header h2 mark {
            background: transparent;
            color: #FFFF00;
            padding: 0;
            font-weight: 700;
            position: relative;
            display: inline-block;
        }
  
        
        /* ══════════════════════════════════════════
           AEO STRATEGIES HEADING - Yellow Text with Gradient Underline
           ══════════════════════════════════════════ */
        #strategies .section-header h2 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            line-height: 0.95;
            margin-bottom: 16px;
            font-family: 'Oswald', 'Arial Narrow', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: -0.01em;
            color: #fff;
        }
        #strategies .section-header h2 mark {
            background: transparent;
            color: #FFFF00;
            padding: 0;
            font-weight: 700;
            position: relative;
        }
        #strategies .section-header h2 mark::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #FFFF00 0%, transparent 100%);
        }
        
        /* ══════════════════════════════════════════
           AEO PROCESS HEADING (on AEO page) - Yellow Text with Glow Effect
           Note: This overrides the index.php process style for AEO page
           ══════════════════════════════════════════ */
        #process:not(.index-process-section) .section-header h2 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            line-height: 0.95;
            margin-bottom: 16px;
            font-family: 'Oswald', 'Arial Narrow', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: -0.01em;
            color: #fff;
        }
        #process:not(.index-process-section) .section-header h2 mark {
            background: transparent;
            color: #FFFF00;
            padding: 0;
            font-weight: 700;
            text-shadow: 0 0 30px rgba(255, 255, 0, 0.6),
                         0 0 60px rgba(255, 255, 0, 0.3);
        }
        
        /* ══════════════════════════════════════════
           AEO FAQ HEADING - Yellow Text with Box Border
           ══════════════════════════════════════════ */
        #faq .section-header h2 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            line-height: 0.95;
            margin-bottom: 16px;
            font-family: 'Oswald', 'Arial Narrow', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: -0.01em;
            color: #fff;
        }
        #faq .section-header h2 mark {
            background: transparent;
            color: #FFFF00;
            padding: 0.1em 0.3em;
            font-weight: 700;
            border: 2px solid #FFFF00;
            display: inline-block;
        }
        
        /* ══════════════════════════════════════════
           CTA SECTION HEADING - Black Text (Yellow Background Section)
           ══════════════════════════════════════════ */
        .cta-section h2 {
            color: #000;
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            margin-bottom: 24px;
        }
        
        /* ══════════════════════════════════════════
           GEO PAGE - Unique Heading Styles
           ══════════════════════════════════════════ */
        
        /* WHAT IS GEO HEADING - Yellow Text with Right Border Accent */
        #what-is-geo .grid-2 h2 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            line-height: 0.95;
            margin-bottom: 16px;
            font-family: 'Oswald', 'Arial Narrow', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: -0.01em;
            color: #fff;
            position: relative;
            padding-right: 24px;
        }
        #what-is-geo .grid-2 h2::after {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            width: 6px;
            background: #FFFF00;
            transform: scaleY(1.1);
        }
        #what-is-geo .grid-2 h2 mark {
            background: transparent;
            color: #FFFF00;
            padding: 0;
            display: inline-block;
            position: relative;
            font-weight: 700;
            text-shadow: 0 0 20px rgba(255, 255, 0, 0.4);
        }
        
        /* WHY GEO MATTERS HEADING - Yellow Text with Top Border */
        #why-geo .section-header h2 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            line-height: 0.95;
            margin-bottom: 16px;
            font-family: 'Oswald', 'Arial Narrow', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: -0.01em;
            color: #fff;
            position: relative;
            padding-top: 24px;
        }
        #why-geo .section-header h2::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: #FFFF00;
        }
        #why-geo .section-header h2 mark {
            background: transparent;
            color: #FFFF00;
            padding: 0;
            font-weight: 700;
        }
        
        /* HOW GEO WORKS HEADING - Yellow Text with Top and Bottom Borders */
        #what-is-geo ~ #how-it-works .section-header h2,
        body:has(#what-is-geo) #how-it-works .section-header h2 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            line-height: 0.95;
            margin-bottom: 16px;
            font-family: 'Oswald', 'Arial Narrow', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: -0.01em;
            color: #fff;
        }
        #what-is-geo ~ #how-it-works .section-header h2 mark,
        body:has(#what-is-geo) #how-it-works .section-header h2 mark {
            background: transparent;
            color: #FFFF00;
            padding: 0.15em 0;
            font-weight: 700;
            position: relative;
            display: inline-block;
        }
        #what-is-geo ~ #how-it-works .section-header h2 mark::before,
        body:has(#what-is-geo) #how-it-works .section-header h2 mark::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: #FFFF00;
        }
        #what-is-geo ~ #how-it-works .section-header h2 mark::after,
        body:has(#what-is-geo) #how-it-works .section-header h2 mark::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: #FFFF00;
        }
        
        /* GEO STRATEGIES HEADING - Yellow Text with Diagonal Slash Accent */
        /* Only applies when #what-is-geo exists (GEO page) */
        #what-is-geo ~ #strategies .section-header h2,
        body:has(#what-is-geo) #strategies .section-header h2 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            line-height: 0.95;
            margin-bottom: 16px;
            font-family: 'Oswald', 'Arial Narrow', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: -0.01em;
            color: #fff;
            position: relative;
        }
        #what-is-geo ~ #strategies .section-header h2 mark,
        body:has(#what-is-geo) #strategies .section-header h2 mark {
            background: transparent;
            color: #FFFF00;
            padding: 0;
            font-weight: 700;
            position: relative;
            display: inline-block;
        }
        #what-is-geo ~ #strategies .section-header h2 mark::before,
        body:has(#what-is-geo) #strategies .section-header h2 mark::before {
            content: '';
            position: absolute;
            top: 50%;
            left: -12px;
            width: 4px;
            height: 120%;
            background: #FFFF00;
            transform: translateY(-50%) rotate(25deg);
        }
        
        /* GEO PROCESS HEADING - Yellow Text with Pulsing Glow */
        #process:not(.index-process-section) .section-header h2 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            line-height: 0.95;
            margin-bottom: 16px;
            font-family: 'Oswald', 'Arial Narrow', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: -0.01em;
            color: #fff;
        }
        #process:not(.index-process-section) .section-header h2 mark {
            background: transparent;
            color: #FFFF00;
            padding: 0;
            font-weight: 700;
            animation: geo-glow 2s ease-in-out infinite;
        }
        @keyframes geo-glow {
            0%, 100% {
                text-shadow: 0 0 20px rgba(255, 255, 0, 0.6),
                             0 0 40px rgba(255, 255, 0, 0.3);
            }
            50% {
                text-shadow: 0 0 30px rgba(255, 255, 0, 0.8),
                             0 0 60px rgba(255, 255, 0, 0.5);
            }
        }
        
        /* GEO FAQ HEADING - Yellow Text with Dashed Border (only on GEO page) */
        body:has(#what-is-geo) #faq .section-header h2 mark {
            background: transparent;
            color: #FFFF00;
            padding: 0.1em 0.3em;
            font-weight: 700;
            border: 2px dashed #FFFF00;
            display: inline-block;
        }
        .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
        .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }

        /* ══════════════════════════════════════════
           TYPOGRAPHY
           ══════════════════════════════════════════ */
        h1, h2 {
            font-family: 'Oswald', 'Arial Narrow', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: -0.01em;
            color: #fff;
        }
        h3 {
            font-family: 'Oswald', sans-serif;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.02em;
            font-size: 1.25rem;
            color: #fff;
        }
        /* Consistent h1 sizing across all pages */
        h1 {
            font-size: clamp(3.5rem, 10vw, 8rem);
            line-height: 0.85;
            letter-spacing: 0.15em;
        }
        /* Consistent h2 sizing across all pages */
        h2 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            line-height: 0.95;
            margin-bottom: 16px;
        }
        .eyebrow {
            font-family: 'Space Mono', monospace;
            font-size: 0.7rem;
            font-weight: 400;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: #555;
            margin-bottom: 20px;
            display: inline-block;
        }
        .accent-num {
            font-family: 'Bebas Neue', sans-serif;
            letter-spacing: 0.02em;
        }
        .lead { font-size: 1.05rem; line-height: 1.7; color: #888; font-weight: 300; }
        .body-text { font-size: 0.95rem; line-height: 1.8; color: #888; font-weight: 300; }
        mark {
            background: #fff;
            color: #000;
            padding: 0 6px;
            font-weight: 600;
        }

        /* ══════════════════════════════════════════
           GRAIN OVERLAY
           ══════════════════════════════════════════ */
        body::after {
            content: '';
            position: fixed;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 9999;
            animation: grain 0.5s steps(1) infinite;
        }
        @keyframes grain {
            0%, 100% { transform: translate(0, 0); }
            10% { transform: translate(-5%, -10%); }
            30% { transform: translate(3%, -15%); }
            50% { transform: translate(12%, 9%); }
            70% { transform: translate(9%, 4%); }
            90% { transform: translate(-1%, 7%); }
        }

        /* ══════════════════════════════════════════
           BUTTONS
           ══════════════════════════════════════════ */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 18px 42px;
            font-family: 'Oswald', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            border: 2px solid transparent;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
        }
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: -1;
        }
        .btn-white {
            background: #fff;
            color: #000;
            border-color: #fff;
        }
        .btn-white::before { background: #000; }
        .btn-white:hover { color: #FFFF00; }
        .btn-white:hover::before { left: 0; }
        .btn-outline {
            background: transparent;
            color: #fff;
            border-color: #333;
        }
        .btn-outline::before { background: #fff; }
        .btn-outline:hover { color: #FFFF00; border-color: #fff; }
        .btn-outline:hover::before { left: 0; }
        .btn-black {
            background: #000;
            color: #fff;
            border-color: #000;
        }
        .btn-black::before { background: #fff; }
        .btn-black:hover { color: #000; }
        .btn-black:hover::before { left: 0; }
        .btn-outline-black {
            background: transparent;
            color: #000;
            border: 2px solid #000;
        }
        .btn-outline-black::before { background: #000; }
        .btn-outline-black:hover { color: #fff; border-color: #000; }
        .btn-outline-black:hover::before { left: 0; }

        /* ══════════════════════════════════════════
           NAVIGATION
           ══════════════════════════════════════════ */
        .tall-font {
            font-family: 'Antonio', sans-serif;
            text-transform: uppercase;
            letter-spacing: -0.02em;
            font-weight: 700;
        }
        .fixed-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 24px;
            background: rgba(0,0,0,0.9);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #fff;
            height: 80px;
        }
        @media (min-width: 768px) {
            .fixed-nav {
                padding: 0 48px;
            }
        }
        .fixed-nav > a {
            font-size: 1.875rem;
            color: #fff;
        }
        @media (min-width: 768px) {
            .fixed-nav > a {
                font-size: 2.25rem;
            }
        }
        .fixed-nav nav {
            display: none;
        }
        @media (min-width: 1024px) {
            .fixed-nav nav {
                display: flex;
                gap: 40px;
            }
        }
        .fixed-nav nav a {
            font-size: 1.25rem;
            transition: color 0.3s ease;
        }
        .fixed-nav nav a:hover {
            color: #FFFF00;
        }
        #menu-toggle {
            display: none;
        }
        #menu-toggle:checked ~ #mobile-menu {
            display: flex;
        }
        #mobile-menu {
            display: none;
            position: fixed;
            inset: 0;
            background: #000;
            z-index: 105;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 32px;
        }
        #mobile-menu a {
            color: #fff;
            font-size: 3rem;
            transition: color 0.3s ease;
        }
        #mobile-menu a:hover {
            color: #FFFF00;
        }
        label[for="menu-toggle"] {
            display: flex;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 110;
        }
        @media (min-width: 1024px) {
            label[for="menu-toggle"] {
                display: none;
            }
        }
        label[for="menu-toggle"] div {
            width: 32px;
            height: 4px;
            background: #fff;
        }
        label[for="menu-toggle"] div:last-child {
            background: #FFFF00;
        }
        .nav-links { display: flex; align-items: center; gap: 40px; }
        .nav-links a {
            font-family: 'Space Mono', monospace;
            font-size: 0.7rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #666;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0;
            height: 1px;
            background: #fff;
            transition: width 0.4s ease;
        }
        .nav-links a:hover { color: #fff; }
        .nav-links a:hover::after { width: 100%; }
        .nav-cta {
            font-family: 'Oswald', sans-serif;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            padding: 10px 28px;
            background: #fff;
            color: #000;
            border: 1px solid #fff;
            transition: all 0.3s ease;
        }
        .nav-cta:hover { background: transparent; color: #fff; }
        .nav-cta::after { display: none; }

        /* ══════════════════════════════════════════
           HERO — STYLE 3: FULL-WIDTH SCALE TRANSFORM
           ══════════════════════════════════════════ */
        .hero {
            height: 100vh;
            max-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 0 40px;
            position: relative;
            z-index: 1;
            overflow: hidden;
            background: #000;
            background-size: 40px 40px;
            background-image: linear-gradient(to right, #111 1px, transparent 1px),
                              linear-gradient(to bottom, #111 1px, transparent 1px);
        }
        .wavy-grid-overlay {
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            background-image: 
                linear-gradient(to right, rgba(255, 255, 0, 0.15) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(255, 255, 0, 0.15) 1px, transparent 1px);
            background-size: 50px 50px;
            mask-image: linear-gradient(to left, black 0%, transparent 85%);
            -webkit-mask-image: linear-gradient(to left, black 0%, transparent 85%);
            clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 85% 92%, 70% 100%, 55% 92%, 40% 100%, 25% 92%, 0% 100%);
        }
        .hero-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0.07;
            animation: float 8s ease-in-out infinite;
        }
        .hero-orb-1 {
            width: 600px; height: 600px;
            background: #fff;
            top: -200px; right: -100px;
            animation-delay: 0s;
        }
        .hero-orb-2 {
            width: 400px; height: 400px;
            background: #fff;
            bottom: -100px; left: -100px;
            animation-delay: -4s;
        }
        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(30px, -40px) scale(1.1); }
        }
        .hero .container {
            width: 100%;
            max-width: 100%;
            padding: 0 48px;
            height: 100%;
            display: flex;
            align-items: center;
        }
        .hero-content { 
            position: relative; 
            z-index: 10; 
            width: 100%;
            padding: 0;
        }
        .hero .eyebrow {
            font-family: 'Space Mono', monospace;
            font-size: 0.65rem;
            font-weight: 400;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: #555;
            margin-bottom: 20px;
            display: block;
        }
        .hero h1 { 
            color: #fff; 
            margin-bottom: 24px;
            width: 100%;
            font-size: clamp(3.5rem, 10vw, 8rem);
            line-height: 0.85;
            letter-spacing: 0.15em;
            font-weight: 700;
            text-transform: uppercase;
            word-spacing: 0.2em;
            transform: scaleX(1.08) scaleY(1.02);
            transform-origin: left center;
            padding: 0;
            margin-left: -0.03em;
        }
        .hero h1 br {
            display: block;
            margin: 0;
            line-height: 0.9;
        }
        .hero h1 mark {
            display: inline-block;
            padding: 0.06em 0.25em;
            margin: 0 0.1em;
            letter-spacing: 0.15em;
            transform: scaleX(1.03);
            background: #FFFF00;
            color: #000;
        }
        .hero h1 .hero-outline {
            -webkit-text-stroke: 2px #fff;
            -webkit-text-fill-color: transparent;
            letter-spacing: 0.2em;
            transform: scaleX(1.05);
        }
        .hero-sub {
            font-family: 'Space Mono', monospace;
            font-size: clamp(0.7rem, 1.2vw, 0.85rem);
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: #555;
            margin-bottom: 32px;
            width: 100%;
            line-height: 1.7;
            transform: scaleX(1.01);
        }
        .hero-sub mark {
            padding: 0.1em 0.3em;
            margin: 0 0.2em;
            letter-spacing: 0.15em;
            background: #FFFF00;
            color: #000;
        }
        .hero-buttons { 
            display: flex; 
            gap: 20px; 
            margin-bottom: 0;
            position: relative;
            z-index: 15;
        }

        /* ══════════════════════════════════════════
           SECTIONS
           ══════════════════════════════════════════ */
        .section { padding: 140px 0; position: relative; }
        .section-alt { background: #050505; }
        #process {
            position: relative;
            overflow: hidden;
        }
        .process-bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            opacity: 0.4;
        }
        .process-bg-pattern::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: 
                repeating-linear-gradient(
                    45deg,
                    transparent,
                    transparent 2px,
                    rgba(255, 255, 0, 0.03) 2px,
                    rgba(255, 255, 0, 0.03) 4px
                ),
                repeating-linear-gradient(
                    -45deg,
                    transparent,
                    transparent 2px,
                    rgba(255, 255, 0, 0.03) 2px,
                    rgba(255, 255, 0, 0.03) 4px
                );
            animation: process-pattern-move 20s linear infinite;
        }
        .process-bg-pattern::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(
                ellipse 80% 60% at 50% 50%,
                rgba(255, 255, 0, 0.08) 0%,
                transparent 70%
            );
        }
        @keyframes process-pattern-move {
            0% { transform: translate(0, 0) rotate(0deg); }
            100% { transform: translate(50px, 50px) rotate(360deg); }
        }
        .process-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.15;
            animation: process-orb-float 12s ease-in-out infinite;
        }
        .process-orb-1 {
            width: 500px;
            height: 500px;
            background: #FFFF00;
            top: 10%;
            right: 10%;
            animation-delay: 0s;
        }
        .process-orb-2 {
            width: 400px;
            height: 400px;
            background: #FFFF00;
            bottom: 15%;
            left: 15%;
            animation-delay: -6s;
        }
        @keyframes process-orb-float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(30px, -40px) scale(1.2); }
        }
        #process .container {
            position: relative;
            z-index: 1;
        }
        .section-white { background: #fff; color: #000; }
        .section-white.stats-section { 
            padding: 20px 0;
            position: relative;
            overflow: hidden;
        }
        .stats-bg-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }
        .stats-section .container {
            position: relative;
            z-index: 1;
        }
        .section-grey { background: #1a1a1a; color: #e0e0e0; }
        .section-header {
            margin-bottom: 80px;
        }
        .section-header.center {
            text-align: center;
        }
        .section-header.center .lead {
            margin-left: auto;
            margin-right: auto;
        }
        /* Consistent section header h2 styling */
        .section-header h2 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            line-height: 0.95;
            margin-bottom: 16px;
            font-family: 'Oswald', 'Arial Narrow', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: -0.01em;
            color: #fff;
        }
        /* Default section header - no yellow highlight */
        .section-header h2 mark {
            background: transparent;
            color: inherit;
            padding: 0;
            font-weight: inherit;
        }
        
        /* ══════════════════════════════════════════
           SERVICES HEADING - Diagonal Slash Accent
           ══════════════════════════════════════════ */
        #services .section-header h2 {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: -0.01em;
            color: #fff;
            line-height: 0.95;
            margin-bottom: 16px;
        }
        #services .section-header h2 mark {
            background: transparent;
            color: #FFFF00;
            padding: 0;
            font-weight: 700;
            position: relative;
            display: inline-block;
        }
     
        /* ══════════════════════════════════════════
           PROCESS HEADING - Gradient Underline Style
           ══════════════════════════════════════════ */
        #process .section-header h2 {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: -0.01em;
            color: #fff;
            line-height: 0.95;
            margin-bottom: 16px;
            position: relative;
        }
        #process .section-header h2 mark {
            background: transparent;
            color: #FFFF00;
            padding: 0;
            font-weight: 700;
            position: relative;
        }
        #process .section-header h2 mark::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #FFFF00 0%, transparent 100%);
        }
        
        /* ══════════════════════════════════════════
           PACKAGES HEADING - Accent Border Style
           ══════════════════════════════════════════ */
        #packages .section-header h2 {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: -0.01em;
            color: #fff;
            line-height: 0.95;
            margin-bottom: 16px;
        }
        #packages .section-header h2 mark {
            background: transparent;
            color: #fff;
            padding: 0.1em 0.3em;
            font-weight: 700;
            border-left: 4px solid #FFFF00;
            border-right: 4px solid #FFFF00;
            display: inline-block;
        }
        .rule { width: 60px; height: 1px; background: #333; margin: 24px 0; }
        .rule-center { margin-left: auto; margin-right: auto; }
        .rule-white { background: #000; }
        .h-line { width: 100%; height: 1px; background: #111; }
        .h-line-light { width: 100%; height: 1px; background: #e0e0e0; }

        /* ══════════════════════════════════════════
           PROVOCATION SECTION (EXACT COPY FROM THEENOUGHAGENCY)
           ══════════════════════════════════════════ */
        /* Override section padding for light-section and dark-section */
        .section.light-section,
        .section.dark-section {
            height: 100vh !important;
            height: 100dvh !important;
            width: 100%;
            position: relative;
            display: flex !important;
            flex-direction: column;
            justify-content: center;
            padding: 0 5vw !important;
            overflow: hidden;
        }
        .section.light-section .section-inner,
        .section.dark-section .section-inner {
            position: relative;
            z-index: 1;
        }
        .light-section {
            background: #fff;
            color: #000;
        }
        .dark-section {
            background: #000;
            color: #fff;
        }
        .dark-section .sub-label {
            opacity: 0.8;
        }
        .dark-section .section-body {
            opacity: 0.85;
        }
        /* Reveal animation for dark-section */
        .dark-section .reveal {
            overflow: hidden;
            display: block;
        }
        .dark-section .reveal span {
            display: block;
            transform: translateY(115%);
            transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .dark-section.active .reveal span,
        .dark-section .reveal.visible span {
            transform: translateY(0);
        }
        /* Reveal animation */
        .light-section .reveal {
            overflow: hidden;
            display: block;
        }
        .light-section .reveal span {
            display: block;
            transform: translateY(115%);
            transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .light-section.active .reveal span,
        .light-section .reveal.visible span {
            transform: translateY(0);
        }
        /* Sub-label */
        .light-section .sub-label {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1.5rem;
            display: block;
            opacity: 0.6;
        }
        /* Manifesto text */
        .manifesto-text {
            font-size: clamp(3vw, 4.5vw, 4.5vw);
            font-weight: 800;
            line-height: 0.95;
            letter-spacing: -0.03em;
            text-transform: uppercase;
            font-family: 'Syne', sans-serif;
        }
        .manifesto-text em {
            font-style: italic;
            color: #F0FF00;
            background: #000;
            padding: 0 0.15em;
        }
        .light-section .manifesto-text em {
            color: #000;
            background: #F0FF00;
        }
        .manifesto-accent {
            color: #F0FF00;
        }
        .light-section .manifesto-accent {
            color: #000;
            background: #F0FF00;
            display: inline-block;
            padding: 0 0.2em;
        }
        /* Section body */
        .section-body {
            font-size: clamp(0.95rem, 1.2vw, 1.05rem);
            max-width: 55ch;
            margin-top: 2rem;
            line-height: 1.5;
            font-weight: 400;
            font-family: 'Inter', sans-serif;
        }
        .light-section .section-body {
            opacity: 0.85;
        }
        /* Founder section */
        .founder-inner .hero-title {
            margin-bottom: 0.5rem;
        }
        .founder-role {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1.5rem;
            opacity: 0.8;
        }
        .founder-bio {
            margin-top: 1rem;
        }
        .founder-quote {
            font-family: 'Syne', sans-serif;
            font-size: clamp(1.5rem, 3vw, 2.25rem);
            font-weight: 700;
            line-height: 1.25;
            margin: 2rem 0;
            padding-left: 1.5rem;
            border-left: 3px solid #F0FF00;
        }
        .light-section .founder-quote {
            border-left-color: #000;
        }
        .founder-quote span {
            display: block;
        }
        .founder-quote.reveal span {
            transform: translateY(115%);
            transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .founder-quote.reveal.visible span {
            transform: translateY(0);
        }
        /* Hero title for capabilities section */
        .hero-title {
            font-size: clamp(4rem, 8vw, 7rem);
            line-height: 0.82;
            letter-spacing: -0.05em;
            font-weight: 800;
            text-transform: uppercase;
            font-family: 'Syne', sans-serif;
        }
        .hero-title-accent {
            color: #F0FF00;
        }
        .light-section .hero-title-accent {
            color: #F0FF00;
        }

        /* ══════════════════════════════════════════
           LOGIC SECTION
           ══════════════════════════════════════════ */
        .logic-section {
            background: #000;
            color: #fff;
            padding: 0 5vw;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-height: 100vh;
        }
        .logic-label {
            font-family: 'Space Mono', monospace;
            font-size: 0.9rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: #fff;
            margin-bottom: 40px;
            display: block;
        }
        .logic-content {
            max-width: 70%;
            font-family: 'Inter', sans-serif;
            font-size: 4vw;
            line-height: 1.4;
            color: #fff;
            font-weight: 400;
        }
        .logic-content.reveal {
            overflow: hidden;
        }
        .logic-content.reveal span {
            display: block;
            transform: translateY(115%);
            transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .logic-content.reveal.visible span {
            transform: translateY(0);
        }

        /* ══════════════════════════════════════════
           MARQUEE SECTION
           ══════════════════════════════════════════ */
        .marquee-section {
            background: #FFFF00;
            color: #000;
            padding: 0;
            position: relative;
            overflow: hidden;
            border-top: 2px solid #000;
            border-bottom: 2px solid #000;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 20vh;
        }
        .marquee-container {
            width: 100%;
            padding: 40px 0;
        }
        .marquee {
            white-space: nowrap;
            display: flex;
            font-size: clamp(3rem, 10vw, 10rem);
            font-family: 'Oswald', sans-serif;
            font-weight: 800;
            text-transform: uppercase;
            color: #000;
        }
        .marquee span {
            animation: marquee-scroll 15s linear infinite;
            display: inline-block;
            padding-right: 80px;
            flex-shrink: 0;
        }
        @keyframes marquee-scroll {
            from { transform: translateX(0); }
            to { transform: translateX(-100%); }
        }

        /* ══════════════════════════════════════════
           WHY AEO — SPLIT LAYOUT
           ══════════════════════════════════════════ */
        .why-aeo {
            background: #1a1a1a;
            padding: 140px 0;
            position: relative;
            overflow: hidden;
            background-size: 60px 60px;
            background-image: linear-gradient(to right, #222 1px, transparent 1px),
                              linear-gradient(to bottom, #222 1px, transparent 1px);
        }
        .why-aeo-grid-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            background-image: 
                linear-gradient(to right, rgba(255, 255, 0, 0.08) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(255, 255, 0, 0.08) 1px, transparent 1px);
            background-size: 120px 120px;
            mask-image: radial-gradient(ellipse 80% 60% at 30% 50%, black 0%, transparent 70%);
            -webkit-mask-image: radial-gradient(ellipse 80% 60% at 30% 50%, black 0%, transparent 70%);
        }
        .why-aeo-content {
            position: relative;
            z-index: 1;
        }
        .why-aeo-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        .why-aeo-left h2 {
            font-size: clamp(5rem, 12vw, 12rem);
            line-height: 0.85;
            margin-bottom: 0;
        }
        .why-aeo-left h2 mark {
            background: #FFFF00;
            color: #000;
            padding: 0.1em 0.3em;
            display: inline-block;
        }
        .why-aeo-left .rule {
            width: 60px;
            height: 1px;
            background: #333;
            margin: 24px 0;
        }
        .why-aeo-right {
            padding-top: 0;
        }
        .why-aeo-right .lead {
            margin-bottom: 24px;
            font-size: 1.1rem;
        }
        .why-aeo-right .body-text {
            margin-top: 20px;
            font-size: 0.95rem;
        }
        .why-aeo-right mark {
            background: #FFFF00;
            color: #000;
            padding: 0.1em 0.3em;
            font-weight: 600;
        }

        /* ══════════════════════════════════════════
           RIBBON — YELLOW ACCENT
           ══════════════════════════════════════════ */
        .ribbon {
            border-top: 1px solid #222;
            border-bottom: 1px solid #222;
            padding: 20px 0;
            overflow: hidden;
            background: #0a0a0a;
            position: relative;
            z-index: 0;
        }
        .ribbon-track {
            display: flex;
            gap: 80px;
            animation: ribbon-scroll 30s linear infinite;
            white-space: nowrap;
        }
        .ribbon-item {
            font-family: 'Oswald', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: #444;
            flex-shrink: 0;
            transition: color 0.3s ease;
        }
        .ribbon-item:hover {
            color: #FFFF00;
        }
        .ribbon-item .dot {
            display: inline-block;
            width: 5px;
            height: 5px;
            background: #FFFF00;
            border-radius: 50%;
            margin: 0 32px;
            vertical-align: middle;
            opacity: 0.6;
        }
        @keyframes ribbon-scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* ══════════════════════════════════════════
           SERVICE CARDS — STYLE 2: YELLOW ACCENT
           ══════════════════════════════════════════ */
        .service-card {
            padding: 56px 40px;
            border: 1px solid #151515;
            background: #080808;
            position: relative;
            transition: all 0.5s ease;
            overflow: hidden;
        }
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: #FFFF00;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }
        .service-card:hover {
            background: #0f0f0f;
            border-color: #222;
        }
        .service-card:hover::before {
            transform: scaleX(1);
        }
        .service-card .number {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 5.5rem;
            color: #FFFF00;
            line-height: 1;
            margin-bottom: 24px;
            transition: all 0.4s ease;
            opacity: 0.9;
        }
        .service-card:hover .number {
            color: #FFFF00;
            opacity: 1;
            transform: scale(1.05);
        }
        .service-card h3 {
            font-family: 'Oswald', sans-serif;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.02em;
            font-size: 1.2rem;
            color: #fff;
            margin-bottom: 16px;
        }
        .service-card p {
            font-size: 0.9rem;
            color: #fff;
            line-height: 1.65;
            font-weight: 300;
        }
        .service-card p strong {
            color: #fff;
            font-weight: 600;
        }

        /* ══════════════════════════════════════════
           INDUSTRIES WE SERVE
           ══════════════════════════════════════════ */
        .industries {
            background: #fff;
            color: #000;
            padding: 140px 0;
            position: relative;
            overflow: hidden;
            background-size: 50px 50px;
            background-image: linear-gradient(to right, #e8e8e8 1px, transparent 1px),
                              linear-gradient(to bottom, #e8e8e8 1px, transparent 1px);
        }
        .industries-grid-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            background-image: 
                linear-gradient(to right, rgba(255, 255, 0, 0.12) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(255, 255, 0, 0.12) 1px, transparent 1px);
            background-size: 100px 100px;
            mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 0%, transparent 75%);
            -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 0%, transparent 75%);
        }
        .industries .container {
            position: relative;
            z-index: 1;
        }
        .industries-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2px;
        }
        .industry-item {
            padding: 48px 32px;
            border: 1px solid #e0e0e0;
            background: #f8f8f8;
            text-align: center;
            position: relative;
            transition: all 0.4s ease;
            overflow: hidden;
        }
        .industry-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: #FFFF00;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        .industry-item:hover {
            background: #fff;
            border-color: #ccc;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }
        .industry-item:hover::before {
            transform: scaleX(1);
        }
        .industry-item h3 {
            font-family: 'Oswald', sans-serif;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-size: 1rem;
            color: #000;
            margin-bottom: 8px;
        }
        .industry-item p {
            font-family: 'Space Mono', monospace;
            font-size: 0.65rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }
        /* ══════════════════════════════════════════
           INDUSTRIES HEADING - Underline Accent Style
           ══════════════════════════════════════════ */
        .industries .section-header h2 {
            font-size: clamp(4rem, 10vw, 9rem);
            line-height: 0.85;
            letter-spacing: 0.15em;
            font-weight: 700;
            text-transform: uppercase;
            color: #000;
            margin-bottom: 0;
        }
        .industries .section-header h2 mark {
            background: transparent;
            color: #000;
            padding: 0;
            display: inline-block;
            position: relative;
            font-weight: 700;
        }
        .industries .section-header h2 mark::after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 0;
            width: 100%;
            height: 12px;
            background: #FFFF00;
            z-index: -1;
            opacity: 0.6;
        }
        .industries .eyebrow {
            color: #999;
        }
        .industries .rule {
            background: #ccc;
        }
        .industries .lead {
            color: #777;
        }
        .industries .lead strong {
            color: #000;
        }

        /* ══════════════════════════════════════════
           STATS GRID — STYLE 2: CARDS WITH YELLOW ACCENT
           ══════════════════════════════════════════ */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
        }
        .stat-card {
            text-align: center;
            padding: 30px 32px;
            background: transparent;
            border: none;
            border-right: 1px solid #e0e0e0;
            position: relative;
            overflow: visible;
            transition: all 0.4s ease;
        }
        .stat-card:last-child {
            border-right: none;
        }
        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: #FFFF00;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        .stat-card:hover::before {
            transform: scaleX(1);
        }
        .stat-card h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(6rem, 12vw, 10rem);
            color: #000;
            line-height: 1;
            margin-bottom: 16px;
        }
        .stat-card p {
            font-family: 'Space Mono', monospace;
            font-size: 0.7rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.15em;
        }

        /* ══════════════════════════════════════════
           PROCESS STEPS
           ══════════════════════════════════════════ */
        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .process-card {
            padding: 50px 32px;
            background: #111;
            border: 1px solid #222;
            border-top: 3px solid transparent;
            position: relative;
            transition: all 0.5s ease;
        }
        .process-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: #FFFF00;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }
        .process-card:hover {
            background: #151515;
            border-color: #333;
            transform: translateY(-4px);
        }
        .process-card:hover::before {
            transform: scaleX(1);
        }
        .process-card .step-number {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 4rem;
            color: #333;
            line-height: 1;
            margin-bottom: 20px;
            transition: color 0.4s ease;
        }
        .process-card:hover .step-number {
            color: #FFFF00;
        }
        .process-card .step-label {
            font-family: 'Space Mono', monospace;
            font-size: 0.6rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            margin-bottom: 12px;
        }
        .process-card h3 {
            font-size: 1.2rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: #fff;
            margin-bottom: 16px;
        }
        .process-card p {
            font-size: 0.85rem;
            color: #888;
            line-height: 1.7;
            font-weight: 300;
        }
        .process-card .big-num {
            display: none;
        }

        /* ══════════════════════════════════════════
           TESTIMONIAL
           ══════════════════════════════════════════ */
        #testimonials {
            position: relative;
            overflow: hidden;
            background-size: 60px 60px;
            background-image: linear-gradient(to right, #111 1px, transparent 1px),
                              linear-gradient(to bottom, #111 1px, transparent 1px);
        }
        .testimonial-grid-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            background-image: 
                linear-gradient(to right, rgba(255, 255, 0, 0.2) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(255, 255, 0, 0.2) 1px, transparent 1px);
            background-size: 80px 80px;
            mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 0%, transparent 80%);
            -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 0%, transparent 80%);
        }
        #testimonials .container {
            position: relative;
            z-index: 1;
        }
        .testimonial {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        .testimonial-left {
            position: relative;
        }
        .testimonial-left .quote-mark {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 12rem;
            color: #FFFF00;
            line-height: 1;
            opacity: 0.2;
            position: absolute;
            top: -40px;
            left: -20px;
            z-index: 0;
        }
        .testimonial-left blockquote {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(2.2rem, 4.5vw, 3.8rem);
            line-height: 1.3;
            font-weight: 400;
            color: #fff;
            position: relative;
            z-index: 1;
            text-transform: none;
            margin-bottom: 0;
        }
        .testimonial-left blockquote mark {
            background: #FFFF00;
            color: #000;
            padding: 0.1em 0.3em;
            font-weight: 600;
        }
        .testimonial-right {
            padding-left: 40px;
            border-left: 2px solid #222;
        }
        .testimonial-right .author {
            margin-bottom: 32px;
        }
        .testimonial-right .author-name {
            font-size: 1.5rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 8px;
        }
        .testimonial-right .author-title {
            font-family: 'Space Mono', monospace;
            font-size: 0.75rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 24px;
        }
        .testimonial-right .author-company {
            font-size: 0.9rem;
            color: #888;
        }
        .testimonial-right .stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-top: 40px;
        }
        .testimonial-right .stat-item {
            padding: 20px;
            background: #111;
            border: 1px solid #222;
        }
        .testimonial-right .stat-number {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.5rem;
            color: #FFFF00;
            line-height: 1;
            margin-bottom: 8px;
        }
        .testimonial-right .stat-label {
            font-family: 'Space Mono', monospace;
            font-size: 0.65rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.15em;
        }

        /* ══════════════════════════════════════════
           PACKAGES — TIERED WITH HIGHLIGHT
           ══════════════════════════════════════════ */
        .packages-section {
            background: #000;
            padding: 140px 0;
        }
        .packages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            align-items: stretch;
        }
        .package-card {
            padding: 50px 36px;
            background: #0a0a0a;
            border: 1px solid #222;
            position: relative;
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .package-card.featured {
            background: #111;
            border: 2px solid #FFFF00;
            transform: scale(1.05);
        }
        .package-card.featured::before {
            content: 'POPULAR';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: #FFFF00;
            color: #000;
            padding: 4px 20px;
            font-family: 'Space Mono', monospace;
            font-size: 0.6rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            font-weight: 700;
        }
        .package-card:hover {
            background: #151515;
            border-color: #333;
        }
        .package-card.featured:hover {
            border-color: #FFFF00;
        }
        .package-card .package-name {
            font-family: 'Space Mono', monospace;
            font-size: 0.65rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            margin-bottom: 12px;
        }
        .package-card .package-title {
            font-size: 1.6rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: #fff;
            margin-bottom: 20px;
        }
        .package-card .package-price {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 4rem;
            color: #fff;
            line-height: 1;
            margin-bottom: 4px;
        }
        .package-card.featured .package-price {
            color: #FFFF00;
        }
        .package-card .package-period {
            font-family: 'Space Mono', monospace;
            font-size: 0.65rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 32px;
        }
        .package-card .package-features {
            list-style: none;
            margin-bottom: 40px;
            flex-grow: 1;
        }
        .package-card .package-features li {
            padding: 10px 0;
            font-size: 0.85rem;
            color: #888;
            line-height: 1.6;
        }
        .package-card .package-btn {
            width: 100%;
            padding: 16px;
            background: #222;
            color: #fff;
            border: none;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            text-decoration: none;
            text-align: center;
            display: block;
            transition: all 0.3s ease;
        }
        .package-card.featured .package-btn {
            background: #FFFF00;
            color: #000;
        }
        .package-card .package-btn:hover {
            background: #333;
        }
        .package-card.featured .package-btn:hover {
            background: #fff;
        }

        /* ══════════════════════════════════════════
           FAQ SECTION
           ══════════════════════════════════════════ */
        .faq-section {
            background: #000;
            padding: 140px 0;
        }
        .faq-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 64px;
            align-items: start;
        }
        .faq-title {
            position: sticky;
            top: 120px;
        }
        /* ══════════════════════════════════════════
           FAQ HEADING - Yellow Text with Shadow
           ══════════════════════════════════════════ */
        .faq-title h2 {
            font-family: 'Antonio', sans-serif;
            font-size: clamp(4rem, 8vw, 8rem);
            line-height: 0.9;
            color: #FFFF00;
            text-transform: uppercase;
            margin-bottom: 0;
            text-shadow: 0 0 20px rgba(255, 255, 0, 0.3);
            letter-spacing: -0.02em;
        }
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .faq-item {
            border-bottom: 1px solid #333;
            padding-bottom: 32px;
        }
        .faq-item summary {
            font-family: 'Antonio', sans-serif;
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            color: #fff;
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-transform: uppercase;
            transition: color 0.3s ease;
            padding: 16px 0;
        }
        .faq-item summary:hover {
            color: #FFFF00;
        }
        .faq-item summary::-webkit-details-marker {
            display: none;
        }
        .faq-item summary::marker {
            display: none;
        }
        .faq-item summary span {
            font-size: 2.5rem;
            color: #fff;
            transition: transform 0.3s ease;
            flex-shrink: 0;
            margin-left: 20px;
        }
        .faq-item[open] summary span {
            transform: rotate(45deg);
        }
        .faq-item[open] summary {
            color: #FFFF00;
        }
        .faq-answer {
            margin-top: 24px;
            font-size: 1.25rem;
            color: #888;
            text-transform: uppercase;
            font-weight: 900;
            line-height: 1.6;
        }
        .faq-answer p {
            margin-bottom: 16px;
        }
        .faq-answer p:last-child {
            margin-bottom: 0;
        }

        /* ══════════════════════════════════════════
           AUDIT FORM / CTA
           ══════════════════════════════════════════ */
        .audit-section {
            background: #fff;
            color: #000;
            padding: 140px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            background-size: 60px 60px;
            background-image: linear-gradient(to right, #ddd 1px, transparent 1px),
                              linear-gradient(to bottom, #ddd 1px, transparent 1px);
        }
        .audit-grid-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            background-image: 
                linear-gradient(to right, rgba(255, 255, 0, 0.2) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(255, 255, 0, 0.2) 1px, transparent 1px);
            background-size: 80px 80px;
            mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 0%, transparent 80%);
            -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 0%, transparent 80%);
        }
        .audit-section .container {
            position: relative;
            z-index: 1;
        }
        .audit-container {
            border: 15px solid #000;
            padding: 40px 80px;
            background: #000;
            color: #fff;
            position: relative;
            overflow: hidden;
            max-width: 1400px;
            margin: 0 auto;
        }
        .audit-container h2 {
            font-family: 'Antonio', sans-serif;
            font-size: clamp(3rem, 8vw, 9rem);
            line-height: 0.9;
            letter-spacing: -0.02em;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 32px;
            color: #fff;
        }
        .audit-container .outline-text {
            -webkit-text-stroke: 1.5px #fff;
            color: transparent;
        }
        .audit-container p {
            font-size: clamp(0.9rem, 1.2vw, 1.25rem);
            max-width: 600px;
            margin: 0 auto 48px;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 0.1em;
            color: #fff;
        }
        .audit-form {
            display: flex;
            flex-direction: column;
            gap: 16px;
            justify-content: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        .audit-form input {
            background: #181818;
            border: 2px solid #fff;
            padding: 20px;
            font-family: 'Antonio', sans-serif;
            font-size: clamp(1.2rem, 2vw, 2rem);
            color: #fff;
            text-transform: uppercase;
            outline: none;
            transition: all 0.3s ease;
            width: 100%;
        }
        .audit-form input::placeholder {
            color: #666;
        }
        .audit-form input:focus {
            border-color: #FFFF00;
            background: #1a1a1a;
        }
        .audit-form button {
            background: #FFFF00;
            color: #000;
            font-family: 'Antonio', sans-serif;
            padding: 20px 40px;
            font-size: clamp(1.2rem, 2vw, 1.75rem);
            display: inline-block;
            transition: all 0.4s ease;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            font-weight: 700;
            letter-spacing: 0.05em;
        }
        .audit-form button:hover {
            background: #fff;
            letter-spacing: 0.1em;
            transform: translateY(-5px);
        }
        @media (min-width: 1024px) {
            .audit-form {
                flex-direction: row;
            }
            .audit-form input {
                width: 33.333%;
            }
        }

        /* ══════════════════════════════════════════
           FAQ SECTION
           ══════════════════════════════════════════ */
        .faq-section {
            background: #000;
            padding: 140px 0;
        }
        .faq-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 64px;
            align-items: start;
        }
        .faq-title {
            position: sticky;
            top: 120px;
        }
        /* ══════════════════════════════════════════
           FAQ HEADING - Yellow Text with Shadow
           ══════════════════════════════════════════ */
        .faq-title h2 {
            font-family: 'Antonio', sans-serif;
            font-size: clamp(4rem, 8vw, 8rem);
            line-height: 0.9;
            color: #FFFF00;
            text-transform: uppercase;
            margin-bottom: 0;
            text-shadow: 0 0 20px rgba(255, 255, 0, 0.3);
            letter-spacing: -0.02em;
        }
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .faq-item {
            border-bottom: 1px solid #333;
            padding-bottom: 32px;
        }
        .faq-item summary {
            font-family: 'Antonio', sans-serif;
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            color: #fff;
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-transform: uppercase;
            transition: color 0.3s ease;
            padding: 16px 0;
        }
        .faq-item summary:hover {
            color: #FFFF00;
        }
        .faq-item summary::-webkit-details-marker {
            display: none;
        }
        .faq-item summary::marker {
            display: none;
        }
        .faq-item summary span {
            font-size: 2.5rem;
            color: #fff;
            transition: transform 0.3s ease;
            flex-shrink: 0;
            margin-left: 20px;
        }
        .faq-item[open] summary span {
            transform: rotate(45deg);
        }
        .faq-item[open] summary {
            color: #FFFF00;
        }
        .faq-answer {
            margin-top: 24px;
            font-size: 1.25rem;
            color: #888;
            text-transform: uppercase;
            font-weight: 900;
            line-height: 1.6;
        }
        .faq-answer p {
            margin-bottom: 16px;
        }
        .faq-answer p:last-child {
            margin-bottom: 0;
        }

        /* ══════════════════════════════════════════
           FOOTER
           ══════════════════════════════════════════ */
        /* ══════════════════════════════════════════
           FOOTER MENU
           ══════════════════════════════════════════ */
        .footer-menu {
            background-color: #1a1a1a;
            padding: 60px 0;
            border-top: 1px solid #333;
            position: relative;
            overflow: hidden;
            background-size: 60px 60px;
            background-image: linear-gradient(to right, #222 1px, transparent 1px),
                              linear-gradient(to bottom, #222 1px, transparent 1px);
        }
        .footer-menu-grid-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            background-image: 
                linear-gradient(to right, rgba(255, 255, 0, 0.08) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(255, 255, 0, 0.08) 1px, transparent 1px);
            background-size: 120px 120px;
            mask-image: radial-gradient(ellipse 80% 60% at 30% 50%, black 0%, transparent 70%);
            -webkit-mask-image: radial-gradient(ellipse 80% 60% at 30% 50%, black 0%, transparent 70%);
        }
        .footer-menu-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 48px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 48px;
            position: relative;
            z-index: 1;
        }
        .footer-menu-column h3 {
            font-family: 'Space Mono', monospace;
            font-size: 0.7rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: #666;
            margin-bottom: 20px;
            font-weight: 700;
        }
        .footer-menu-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-menu-column ul li {
            margin-bottom: 12px;
        }
        .footer-menu-column ul li a {
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            color: #fff;
            text-decoration: none;
            transition: color 0.3s ease;
            display: inline-block;
        }
        .footer-menu-column ul li a:hover {
            color: #FFFF00;
        }
        @media (max-width: 768px) {
            .footer-menu-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 32px;
                padding: 0 24px;
            }
        }
        @media (max-width: 480px) {
            .footer-menu-content {
                grid-template-columns: 1fr;
            }
        }

        /* ══════════════════════════════════════════
           FOOTER
           ══════════════════════════════════════════ */
        .footer {
            background: #fff;
            color: #000;
            padding: 40px 48px;
            border-top: 20px solid #000;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: flex-end;
            gap: 40px;
        }
        @media (min-width: 768px) {
            .footer-content {
                flex-direction: row;
            }
        }
        .footer-left {
            font-family: 'Antonio', sans-serif;
            font-size: clamp(3rem, 8vw, 6rem);
            line-height: 1;
            text-transform: uppercase;
            color: #000;
        }
        .footer-right {
            text-align: right;
            font-family: 'Antonio', sans-serif;
        }
        .footer-right p {
            font-size: clamp(1.25rem, 3vw, 1.875rem);
            text-transform: uppercase;
            color: #000;
            margin-bottom: 8px;
        }
        .footer-right a {
            font-size: clamp(1.25rem, 3vw, 1.875rem);
            text-transform: uppercase;
            color: #666;
            transition: color 0.3s ease;
        }
        .footer-right a:hover {
            color: #000;
        }
        .footer-right .copyright {
            margin-top: 16px;
            font-family: 'Inter', sans-serif;
            font-size: 0.875rem;
            font-weight: 700;
            text-transform: uppercase;
            color: #000;
        }

        /* ══════════════════════════════════════════
           SCROLL REVEAL
           ══════════════════════════════════════════ */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .stagger > * { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
        .stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
        .stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
        .stagger.visible > *:nth-child(3) { transition-delay: 0.15s; }
        .stagger.visible > *:nth-child(4) { transition-delay: 0.2s; }
        .stagger.visible > *:nth-child(5) { transition-delay: 0.25s; }
        .stagger.visible > *:nth-child(6) { transition-delay: 0.3s; }
        .stagger.visible > * { opacity: 1; transform: translateY(0); }

        /* ══════════════════════════════════════════
           RESPONSIVE
           ══════════════════════════════════════════ */
        @media (max-width: 1024px) {
            .grid-2, .footer-grid { grid-template-columns: 1fr; gap: 48px; }
            .grid-3 { grid-template-columns: 1fr 1fr; gap: 2px; }
            .industries-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
            .testimonial {
                grid-template-columns: 1fr;
                gap: 60px;
            }
            .testimonial-right {
                padding-left: 0;
                border-left: none;
                border-top: 2px solid #222;
                padding-top: 40px;
            }
            .industry-item { border-bottom: 1px solid #151515; }
            .why-aeo-content { grid-template-columns: 1fr; gap: 48px; }
            .process-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
            .stats-grid { grid-template-columns: 1fr 1fr; gap: 0; }
            .stat-card { 
                border-right: none;
                border-bottom: 1px solid #e0e0e0;
                padding: 20px 24px;
            }
            .stats-section { padding: 15px 0 !important; }
            .stat-card:nth-child(2n) {
                border-right: 1px solid #e0e0e0;
            }
            .stat-card:nth-child(3),
            .stat-card:nth-child(4) {
                border-bottom: none;
            }
            .hero {
                padding: 100px 0 30px;
            }
            .hero .container { padding: 0 32px; }
            .hero h1 {
                font-size: clamp(2.5rem, 8vw, 6rem);
                letter-spacing: 0.12em;
                transform: scaleX(1.05);
                margin-bottom: 20px;
            }
            .hero-sub {
                font-size: 0.65rem;
                margin-bottom: 28px;
            }
            .hero .eyebrow {
                margin-bottom: 16px;
            }
        }
        @media (max-width: 768px) {
            html, body {
                overflow-x: hidden;
                width: 100%;
                max-width: 100vw;
            }
            .container { 
                padding: 0 20px;
                max-width: 100%;
                width: 100%;
            }
            .hero {
                padding: 100px 0 20px;
                overflow-x: hidden;
            }
            .hero .container { 
                padding: 0 20px;
                max-width: 100%;
                width: 100%;
            }
            .section { 
                padding: 100px 0;
                overflow-x: hidden;
            }
            .why-aeo { padding: 80px 0; }
            .why-aeo-content { grid-template-columns: 1fr; gap: 40px; }
            .why-aeo-left h2 { font-size: clamp(3.5rem, 10vw, 8rem); }
            .grid-3, .grid-4 { grid-template-columns: 1fr; }
            .industries-grid { grid-template-columns: 1fr; }
            .industry-item { border-bottom: 1px solid #e0e0e0; }
            .industry-item:last-child { border-bottom: none; }
            .process-grid { grid-template-columns: 1fr; }
            .stats-grid { grid-template-columns: 1fr; gap: 0; }
            .testimonial-right .stats {
                grid-template-columns: 1fr;
            }
            .packages-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .package-card.featured {
                transform: scale(1);
            }
            .faq-content {
                grid-template-columns: 1fr;
                gap: 48px;
            }
            .faq-title {
                position: static;
            }
            .stat-card { 
                border-right: none; 
                border-bottom: 1px solid #e0e0e0;
                padding: 20px 20px;
            }
            .stats-section { padding: 15px 0 !important; }
            .stat-card:last-child { border-bottom: none; }
            .stat-card h3 { font-size: clamp(3rem, 8vw, 6rem); }
            .stat-card:nth-child(2n) {
                border-right: none;
            }
            .nav-links { display: none; }
            .hero {
                padding: 100px 0 60px;
                min-height: auto;
            }
            .hero-content {
                padding-bottom: 20px;
            }
            .hero-buttons { 
                flex-direction: column; 
                gap: 16px;
                margin-top: 0;
            }
            .audit-container {
                padding: 30px 20px;
                max-width: 100%;
            }
            .audit-form {
                max-width: 100%;
            }
            .audit-form button {
                width: 100%;
            }
            .hero h1 { 
                font-size: clamp(2rem, 7vw, 5rem);
                letter-spacing: 0.05em;
                transform: none;
                margin-bottom: 16px;
                line-height: 0.9;
                word-wrap: break-word;
                overflow-wrap: break-word;
            }
            .hero-sub {
                font-size: 0.6rem;
                margin-bottom: 24px;
                line-height: 1.6;
                transform: none;
                word-wrap: break-word;
                overflow-wrap: break-word;
            }
            .hero {
                padding: 80px 0 80px;
            }
            .hero-content {
                padding-bottom: 20px;
            }
            .hero-buttons {
                margin-top: 24px;
            }
            .hero .eyebrow {
                font-size: 0.6rem;
                margin-bottom: 12px;
            }
            .ribbon-item {
                font-size: 0.7rem;
            }
            .service-card {
                padding: 40px 20px;
            }
            .process-card {
                padding: 40px 20px;
            }
            .package-card {
                padding: 40px 20px;
            }
            .footer-menu-content {
                padding: 0 20px;
            }
            .footer {
                padding: 40px 20px;
            }
            * {
                max-width: 100%;
            }
            img, video, iframe {
                max-width: 100%;
                height: auto;
            }
            .section {
                padding: 0 4vw;
            }
            .manifesto-text {
                font-size: clamp(3.5vw, 6vw, 6vw);
            }
            .hero-title[style*="font-size"] {
                font-size: clamp(2.5rem, 10vw, 5rem) !important;
            }
            .logic-section {
                padding: 0 5vw;
                min-height: auto;
            }
            .logic-content {
                max-width: 100%;
                font-size: clamp(1.5rem, 6vw, 3rem);
            }
            .marquee-section {
                min-height: 15vh;
            }
            .marquee {
                font-size: clamp(2rem, 8vw, 6rem);
            }
        }

        /* ══════════════════════════════════════════
           SERVICE PAGE SPECIFIC STYLES
           ══════════════════════════════════════════ */
        .page-hero {
            background: #000;
            background-size: 40px 40px;
            background-image: linear-gradient(to right, #111 1px, transparent 1px),
                              linear-gradient(to bottom, #111 1px, transparent 1px);
            padding: 180px 0 140px;
            position: relative;
            overflow: hidden;
        }
        .page-hero .container {
            position: relative;
            z-index: 1;
        }
        .page-hero h1 {
            margin-bottom: 32px;
            font-size: clamp(3.5rem, 10vw, 8rem);
            line-height: 0.85;
            letter-spacing: 0.15em;
            font-weight: 700;
            text-transform: uppercase;
        }
        .page-hero h1 mark {
            display: inline-block;
            padding: 0.06em 0.25em;
            margin: 0 0.1em;
            letter-spacing: 0.15em;
            transform: scaleX(1.03);
            background: #FFFF00;
            color: #000;
        }
        .page-hero .lead {
            max-width: 700px;
            margin-bottom: 48px;
            font-size: 1.15rem;
            color: #888;
        }
        .page-hero-buttons {
            display: flex;
            gap: 20px;
            margin-bottom: 60px;
        }
        .page-hero-meta {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-top: 60px;
        }
        .meta-item h4 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 3rem;
            color: #FFFF00;
            line-height: 1;
            margin-bottom: 8px;
        }
        .meta-item p {
            font-family: 'Space Mono', monospace;
            font-size: 0.65rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.15em;
        }
        .process-timeline {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .process-step {
            padding: 40px 32px;
            background: #111;
            border: 1px solid #222;
            position: relative;
            transition: all 0.4s ease;
        }
        .process-step:hover {
            background: #151515;
            border-color: #333;
            transform: translateY(-4px);
        }
        .process-step .step-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #FFFF00;
        }
        .process-step .step-icon i {
            color: #FFFF00;
        }
        .process-step h3 {
            font-size: 1.1rem;
            margin-bottom: 12px;
        }
        .process-step p {
            font-size: 0.85rem;
            color: #888;
            line-height: 1.7;
        }
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2px;
        }
        .benefit-card {
            padding: 48px 32px;
            background: #111;
            border: 1px solid #222;
            text-align: center;
        }
        .benefit-card .icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #FFFF00;
        }
        .benefit-card .icon i {
            color: #FFFF00;
        }
        .benefit-card h3 {
            font-size: 1.1rem;
            margin-bottom: 12px;
        }
        .benefit-card p {
            font-size: 0.85rem;
            color: #888;
            line-height: 1.7;
        }
        .cta-section {
            background: #FFFF00;
            color: #000;
            padding: 100px 0;
            text-align: center;
        }
        .cta-section h2 {
            color: #000;
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            margin-bottom: 24px;
        }
        .cta-section p {
            font-size: 1.1rem;
            color: #000;
            max-width: 600px;
            margin: 0 auto 40px;
        }
        .cta-section .btn {
            background: #000;
            color: #fff;
            border-color: #000;
        }
        .cta-section .btn:hover {
            background: #fff;
            color: #000;
            border-color: #fff;
        }
        
        /* ══════════════════════════════════════════
           SERVICES PAGE FAQ STYLES
           ══════════════════════════════════════════ */
        #faq .faq-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }
        /* Consistent FAQ styling across all pages */
        #faq .faq-item,
        .faq-item {
            border-bottom: 1px solid #333;
            padding: 32px 0;
        }
        #faq .faq-item summary,
        .faq-item summary {
            font-family: 'Antonio', sans-serif;
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            color: #fff;
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-transform: uppercase;
            transition: color 0.3s ease;
        }
        #faq .faq-item summary:hover,
        .faq-item summary:hover {
            color: #FFFF00;
        }
        #faq .faq-item summary::-webkit-details-marker,
        .faq-item summary::-webkit-details-marker {
            display: none;
        }
        #faq .faq-item summary::marker,
        .faq-item summary::marker {
            display: none;
        }
        /* Plus icon using span (removed ::after to avoid duplicate) */
        #faq .faq-item summary span,
        .faq-item summary span {
            font-size: 2.5rem;
            color: #fff;
            transition: transform 0.3s ease;
            flex-shrink: 0;
            margin-left: 20px;
        }
        #faq .faq-item[open] summary span,
        .faq-item[open] summary span {
            transform: rotate(45deg);
        }
        #faq .faq-item[open] summary,
        .faq-item[open] summary {
            color: #FFFF00;
        }
        #faq .faq-answer,
        .faq-answer {
            margin-top: 24px;
            font-size: 1.1rem;
            color: #888;
            text-transform: none;
            font-weight: 400;
            line-height: 1.8;
        }
        #faq .faq-answer p,
        .faq-answer p {
            margin-bottom: 16px;
            font-size: 1.1rem;
            color: #888;
            line-height: 1.8;
            text-transform: none;
            font-weight: 400;
        }
        #faq .faq-answer p:last-child,
        .faq-answer p:last-child {
            margin-bottom: 0;
        }
        
        @media (max-width: 1024px) {
            .page-hero-meta {
                grid-template-columns: repeat(2, 1fr);
            }
            .process-timeline {
                grid-template-columns: repeat(2, 1fr);
            }
            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .page-hero {
                padding: 120px 0 80px;
            }
            .page-hero-meta {
                grid-template-columns: 1fr;
            }
            .process-timeline,
            .benefits-grid {
                grid-template-columns: 1fr;
            }
            .page-hero-buttons {
                flex-direction: column;
            }
        }

        .grain {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
            opacity: 0.03;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
        }

        /* ══════════════════════════════════════════
           HEADER / SITE HEADER
           ══════════════════════════════════════════ */
        :root {
            --header-height: 64px;
            --yellow: #FFFF00;
            --white: #ffffff;
            --black: #000000;
        }

        body {
            padding-top: var(--header-height);
        }

        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            min-height: var(--header-height);
            display: flex;
            align-items: center;
            background: var(--black);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .header-inner {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 1rem;
            align-items: center;
            justify-content: space-between;
            padding: 0.85rem 5vw;
            max-width: 100%;
            width: 100%;
        }

        .header-nav {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }

        /* Hamburger: always visible, two white (top/bottom) and one yellow (middle) */
        .header-menu-toggle {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            width: 28px;
            height: 22px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
            position: relative;
        }

        /* Hamburger: two white lines, one yellow (middle) */
        .header-menu-toggle span,
        .header-menu-toggle::before,
        .header-menu-toggle::after {
            position: absolute;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--white);
            transition: transform 0.25s ease, opacity 0.25s ease;
        }

        .header-menu-toggle::before { top: 0; }
        .header-menu-toggle span {
            top: 50%;
            transform: translateY(-50%);
            background: var(--yellow);
        }
        .header-menu-toggle::after { bottom: 0; }

        .header-menu-toggle[aria-expanded="true"]::before {
            top: 50%;
            transform: translateY(-50%) rotate(45deg);
        }

        .header-menu-toggle[aria-expanded="true"] span {
            opacity: 0;
        }

        .header-menu-toggle[aria-expanded="true"]::after {
            bottom: 50%;
            transform: translateY(50%) rotate(-45deg);
        }

        /* Menu overlay: does not take space, never reduces bottom content */
        .header-menu {
            list-style: none;
            margin: 0;
            padding: 1rem 5vw 1.25rem;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            position: fixed;
            top: var(--header-height);
            left: 0;
            right: 0;
            z-index: 99;
            background: var(--black);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
        }

        .header-nav.is-open .header-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .header-menu a {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--white);
            transition: color 0.2s ease;
        }

        .header-menu a:hover {
            color: var(--yellow);
        }

        .header-logo {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            flex-shrink: 0;
        }

        .header-logo-name {
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.02em;
            color: var(--white);
            line-height: 1.2;
        }

        .header-actions {
            flex: 1;
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }

        .header-whatsapp {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            color: var(--white);
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
        }

        .header-whatsapp:hover {
            color: var(--black);
            background: #25D366;
            border-color: #25D366;
        }

        .header-whatsapp i {
            font-size: 1.25rem;
        }

        @media (max-width: 768px) {
            .header-inner {
                grid-template-columns: auto 1fr auto;
                gap: 0.75rem;
            }

            .header-logo-name {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .header-inner {
                padding-left: 4vw;
                padding-right: 4vw;
            }

            .header-logo-name {
                font-size: 0.8rem;
            }
        }
        /* ══════════════════════════════════════════
           WHAT IS AEO HEADING - Yellow Text with Left Border Accent
           ══════════════════════════════════════════ */
        #what-is-aeo .grid-2 h2 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            line-height: 0.95;
            margin-bottom: 16px;
            font-family: 'Oswald', 'Arial Narrow', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: -0.01em;
            color: #fff;
            position: relative;
            padding-left: 24px;
        }
        #what-is-aeo .grid-2 h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 6px;
            background: #FFFF00;
            transform: scaleY(1.1);
        }
        #what-is-aeo .grid-2 h2 mark {
            background: transparent;
            color: #FFFF00;
            padding: 0;
            display: inline-block;
            position: relative;
            font-weight: 700;
            text-shadow: 0 0 20px rgba(255, 255, 0, 0.4);
        }
        
        /* ══════════════════════════════════════════
           WHY AEO MATTERS HEADING - Yellow Background Box Style
           ══════════════════════════════════════════ */
        #why-aeo .section-header h2 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            line-height: 0.95;
            margin-bottom: 16px;
            font-family: 'Oswald', 'Arial Narrow', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: -0.01em;
            color: #fff;
        }
        #why-aeo .section-header h2 mark {
            background: #FFFF00;
            color: #000;
            padding: 0.1em 0.3em;
            display: inline-block;
            font-weight: 700;
            box-shadow: 0 0 0 2px #FFFF00;
        }
        
        /* ══════════════════════════════════════════
           HOW AEO WORKS HEADING - Yellow Text with Diagonal Slash
           ══════════════════════════════════════════ */
        #how-it-works .section-header h2 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            line-height: 0.95;
            margin-bottom: 16px;
            font-family: 'Oswald', 'Arial Narrow', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: -0.01em;
            color: #fff;
        }
        #how-it-works .section-header h2 mark {
            background: transparent;
            color: #FFFF00;
            padding: 0;
            font-weight: 700;
            position: relative;
            display: inline-block;
        }
        #how-it-works .section-header h2 mark::before {
            content: '';
            position: absolute;
            top: 50%;
            left: -8px;
            width: 3px;
            height: 120%;
            background: #FFFF00;
            transform: translateY(-50%) rotate(-15deg);
        }
        
        /* ══════════════════════════════════════════
           AEO STRATEGIES HEADING - Yellow Text with Gradient Underline
           ══════════════════════════════════════════ */
        #strategies .section-header h2 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            line-height: 0.95;
            margin-bottom: 16px;
            font-family: 'Oswald', 'Arial Narrow', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: -0.01em;
            color: #fff;
        }
        #strategies .section-header h2 mark {
            background: transparent;
            color: #FFFF00;
            padding: 0;
            font-weight: 700;
            position: relative;
        }
        #strategies .section-header h2 mark::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #FFFF00 0%, transparent 100%);
        }
        
        /* ══════════════════════════════════════════
           AEO PROCESS HEADING (on AEO page) - Yellow Text with Glow Effect
           Note: This overrides the index.php process style for AEO page
           ══════════════════════════════════════════ */
        #process:not(.index-process-section) .section-header h2 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            line-height: 0.95;
            margin-bottom: 16px;
            font-family: 'Oswald', 'Arial Narrow', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: -0.01em;
            color: #fff;
        }
        #process:not(.index-process-section) .section-header h2 mark {
            background: transparent;
            color: #FFFF00;
            padding: 0;
            font-weight: 700;
            text-shadow: 0 0 30px rgba(255, 255, 0, 0.6),
                         0 0 60px rgba(255, 255, 0, 0.3);
        }
        
        /* ══════════════════════════════════════════
           AEO FAQ HEADING - Yellow Text with Box Border
           ══════════════════════════════════════════ */
        #faq .section-header h2 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            line-height: 0.95;
            margin-bottom: 16px;
            font-family: 'Oswald', 'Arial Narrow', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: -0.01em;
            color: #fff;
        }
        #faq .section-header h2 mark {
            background: transparent;
            color: #FFFF00;
            padding: 0.1em 0.3em;
            font-weight: 700;
            border: 2px solid #FFFF00;
            display: inline-block;
        }
        
        /* ══════════════════════════════════════════
           CTA SECTION HEADING - Black Text (Yellow Background Section)
           ══════════════════════════════════════════ */
        .cta-section h2 {
            color: #000;
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            margin-bottom: 24px;
        }
        
        /* ══════════════════════════════════════════
           GEO PAGE - Unique Heading Styles
           ══════════════════════════════════════════ */
        
        /* WHAT IS GEO HEADING - Yellow Text with Right Border Accent */
        #what-is-geo .grid-2 h2 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            line-height: 0.95;
            margin-bottom: 16px;
            font-family: 'Oswald', 'Arial Narrow', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: -0.01em;
            color: #fff;
            position: relative;
            padding-right: 24px;
        }
        #what-is-geo .grid-2 h2::after {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            width: 6px;
            background: #FFFF00;
            transform: scaleY(1.1);
        }
        #what-is-geo .grid-2 h2 mark {
            background: transparent;
            color: #FFFF00;
            padding: 0;
            display: inline-block;
            position: relative;
            font-weight: 700;
            text-shadow: 0 0 20px rgba(255, 255, 0, 0.4);
        }
        
        /* WHY GEO MATTERS HEADING - Yellow Text with Top Border */
        #why-geo .section-header h2 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            line-height: 0.95;
            margin-bottom: 16px;
            font-family: 'Oswald', 'Arial Narrow', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: -0.01em;
            color: #fff;
            position: relative;
            padding-top: 24px;
        }
        #why-geo .section-header h2::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: #FFFF00;
        }
        #why-geo .section-header h2 mark {
            background: transparent;
            color: #FFFF00;
            padding: 0;
            font-weight: 700;
        }
        
        /* HOW GEO WORKS HEADING - Yellow Text with Top and Bottom Borders */
        #what-is-geo ~ #how-it-works .section-header h2,
        body:has(#what-is-geo) #how-it-works .section-header h2 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            line-height: 0.95;
            margin-bottom: 16px;
            font-family: 'Oswald', 'Arial Narrow', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: -0.01em;
            color: #fff;
        }
        #what-is-geo ~ #how-it-works .section-header h2 mark,
        body:has(#what-is-geo) #how-it-works .section-header h2 mark {
            background: transparent;
            color: #FFFF00;
            padding: 0.15em 0;
            font-weight: 700;
            position: relative;
            display: inline-block;
        }
        #what-is-geo ~ #how-it-works .section-header h2 mark::before,
        body:has(#what-is-geo) #how-it-works .section-header h2 mark::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: #FFFF00;
        }
        #what-is-geo ~ #how-it-works .section-header h2 mark::after,
        body:has(#what-is-geo) #how-it-works .section-header h2 mark::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: #FFFF00;
        }
        
        /* GEO STRATEGIES HEADING - Yellow Text with Diagonal Slash Accent */
        /* Only applies when #what-is-geo exists (GEO page) */
        #what-is-geo ~ #strategies .section-header h2,
        body:has(#what-is-geo) #strategies .section-header h2 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            line-height: 0.95;
            margin-bottom: 16px;
            font-family: 'Oswald', 'Arial Narrow', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: -0.01em;
            color: #fff;
            position: relative;
        }
        #what-is-geo ~ #strategies .section-header h2 mark,
        body:has(#what-is-geo) #strategies .section-header h2 mark {
            background: transparent;
            color: #FFFF00;
            padding: 0;
            font-weight: 700;
            position: relative;
            display: inline-block;
        }
        #what-is-geo ~ #strategies .section-header h2 mark::before,
        body:has(#what-is-geo) #strategies .section-header h2 mark::before {
            content: '';
            position: absolute;
            top: 50%;
            left: -12px;
            width: 4px;
            height: 120%;
            background: #FFFF00;
            transform: translateY(-50%) rotate(25deg);
        }
        
        /* GEO PROCESS HEADING - Yellow Text with Pulsing Glow */
        #process:not(.index-process-section) .section-header h2 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            line-height: 0.95;
            margin-bottom: 16px;
            font-family: 'Oswald', 'Arial Narrow', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: -0.01em;
            color: #fff;
        }
        #process:not(.index-process-section) .section-header h2 mark {
            background: transparent;
            color: #FFFF00;
            padding: 0;
            font-weight: 700;
            animation: geo-glow 2s ease-in-out infinite;
        }
        @keyframes geo-glow {
            0%, 100% {
                text-shadow: 0 0 20px rgba(255, 255, 0, 0.6),
                             0 0 40px rgba(255, 255, 0, 0.3);
            }
            50% {
                text-shadow: 0 0 30px rgba(255, 255, 0, 0.8),
                             0 0 60px rgba(255, 255, 0, 0.5);
            }
        }
        
        /* GEO FAQ HEADING - Yellow Text with Dashed Border (only on GEO page) */
        body:has(#what-is-geo) #faq .section-header h2 mark {
            background: transparent;
            color: #FFFF00;
            padding: 0.1em 0.3em;
            font-weight: 700;
            border: 2px dashed #FFFF00;
            display: inline-block;
        }
        .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
        .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }

        /* ══════════════════════════════════════════
           TYPOGRAPHY
           ══════════════════════════════════════════ */
        h1, h2 {
            font-family: 'Oswald', 'Arial Narrow', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: -0.01em;
            color: #fff;
        }
        h3 {
            font-family: 'Oswald', sans-serif;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.02em;
            font-size: 1.25rem;
            color: #fff;
        }
        /* Consistent h1 sizing across all pages */
        h1 {
            font-size: clamp(3.5rem, 10vw, 8rem);
            line-height: 0.85;
            letter-spacing: 0.15em;
        }
        /* Consistent h2 sizing across all pages */
        h2 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            line-height: 0.95;
            margin-bottom: 16px;
        }
        .eyebrow {
            font-family: 'Space Mono', monospace;
            font-size: 0.7rem;
            font-weight: 400;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: #555;
            margin-bottom: 20px;
            display: inline-block;
        }
        .accent-num {
            font-family: 'Bebas Neue', sans-serif;
            letter-spacing: 0.02em;
        }
        .lead { font-size: 1.05rem; line-height: 1.7; color: #888; font-weight: 300; }
        .body-text { font-size: 0.95rem; line-height: 1.8; color: #888; font-weight: 300; }
        mark {
            background: #fff;
            color: #000;
            padding: 0 6px;
            font-weight: 600;
        }

        /* ══════════════════════════════════════════
           GRAIN OVERLAY
           ══════════════════════════════════════════ */
        body::after {
            content: '';
            position: fixed;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 9999;
            animation: grain 0.5s steps(1) infinite;
        }
        @keyframes grain {
            0%, 100% { transform: translate(0, 0); }
            10% { transform: translate(-5%, -10%); }
            30% { transform: translate(3%, -15%); }
            50% { transform: translate(12%, 9%); }
            70% { transform: translate(9%, 4%); }
            90% { transform: translate(-1%, 7%); }
        }

        /* ══════════════════════════════════════════
           BUTTONS
           ══════════════════════════════════════════ */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 18px 42px;
            font-family: 'Oswald', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            border: 2px solid transparent;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
        }
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: -1;
        }
        .btn-white {
            background: #fff;
            color: #000;
            border-color: #fff;
        }
        .btn-white::before { background: #000; }
        .btn-white:hover { color: #FFFF00; }
        .btn-white:hover::before { left: 0; }
        .btn-outline {
            background: transparent;
            color: #fff;
            border-color: #333;
        }
        .btn-outline::before { background: #fff; }
        .btn-outline:hover { color: #FFFF00; border-color: #fff; }
        .btn-outline:hover::before { left: 0; }
        .btn-black {
            background: #000;
            color: #fff;
            border-color: #000;
        }
        .btn-black::before { background: #fff; }
        .btn-black:hover { color: #000; }
        .btn-black:hover::before { left: 0; }
        .btn-outline-black {
            background: transparent;
            color: #000;
            border: 2px solid #000;
        }
        .btn-outline-black::before { background: #000; }
        .btn-outline-black:hover { color: #fff; border-color: #000; }
        .btn-outline-black:hover::before { left: 0; }

        /* ══════════════════════════════════════════
           NAVIGATION
           ══════════════════════════════════════════ */
        .tall-font {
            font-family: 'Antonio', sans-serif;
            text-transform: uppercase;
            letter-spacing: -0.02em;
            font-weight: 700;
        }
        .fixed-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 24px;
            background: rgba(0,0,0,0.9);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #fff;
            height: 80px;
        }
        @media (min-width: 768px) {
            .fixed-nav {
                padding: 0 48px;
            }
        }
        .fixed-nav > a {
            font-size: 1.875rem;
            color: #fff;
        }
        @media (min-width: 768px) {
            .fixed-nav > a {
                font-size: 2.25rem;
            }
        }
        .fixed-nav nav {
            display: none;
        }
        @media (min-width: 1024px) {
            .fixed-nav nav {
                display: flex;
                gap: 40px;
            }
        }
        .fixed-nav nav a {
            font-size: 1.25rem;
            transition: color 0.3s ease;
        }
        .fixed-nav nav a:hover {
            color: #FFFF00;
        }
        #menu-toggle {
            display: none;
        }
        #menu-toggle:checked ~ #mobile-menu {
            display: flex;
        }
        #mobile-menu {
            display: none;
            position: fixed;
            inset: 0;
            background: #000;
            z-index: 105;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 32px;
        }
        #mobile-menu a {
            color: #fff;
            font-size: 3rem;
            transition: color 0.3s ease;
        }
        #mobile-menu a:hover {
            color: #FFFF00;
        }
        label[for="menu-toggle"] {
            display: flex;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 110;
        }
        @media (min-width: 1024px) {
            label[for="menu-toggle"] {
                display: none;
            }
        }
        label[for="menu-toggle"] div {
            width: 32px;
            height: 4px;
            background: #fff;
        }
        label[for="menu-toggle"] div:last-child {
            background: #FFFF00;
        }
        .nav-links { display: flex; align-items: center; gap: 40px; }
        .nav-links a {
            font-family: 'Space Mono', monospace;
            font-size: 0.7rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #666;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0;
            height: 1px;
            background: #fff;
            transition: width 0.4s ease;
        }
        .nav-links a:hover { color: #fff; }
        .nav-links a:hover::after { width: 100%; }
        .nav-cta {
            font-family: 'Oswald', sans-serif;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            padding: 10px 28px;
            background: #fff;
            color: #000;
            border: 1px solid #fff;
            transition: all 0.3s ease;
        }
        .nav-cta:hover { background: transparent; color: #fff; }
        .nav-cta::after { display: none; }

        /* ══════════════════════════════════════════
           HERO — STYLE 3: FULL-WIDTH SCALE TRANSFORM
           ══════════════════════════════════════════ */
        .hero {
            height: 100vh;
            max-height: 100vh;
            display: flex;
            align-items: center;
            padding: 60px 0 30px;
            position: relative;
            z-index: 1;
            overflow: hidden;
            background: #000;
            background-size: 40px 40px;
            background-image: linear-gradient(to right, #111 1px, transparent 1px),
                              linear-gradient(to bottom, #111 1px, transparent 1px);
        }
        .wavy-grid-overlay {
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            background-image: 
                linear-gradient(to right, rgba(255, 255, 0, 0.15) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(255, 255, 0, 0.15) 1px, transparent 1px);
            background-size: 50px 50px;
            mask-image: linear-gradient(to left, black 0%, transparent 85%);
            -webkit-mask-image: linear-gradient(to left, black 0%, transparent 85%);
            clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 85% 92%, 70% 100%, 55% 92%, 40% 100%, 25% 92%, 0% 100%);
        }
        .hero-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0.07;
            animation: float 8s ease-in-out infinite;
        }
        .hero-orb-1 {
            width: 600px; height: 600px;
            background: #fff;
            top: -200px; right: -100px;
            animation-delay: 0s;
        }
        .hero-orb-2 {
            width: 400px; height: 400px;
            background: #fff;
            bottom: -100px; left: -100px;
            animation-delay: -4s;
        }
        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(30px, -40px) scale(1.1); }
        }
        .hero .container {
            width: 100%;
            max-width: 100%;
            padding: 0 48px;
            height: 100%;
            display: flex;
            align-items: center;
        }
        .hero-content { 
            position: relative; 
            z-index: 10; 
            width: 100%;
            padding: 0;
        }
        .hero .eyebrow {
            font-family: 'Space Mono', monospace;
            font-size: 0.65rem;
            font-weight: 400;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: #555;
            margin-bottom: 20px;
            display: block;
        }
        .hero h1 { 
            color: #fff; 
            margin-bottom: 24px;
            width: 100%;
            font-size: clamp(3.5rem, 10vw, 8rem);
            line-height: 0.85;
            letter-spacing: 0.15em;
            font-weight: 700;
            text-transform: uppercase;
            word-spacing: 0.2em;
            transform: scaleX(1.08) scaleY(1.02);
            transform-origin: left center;
            padding: 0;
            margin-left: -0.03em;
        }
        .hero h1 br {
            display: block;
            margin: 0;
            line-height: 0.9;
        }
        .hero h1 mark {
            display: inline-block;
            padding: 0.06em 0.25em;
            margin: 0 0.1em;
            letter-spacing: 0.15em;
            transform: scaleX(1.03);
            background: #FFFF00;
            color: #000;
        }
        .hero h1 .hero-outline {
            -webkit-text-stroke: 2px #fff;
            -webkit-text-fill-color: transparent;
            letter-spacing: 0.2em;
            transform: scaleX(1.05);
        }
        .hero-sub {
            font-family: 'Space Mono', monospace;
            font-size: clamp(0.7rem, 1.2vw, 0.85rem);
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: #555;
            margin-bottom: 32px;
            width: 100%;
            line-height: 1.7;
            transform: scaleX(1.01);
        }
        .hero-sub mark {
            padding: 0.1em 0.3em;
            margin: 0 0.2em;
            letter-spacing: 0.15em;
            background: #FFFF00;
            color: #000;
        }
        .hero-buttons { 
            display: flex; 
            gap: 20px; 
            margin-bottom: 0;
            position: relative;
            z-index: 15;
        }

        /* ══════════════════════════════════════════
           SECTIONS
           ══════════════════════════════════════════ */
        .section { padding: 140px 0; position: relative; }
        .section-alt { background: #050505; }
        #process {
            position: relative;
            overflow: hidden;
        }
        .process-bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            opacity: 0.4;
        }
        .process-bg-pattern::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: 
                repeating-linear-gradient(
                    45deg,
                    transparent,
                    transparent 2px,
                    rgba(255, 255, 0, 0.03) 2px,
                    rgba(255, 255, 0, 0.03) 4px
                ),
                repeating-linear-gradient(
                    -45deg,
                    transparent,
                    transparent 2px,
                    rgba(255, 255, 0, 0.03) 2px,
                    rgba(255, 255, 0, 0.03) 4px
                );
            animation: process-pattern-move 20s linear infinite;
        }
        .process-bg-pattern::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(
                ellipse 80% 60% at 50% 50%,
                rgba(255, 255, 0, 0.08) 0%,
                transparent 70%
            );
        }
        @keyframes process-pattern-move {
            0% { transform: translate(0, 0) rotate(0deg); }
            100% { transform: translate(50px, 50px) rotate(360deg); }
        }
        .process-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.15;
            animation: process-orb-float 12s ease-in-out infinite;
        }
        .process-orb-1 {
            width: 500px;
            height: 500px;
            background: #FFFF00;
            top: 10%;
            right: 10%;
            animation-delay: 0s;
        }
        .process-orb-2 {
            width: 400px;
            height: 400px;
            background: #FFFF00;
            bottom: 15%;
            left: 15%;
            animation-delay: -6s;
        }
        @keyframes process-orb-float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(30px, -40px) scale(1.2); }
        }
        #process .container {
            position: relative;
            z-index: 1;
        }
        .section-white { background: #fff; color: #000; }
        .section-white.stats-section { 
            padding: 20px 0;
            position: relative;
            overflow: hidden;
        }
        .stats-bg-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }
        .stats-section .container {
            position: relative;
            z-index: 1;
        }
        .section-grey { background: #1a1a1a; color: #e0e0e0; }
        .section-header {
            margin-bottom: 80px;
        }
        .section-header.center {
            text-align: center;
        }
        .section-header.center .lead {
            margin-left: auto;
            margin-right: auto;
        }
        /* Consistent section header h2 styling */
        .section-header h2 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            line-height: 0.95;
            margin-bottom: 16px;
            font-family: 'Oswald', 'Arial Narrow', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: -0.01em;
            color: #fff;
        }
        /* Default section header - no yellow highlight */
        .section-header h2 mark {
            background: transparent;
            color: inherit;
            padding: 0;
            font-weight: inherit;
        }
        
        /* ══════════════════════════════════════════
           SERVICES HEADING - Diagonal Slash Accent
           ══════════════════════════════════════════ */
        #services .section-header h2 {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: -0.01em;
            color: #fff;
            line-height: 0.95;
            margin-bottom: 16px;
        }
        #services .section-header h2 mark {
            background: transparent;
            color: #FFFF00;
            padding: 0;
            font-weight: 700;
            position: relative;
            display: inline-block;
        }
        #services .section-header h2 mark::before {
            content: '';
            position: absolute;
            top: 50%;
            left: -8px;
            width: 3px;
            height: 120%;
            background: #FFFF00;
            transform: translateY(-50%) rotate(-15deg);
        }
        
        /* ══════════════════════════════════════════
           PROCESS HEADING - Gradient Underline Style
           ══════════════════════════════════════════ */
        #process .section-header h2 {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: -0.01em;
            color: #fff;
            line-height: 0.95;
            margin-bottom: 16px;
            position: relative;
        }
        #process .section-header h2 mark {
            background: transparent;
            color: #FFFF00;
            padding: 0;
            font-weight: 700;
            position: relative;
        }
        #process .section-header h2 mark::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #FFFF00 0%, transparent 100%);
        }
        
        /* ══════════════════════════════════════════
           PACKAGES HEADING - Accent Border Style
           ══════════════════════════════════════════ */
        #packages .section-header h2 {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: -0.01em;
            color: #fff;
            line-height: 0.95;
            margin-bottom: 16px;
        }
        #packages .section-header h2 mark {
            background: transparent;
            color: #fff;
            padding: 0.1em 0.3em;
            font-weight: 700;
            border-left: 4px solid #FFFF00;
            border-right: 4px solid #FFFF00;
            display: inline-block;
        }
        .rule { width: 60px; height: 1px; background: #333; margin: 24px 0; }
        .rule-center { margin-left: auto; margin-right: auto; }
        .rule-white { background: #000; }
        .h-line { width: 100%; height: 1px; background: #111; }
        .h-line-light { width: 100%; height: 1px; background: #e0e0e0; }

        /* ══════════════════════════════════════════
           PROVOCATION SECTION (NEW STYLE)
           ══════════════════════════════════════════ */
        .light-section {
            background: #fff;
            color: #000;
        }
        .provocation-section-new {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 0 5vw !important;
        }
        .provocation-section-new.section {
            padding: 0 5vw !important;
        }
        .provocation-section-new .section-inner {
            position: relative;
            z-index: 1;
            width: 100%;
        }
        .sub-label {
            font-family: 'JetBrains Mono', 'Space Mono', monospace;
            font-size: clamp(0.75rem, 1vw, 0.9rem);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 2rem;
            display: block;
            opacity: 0.6;
            color: #000;
        }
        .manifesto-text {
            font-family: 'Syne', 'Oswald', sans-serif;
            font-size: clamp(2.5rem, 6vw, 6rem);
            font-weight: 800;
            line-height: 0.95;
            letter-spacing: -0.03em;
            text-transform: uppercase;
            margin-bottom: 1rem;
            color: #000;
        }
        .manifesto-text.reveal {
            overflow: hidden;
            display: block;
        }
        .manifesto-text span {
            display: block;
            transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
        }
        /* Show text by default - will animate if JS adds visible class */
        .manifesto-text.reveal span {
            transform: translateY(0);
        }
        /* Optional: For scroll animation, uncomment below and comment above */
        /* .manifesto-text.reveal:not(.visible) span {
            transform: translateY(115%);
        }
        .manifesto-text.reveal.visible span {
            transform: translateY(0);
        } */
        .manifesto-text em {
            font-style: italic;
            color: #000;
            background: #FFFF00;
            padding: 0 0.15em;
            display: inline-block;
        }
        .section-body {
            font-size: clamp(0.95rem, 1.2vw, 1.05rem);
            max-width: 55ch;
            margin-top: 2rem;
            line-height: 1.5;
            font-weight: 400;
            color: #000;
            opacity: 0.85;
        }

        /* ══════════════════════════════════════════
           LOGIC SECTION
           ══════════════════════════════════════════ */
        .logic-section {
            background: #000;
            color: #fff;
            padding: 0 5vw;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-height: 100vh;
        }
        .logic-label {
            font-family: 'Space Mono', monospace;
            font-size: 0.9rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: #fff;
            margin-bottom: 40px;
            display: block;
        }
        .logic-content {
            max-width: 70%;
            font-family: 'Inter', sans-serif;
            font-size: 4vw;
            line-height: 1.4;
            color: #fff;
            font-weight: 400;
        }
        .logic-content.reveal {
            overflow: hidden;
        }
        .logic-content.reveal span {
            display: block;
            transform: translateY(115%);
            transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .logic-content.reveal.visible span {
            transform: translateY(0);
        }

        /* ══════════════════════════════════════════
           MARQUEE SECTION
           ══════════════════════════════════════════ */
        .marquee-section {
            background: #FFFF00;
            color: #000;
            padding: 0;
            position: relative;
            overflow: hidden;
            border-top: 2px solid #000;
            border-bottom: 2px solid #000;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 20vh;
        }
        .marquee-container {
            width: 100%;
            padding: 40px 0;
        }
        .marquee {
            white-space: nowrap;
            display: flex;
            font-size: clamp(3rem, 10vw, 10rem);
            font-family: 'Oswald', sans-serif;
            font-weight: 800;
            text-transform: uppercase;
            color: #000;
        }
        .marquee span {
            animation: marquee-scroll 15s linear infinite;
            display: inline-block;
            padding-right: 80px;
            flex-shrink: 0;
        }
        @keyframes marquee-scroll {
            from { transform: translateX(0); }
            to { transform: translateX(-100%); }
        }

        /* ══════════════════════════════════════════
           WHY AEO — SPLIT LAYOUT
           ══════════════════════════════════════════ */
        .why-aeo {
            background: #1a1a1a;
            padding: 140px 0;
            position: relative;
            overflow: hidden;
            background-size: 60px 60px;
            background-image: linear-gradient(to right, #222 1px, transparent 1px),
                              linear-gradient(to bottom, #222 1px, transparent 1px);
        }
        .why-aeo-grid-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            background-image: 
                linear-gradient(to right, rgba(255, 255, 0, 0.08) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(255, 255, 0, 0.08) 1px, transparent 1px);
            background-size: 120px 120px;
            mask-image: radial-gradient(ellipse 80% 60% at 30% 50%, black 0%, transparent 70%);
            -webkit-mask-image: radial-gradient(ellipse 80% 60% at 30% 50%, black 0%, transparent 70%);
        }
        .why-aeo-content {
            position: relative;
            z-index: 1;
        }
        .why-aeo-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        .why-aeo-left h2 {
            font-size: clamp(5rem, 12vw, 12rem);
            line-height: 0.85;
            margin-bottom: 0;
        }
        .why-aeo-left h2 mark {
            background: #FFFF00;
            color: #000;
            padding: 0.1em 0.3em;
            display: inline-block;
        }
        .why-aeo-left .rule {
            width: 60px;
            height: 1px;
            background: #333;
            margin: 24px 0;
        }
        .why-aeo-right {
            padding-top: 0;
        }
        .why-aeo-right .lead {
            margin-bottom: 24px;
            font-size: 1.1rem;
        }
        .why-aeo-right .body-text {
            margin-top: 20px;
            font-size: 0.95rem;
        }
        .why-aeo-right mark {
            background: #FFFF00;
            color: #000;
            padding: 0.1em 0.3em;
            font-weight: 600;
        }

        /* ══════════════════════════════════════════
           RIBBON — YELLOW ACCENT
           ══════════════════════════════════════════ */
        .ribbon {
            border-top: 1px solid #222;
            border-bottom: 1px solid #222;
            padding: 20px 0;
            overflow: hidden;
            background: #0a0a0a;
            position: relative;
            z-index: 0;
        }
        .ribbon-track {
            display: flex;
            gap: 80px;
            animation: ribbon-scroll 30s linear infinite;
            white-space: nowrap;
        }
        .ribbon-item {
            font-family: 'Oswald', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: #444;
            flex-shrink: 0;
            transition: color 0.3s ease;
        }
        .ribbon-item:hover {
            color: #FFFF00;
        }
        .ribbon-item .dot {
            display: inline-block;
            width: 5px;
            height: 5px;
            background: #FFFF00;
            border-radius: 50%;
            margin: 0 32px;
            vertical-align: middle;
            opacity: 0.6;
        }
        @keyframes ribbon-scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* ══════════════════════════════════════════
           SERVICE CARDS — STYLE 2: YELLOW ACCENT
           ══════════════════════════════════════════ */
        .service-card {
            padding: 56px 40px;
            border: 1px solid #151515;
            background: #080808;
            position: relative;
            transition: all 0.5s ease;
            overflow: hidden;
        }
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: #FFFF00;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }
        .service-card:hover {
            background: #0f0f0f;
            border-color: #222;
        }
        .service-card:hover::before {
            transform: scaleX(1);
        }
        .service-card .number {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 5.5rem;
            color: #FFFF00;
            line-height: 1;
            margin-bottom: 24px;
            transition: all 0.4s ease;
            opacity: 0.9;
        }
        .service-card:hover .number {
            color: #FFFF00;
            opacity: 1;
            transform: scale(1.05);
        }
        .service-card h3 {
            font-family: 'Oswald', sans-serif;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.02em;
            font-size: 1.2rem;
            color: #fff;
            margin-bottom: 16px;
        }
        .service-card p {
            font-size: 0.9rem;
            color: #fff;
            line-height: 1.65;
            font-weight: 300;
        }
        .service-card p strong {
            color: #fff;
            font-weight: 600;
        }

        /* ══════════════════════════════════════════
           INDUSTRIES WE SERVE
           ══════════════════════════════════════════ */
        .industries {
            background: #fff;
            color: #000;
            padding: 140px 0;
            position: relative;
            overflow: hidden;
            background-size: 50px 50px;
            background-image: linear-gradient(to right, #e8e8e8 1px, transparent 1px),
                              linear-gradient(to bottom, #e8e8e8 1px, transparent 1px);
        }
        .industries-grid-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            background-image: 
                linear-gradient(to right, rgba(255, 255, 0, 0.12) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(255, 255, 0, 0.12) 1px, transparent 1px);
            background-size: 100px 100px;
            mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 0%, transparent 75%);
            -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 0%, transparent 75%);
        }
        .industries .container {
            position: relative;
            z-index: 1;
        }
        .industries-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2px;
        }
        .industry-item {
            padding: 48px 32px;
            border: 1px solid #e0e0e0;
            background: #f8f8f8;
            text-align: center;
            position: relative;
            transition: all 0.4s ease;
            overflow: hidden;
        }
        .industry-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: #FFFF00;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        .industry-item:hover {
            background: #fff;
            border-color: #ccc;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }
        .industry-item:hover::before {
            transform: scaleX(1);
        }
        .industry-item h3 {
            font-family: 'Oswald', sans-serif;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-size: 1rem;
            color: #000;
            margin-bottom: 8px;
        }
        .industry-item p {
            font-family: 'Space Mono', monospace;
            font-size: 0.65rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }
        /* ══════════════════════════════════════════
           INDUSTRIES HEADING - Underline Accent Style
           ══════════════════════════════════════════ */
        .industries .section-header h2 {
            font-size: clamp(4rem, 10vw, 9rem);
            line-height: 0.85;
            letter-spacing: 0.15em;
            font-weight: 700;
            text-transform: uppercase;
            color: #000;
            margin-bottom: 0;
        }
        .industries .section-header h2 mark {
            background: transparent;
            color: #000;
            padding: 0;
            display: inline-block;
            position: relative;
            font-weight: 700;
        }
        .industries .section-header h2 mark::after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 0;
            width: 100%;
            height: 12px;
            background: #FFFF00;
            z-index: -1;
            opacity: 0.6;
        }
        .industries .eyebrow {
            color: #999;
        }
        .industries .rule {
            background: #ccc;
        }
        .industries .lead {
            color: #777;
        }
        .industries .lead strong {
            color: #000;
        }

        /* ══════════════════════════════════════════
           STATS GRID — STYLE 2: CARDS WITH YELLOW ACCENT
           ══════════════════════════════════════════ */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
        }
        .stat-card {
            text-align: center;
            padding: 30px 32px;
            background: transparent;
            border: none;
            border-right: 1px solid #e0e0e0;
            position: relative;
            overflow: visible;
            transition: all 0.4s ease;
        }
        .stat-card:last-child {
            border-right: none;
        }
        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: #FFFF00;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        .stat-card:hover::before {
            transform: scaleX(1);
        }
        .stat-card h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(6rem, 12vw, 10rem);
            color: #000;
            line-height: 1;
            margin-bottom: 16px;
        }
        .stat-card p {
            font-family: 'Space Mono', monospace;
            font-size: 0.7rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.15em;
        }

        /* ══════════════════════════════════════════
           PROCESS STEPS
           ══════════════════════════════════════════ */
        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .process-card {
            padding: 50px 32px;
            background: #111;
            border: 1px solid #222;
            border-top: 3px solid transparent;
            position: relative;
            transition: all 0.5s ease;
        }
        .process-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: #FFFF00;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }
        .process-card:hover {
            background: #151515;
            border-color: #333;
            transform: translateY(-4px);
        }
        .process-card:hover::before {
            transform: scaleX(1);
        }
        .process-card .step-number {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 4rem;
            color: #333;
            line-height: 1;
            margin-bottom: 20px;
            transition: color 0.4s ease;
        }
        .process-card:hover .step-number {
            color: #FFFF00;
        }
        .process-card .step-label {
            font-family: 'Space Mono', monospace;
            font-size: 0.6rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            margin-bottom: 12px;
        }
        .process-card h3 {
            font-size: 1.2rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: #fff;
            margin-bottom: 16px;
        }
        .process-card p {
            font-size: 0.85rem;
            color: #888;
            line-height: 1.7;
            font-weight: 300;
        }
        .process-card .big-num {
            display: none;
        }

        /* ══════════════════════════════════════════
           TESTIMONIAL
           ══════════════════════════════════════════ */
        #testimonials {
            position: relative;
            overflow: hidden;
            background-size: 60px 60px;
            background-image: linear-gradient(to right, #111 1px, transparent 1px),
                              linear-gradient(to bottom, #111 1px, transparent 1px);
        }
        .testimonial-grid-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            background-image: 
                linear-gradient(to right, rgba(255, 255, 0, 0.2) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(255, 255, 0, 0.2) 1px, transparent 1px);
            background-size: 80px 80px;
            mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 0%, transparent 80%);
            -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 0%, transparent 80%);
        }
        #testimonials .container {
            position: relative;
            z-index: 1;
        }
        .testimonial {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        .testimonial-left {
            position: relative;
        }
        .testimonial-left .quote-mark {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 12rem;
            color: #FFFF00;
            line-height: 1;
            opacity: 0.2;
            position: absolute;
            top: -40px;
            left: -20px;
            z-index: 0;
        }
        .testimonial-left blockquote {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(2.2rem, 4.5vw, 3.8rem);
            line-height: 1.3;
            font-weight: 400;
            color: #fff;
            position: relative;
            z-index: 1;
            text-transform: none;
            margin-bottom: 0;
        }
        .testimonial-left blockquote mark {
            background: #FFFF00;
            color: #000;
            padding: 0.1em 0.3em;
            font-weight: 600;
        }
        .testimonial-right {
            padding-left: 40px;
            border-left: 2px solid #222;
        }
        .testimonial-right .author {
            margin-bottom: 32px;
        }
        .testimonial-right .author-name {
            font-size: 1.5rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 8px;
        }
        .testimonial-right .author-title {
            font-family: 'Space Mono', monospace;
            font-size: 0.75rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 24px;
        }
        .testimonial-right .author-company {
            font-size: 0.9rem;
            color: #888;
        }
        .testimonial-right .stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-top: 40px;
        }
        .testimonial-right .stat-item {
            padding: 20px;
            background: #111;
            border: 1px solid #222;
        }
        .testimonial-right .stat-number {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.5rem;
            color: #FFFF00;
            line-height: 1;
            margin-bottom: 8px;
        }
        .testimonial-right .stat-label {
            font-family: 'Space Mono', monospace;
            font-size: 0.65rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.15em;
        }

        /* ══════════════════════════════════════════
           PACKAGES — TIERED WITH HIGHLIGHT
           ══════════════════════════════════════════ */
        .packages-section {
            background: #000;
            padding: 140px 0;
        }
        .packages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            align-items: stretch;
        }
        .package-card {
            padding: 50px 36px;
            background: #0a0a0a;
            border: 1px solid #222;
            position: relative;
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .package-card.featured {
            background: #111;
            border: 2px solid #FFFF00;
            transform: scale(1.05);
        }
        .package-card.featured::before {
            content: 'POPULAR';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: #FFFF00;
            color: #000;
            padding: 4px 20px;
            font-family: 'Space Mono', monospace;
            font-size: 0.6rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            font-weight: 700;
        }
        .package-card:hover {
            background: #151515;
            border-color: #333;
        }
        .package-card.featured:hover {
            border-color: #FFFF00;
        }
        .package-card .package-name {
            font-family: 'Space Mono', monospace;
            font-size: 0.65rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            margin-bottom: 12px;
        }
        .package-card .package-title {
            font-size: 1.6rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: #fff;
            margin-bottom: 20px;
        }
        .package-card .package-price {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 4rem;
            color: #fff;
            line-height: 1;
            margin-bottom: 4px;
        }
        .package-card.featured .package-price {
            color: #FFFF00;
        }
        .package-card .package-period {
            font-family: 'Space Mono', monospace;
            font-size: 0.65rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 32px;
        }
        .package-card .package-features {
            list-style: none;
            margin-bottom: 40px;
            flex-grow: 1;
        }
        .package-card .package-features li {
            padding: 10px 0;
            font-size: 0.85rem;
            color: #888;
            line-height: 1.6;
        }
        .package-card .package-btn {
            width: 100%;
            padding: 16px;
            background: #222;
            color: #fff;
            border: none;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            text-decoration: none;
            text-align: center;
            display: block;
            transition: all 0.3s ease;
        }
        .package-card.featured .package-btn {
            background: #FFFF00;
            color: #000;
        }
        .package-card .package-btn:hover {
            background: #333;
        }
        .package-card.featured .package-btn:hover {
            background: #fff;
        }

        /* ══════════════════════════════════════════
           FAQ SECTION
           ══════════════════════════════════════════ */
        .faq-section {
            background: #000;
            padding: 140px 0;
        }
        .faq-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 64px;
            align-items: start;
        }
        .faq-title {
            position: sticky;
            top: 120px;
        }
        /* ══════════════════════════════════════════
           FAQ HEADING - Yellow Text with Shadow
           ══════════════════════════════════════════ */
        .faq-title h2 {
            font-family: 'Antonio', sans-serif;
            font-size: clamp(4rem, 8vw, 8rem);
            line-height: 0.9;
            color: #FFFF00;
            text-transform: uppercase;
            margin-bottom: 0;
            text-shadow: 0 0 20px rgba(255, 255, 0, 0.3);
            letter-spacing: -0.02em;
        }
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .faq-item {
            border-bottom: 1px solid #333;
            padding-bottom: 32px;
        }
        .faq-item summary {
            font-family: 'Antonio', sans-serif;
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            color: #fff;
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-transform: uppercase;
            transition: color 0.3s ease;
            padding: 16px 0;
        }
        .faq-item summary:hover {
            color: #FFFF00;
        }
        .faq-item summary::-webkit-details-marker {
            display: none;
        }
        .faq-item summary::marker {
            display: none;
        }
        .faq-item summary span {
            font-size: 2.5rem;
            color: #fff;
            transition: transform 0.3s ease;
            flex-shrink: 0;
            margin-left: 20px;
        }
        .faq-item[open] summary span {
            transform: rotate(45deg);
        }
        .faq-item[open] summary {
            color: #FFFF00;
        }
        .faq-answer {
            margin-top: 24px;
            font-size: 1.25rem;
            color: #888;
            text-transform: uppercase;
            font-weight: 900;
            line-height: 1.6;
        }
        .faq-answer p {
            margin-bottom: 16px;
        }
        .faq-answer p:last-child {
            margin-bottom: 0;
        }

        /* ══════════════════════════════════════════
           AUDIT FORM / CTA
           ══════════════════════════════════════════ */
        .audit-section {
            background: #fff;
            color: #000;
            padding: 140px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            background-size: 60px 60px;
            background-image: linear-gradient(to right, #ddd 1px, transparent 1px),
                              linear-gradient(to bottom, #ddd 1px, transparent 1px);
        }
        .audit-grid-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            background-image: 
                linear-gradient(to right, rgba(255, 255, 0, 0.2) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(255, 255, 0, 0.2) 1px, transparent 1px);
            background-size: 80px 80px;
            mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 0%, transparent 80%);
            -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 0%, transparent 80%);
        }
        .audit-section .container {
            position: relative;
            z-index: 1;
        }
        .audit-container {
            border: 15px solid #000;
            padding: 40px 80px;
            background: #000;
            color: #fff;
            position: relative;
            overflow: hidden;
            max-width: 1400px;
            margin: 0 auto;
        }
        .audit-container h2 {
            font-family: 'Antonio', sans-serif;
            font-size: clamp(3rem, 8vw, 9rem);
            line-height: 0.9;
            letter-spacing: -0.02em;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 32px;
            color: #fff;
        }
        .audit-container .outline-text {
            -webkit-text-stroke: 1.5px #fff;
            color: transparent;
        }
        .audit-container p {
            font-size: clamp(0.9rem, 1.2vw, 1.25rem);
            max-width: 600px;
            margin: 0 auto 48px;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 0.1em;
            color: #fff;
        }
        .audit-form {
            display: flex;
            flex-direction: column;
            gap: 16px;
            justify-content: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        .audit-form input {
            background: #181818;
            border: 2px solid #fff;
            padding: 20px;
            font-family: 'Antonio', sans-serif;
            font-size: clamp(1.2rem, 2vw, 2rem);
            color: #fff;
            text-transform: uppercase;
            outline: none;
            transition: all 0.3s ease;
            width: 100%;
        }
        .audit-form input::placeholder {
            color: #666;
        }
        .audit-form input:focus {
            border-color: #FFFF00;
            background: #1a1a1a;
        }
        .audit-form button {
            background: #FFFF00;
            color: #000;
            font-family: 'Antonio', sans-serif;
            padding: 20px 40px;
            font-size: clamp(1.2rem, 2vw, 1.75rem);
            display: inline-block;
            transition: all 0.4s ease;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            font-weight: 700;
            letter-spacing: 0.05em;
        }
        .audit-form button:hover {
            background: #fff;
            letter-spacing: 0.1em;
            transform: translateY(-5px);
        }
        @media (min-width: 1024px) {
            .audit-form {
                flex-direction: row;
            }
            .audit-form input {
                width: 33.333%;
            }
        }

        /* ══════════════════════════════════════════
           FAQ SECTION
           ══════════════════════════════════════════ */
        .faq-section {
            background: #000;
            padding: 140px 0;
        }
        .faq-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 64px;
            align-items: start;
        }
        .faq-title {
            position: sticky;
            top: 120px;
        }
        /* ══════════════════════════════════════════
           FAQ HEADING - Yellow Text with Shadow
           ══════════════════════════════════════════ */
        .faq-title h2 {
            font-family: 'Antonio', sans-serif;
            font-size: clamp(4rem, 8vw, 8rem);
            line-height: 0.9;
            color: #FFFF00;
            text-transform: uppercase;
            margin-bottom: 0;
            text-shadow: 0 0 20px rgba(255, 255, 0, 0.3);
            letter-spacing: -0.02em;
        }
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .faq-item {
            border-bottom: 1px solid #333;
            padding-bottom: 32px;
        }
        .faq-item summary {
            font-family: 'Antonio', sans-serif;
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            color: #fff;
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-transform: uppercase;
            transition: color 0.3s ease;
            padding: 16px 0;
        }
        .faq-item summary:hover {
            color: #FFFF00;
        }
        .faq-item summary::-webkit-details-marker {
            display: none;
        }
        .faq-item summary::marker {
            display: none;
        }
        .faq-item summary span {
            font-size: 2.5rem;
            color: #fff;
            transition: transform 0.3s ease;
            flex-shrink: 0;
            margin-left: 20px;
        }
        .faq-item[open] summary span {
            transform: rotate(45deg);
        }
        .faq-item[open] summary {
            color: #FFFF00;
        }
        .faq-answer {
            margin-top: 24px;
            font-size: 1.25rem;
            color: #888;
            text-transform: uppercase;
            font-weight: 900;
            line-height: 1.6;
        }
        .faq-answer p {
            margin-bottom: 16px;
        }
        .faq-answer p:last-child {
            margin-bottom: 0;
        }

        /* ══════════════════════════════════════════
           FOOTER
           ══════════════════════════════════════════ */
        /* ══════════════════════════════════════════
           FOOTER MENU
           ══════════════════════════════════════════ */
        .footer-menu {
            background-color: #1a1a1a;
            padding: 60px 0;
            border-top: 1px solid #333;
            position: relative;
            overflow: hidden;
            background-size: 60px 60px;
            background-image: linear-gradient(to right, #222 1px, transparent 1px),
                              linear-gradient(to bottom, #222 1px, transparent 1px);
        }
        .footer-menu-grid-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            background-image: 
                linear-gradient(to right, rgba(255, 255, 0, 0.08) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(255, 255, 0, 0.08) 1px, transparent 1px);
            background-size: 120px 120px;
            mask-image: radial-gradient(ellipse 80% 60% at 30% 50%, black 0%, transparent 70%);
            -webkit-mask-image: radial-gradient(ellipse 80% 60% at 30% 50%, black 0%, transparent 70%);
        }
        .footer-menu-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 48px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 48px;
            position: relative;
            z-index: 1;
        }
        .footer-menu-column h3 {
            font-family: 'Space Mono', monospace;
            font-size: 0.7rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: #666;
            margin-bottom: 20px;
            font-weight: 700;
        }
        .footer-menu-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-menu-column ul li {
            margin-bottom: 12px;
        }
        .footer-menu-column ul li a {
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            color: #fff;
            text-decoration: none;
            transition: color 0.3s ease;
            display: inline-block;
        }
        .footer-menu-column ul li a:hover {
            color: #FFFF00;
        }
        @media (max-width: 768px) {
            .footer-menu-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 32px;
                padding: 0 24px;
            }
        }
        @media (max-width: 480px) {
            .footer-menu-content {
                grid-template-columns: 1fr;
            }
        }

        /* ══════════════════════════════════════════
           FOOTER
           ══════════════════════════════════════════ */
        .footer {
            background: #fff;
            color: #000;
            padding: 40px 48px;
            border-top: 20px solid #000;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: flex-end;
            gap: 40px;
        }
        @media (min-width: 768px) {
            .footer-content {
                flex-direction: row;
            }
        }
        .footer-left {
            font-family: 'Antonio', sans-serif;
            font-size: clamp(3rem, 8vw, 6rem);
            line-height: 1;
            text-transform: uppercase;
            color: #000;
        }
        .footer-right {
            text-align: right;
            font-family: 'Antonio', sans-serif;
        }
        .footer-right p {
            font-size: clamp(1.25rem, 3vw, 1.875rem);
            text-transform: uppercase;
            color: #000;
            margin-bottom: 8px;
        }
        .footer-right a {
            font-size: clamp(1.25rem, 3vw, 1.875rem);
            text-transform: uppercase;
            color: #666;
            transition: color 0.3s ease;
        }
        .footer-right a:hover {
            color: #000;
        }
        .footer-right .copyright {
            margin-top: 16px;
            font-family: 'Inter', sans-serif;
            font-size: 0.875rem;
            font-weight: 700;
            text-transform: uppercase;
            color: #000;
        }

        /* ══════════════════════════════════════════
           SCROLL REVEAL
           ══════════════════════════════════════════ */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .stagger > * { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
        .stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
        .stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
        .stagger.visible > *:nth-child(3) { transition-delay: 0.15s; }
        .stagger.visible > *:nth-child(4) { transition-delay: 0.2s; }
        .stagger.visible > *:nth-child(5) { transition-delay: 0.25s; }
        .stagger.visible > *:nth-child(6) { transition-delay: 0.3s; }
        .stagger.visible > * { opacity: 1; transform: translateY(0); }

        /* ══════════════════════════════════════════
           RESPONSIVE
           ══════════════════════════════════════════ */
        @media (max-width: 1024px) {
            .grid-2, .footer-grid { grid-template-columns: 1fr; gap: 48px; }
            .grid-3 { grid-template-columns: 1fr 1fr; gap: 2px; }
            .industries-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
            .testimonial {
                grid-template-columns: 1fr;
                gap: 60px;
            }
            .testimonial-right {
                padding-left: 0;
                border-left: none;
                border-top: 2px solid #222;
                padding-top: 40px;
            }
            .industry-item { border-bottom: 1px solid #151515; }
            .why-aeo-content { grid-template-columns: 1fr; gap: 48px; }
            .process-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
            .stats-grid { grid-template-columns: 1fr 1fr; gap: 0; }
            .stat-card { 
                border-right: none;
                border-bottom: 1px solid #e0e0e0;
                padding: 20px 24px;
            }
            .stats-section { padding: 15px 0 !important; }
            .stat-card:nth-child(2n) {
                border-right: 1px solid #e0e0e0;
            }
            .stat-card:nth-child(3),
            .stat-card:nth-child(4) {
                border-bottom: none;
            }
            .hero {
                padding: 50px 0 20px;
            }
            .hero .container { padding: 0 32px; }
            .hero h1 {
                font-size: clamp(2.5rem, 8vw, 6rem);
                letter-spacing: 0.12em;
                transform: scaleX(1.05);
                margin-bottom: 20px;
            }
            .hero-sub {
                font-size: 0.65rem;
                margin-bottom: 28px;
            }
            .hero .eyebrow {
                margin-bottom: 16px;
            }
        }
        @media (max-width: 768px) {
            html, body {
                overflow-x: hidden;
                width: 100%;
                max-width: 100vw;
            }
            .container { 
                padding: 0 20px;
                max-width: 100%;
                width: 100%;
            }
            .hero {
                padding: 50px 0 20px;
                overflow-x: hidden;
            }
            .hero .container { 
                padding: 0 20px;
                max-width: 100%;
                width: 100%;
            }
            .section { 
                padding: 100px 0;
                overflow-x: hidden;
            }
            .why-aeo { padding: 80px 0; }
            .why-aeo-content { grid-template-columns: 1fr; gap: 40px; }
            .why-aeo-left h2 { font-size: clamp(3.5rem, 10vw, 8rem); }
            .grid-3, .grid-4 { grid-template-columns: 1fr; }
            .industries-grid { grid-template-columns: 1fr; }
            .industry-item { border-bottom: 1px solid #e0e0e0; }
            .industry-item:last-child { border-bottom: none; }
            .process-grid { grid-template-columns: 1fr; }
            .stats-grid { grid-template-columns: 1fr; gap: 0; }
            .testimonial-right .stats {
                grid-template-columns: 1fr;
            }
            .packages-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .package-card.featured {
                transform: scale(1);
            }
            .faq-content {
                grid-template-columns: 1fr;
                gap: 48px;
            }
            .faq-title {
                position: static;
            }
            .stat-card { 
                border-right: none; 
                border-bottom: 1px solid #e0e0e0;
                padding: 20px 20px;
            }
            .stats-section { padding: 15px 0 !important; }
            .stat-card:last-child { border-bottom: none; }
            .stat-card h3 { font-size: clamp(3rem, 8vw, 6rem); }
            .stat-card:nth-child(2n) {
                border-right: none;
            }
            .nav-links { display: none; }
            .hero {
                padding: 40px 0 30px;
                min-height: auto;
            }
            .hero-content {
                padding-bottom: 20px;
            }
            .hero-buttons { 
                flex-direction: column; 
                gap: 16px;
                margin-top: 0;
            }
            .audit-container {
                padding: 30px 20px;
                max-width: 100%;
            }
            .audit-form {
                max-width: 100%;
            }
            .audit-form button {
                width: 100%;
            }
            .hero h1 { 
                font-size: clamp(2rem, 7vw, 5rem);
                letter-spacing: 0.05em;
                transform: none;
                margin-bottom: 12px;
                line-height: 0.9;
                word-wrap: break-word;
                overflow-wrap: break-word;
            }
            .hero-sub {
                font-size: 0.6rem;
                margin-bottom: 20px;
                line-height: 1.6;
                transform: none;
                word-wrap: break-word;
                overflow-wrap: break-word;
            }
            .hero {
                padding: 30px 0 30px;
            }
            .hero-content {
                padding-bottom: 10px;
            }
            .hero-buttons {
                margin-top: 20px;
            }
            .hero .eyebrow {
                font-size: 0.6rem;
                margin-bottom: 10px;
            }
            .ribbon-item {
                font-size: 0.7rem;
            }
            .service-card {
                padding: 40px 20px;
            }
            .process-card {
                padding: 40px 20px;
            }
            .package-card {
                padding: 40px 20px;
            }
            .footer-menu-content {
                padding: 0 20px;
            }
            .footer {
                padding: 40px 20px;
            }
            * {
                max-width: 100%;
            }
            img, video, iframe {
                max-width: 100%;
                height: auto;
            }
            .provocation-section-new {
                padding: 80px 4vw;
                min-height: auto;
            }
            .manifesto-text {
                font-size: clamp(2rem, 8vw, 4.5rem);
                margin-bottom: 0.75rem;
            }
            .section-body {
                font-size: clamp(0.85rem, 3vw, 1rem);
                max-width: 100%;
                margin-top: 1.5rem;
            }
            .sub-label {
                font-size: clamp(0.65rem, 2.5vw, 0.8rem);
                margin-bottom: 1.5rem;
            }
            .section.light-section,
            .section.dark-section {
                min-height: 100vh;
                min-height: 100dvh;
                padding: 0 4vw;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }
            .logic-section {
                padding: 0 4vw;
                min-height: 100vh;
                min-height: 100dvh;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }
            .logic-content {
                max-width: 100%;
                font-size: clamp(1.5rem, 6vw, 3rem);
            }
            .marquee-section {
                min-height: 15vh;
            }
            .marquee {
                font-size: clamp(2rem, 8vw, 6rem);
            }
        }

        /* ══════════════════════════════════════════
           SERVICE PAGE SPECIFIC STYLES
           ══════════════════════════════════════════ */
        .page-hero {
            background: #000;
            background-size: 40px 40px;
            background-image: linear-gradient(to right, #111 1px, transparent 1px),
                              linear-gradient(to bottom, #111 1px, transparent 1px);
            padding: 180px 0 140px;
            position: relative;
            overflow: hidden;
        }
        .page-hero .container {
            position: relative;
            z-index: 1;
        }
        .page-hero h1 {
            margin-bottom: 32px;
            font-size: clamp(3.5rem, 10vw, 8rem);
            line-height: 0.85;
            letter-spacing: 0.15em;
            font-weight: 700;
            text-transform: uppercase;
        }
        .page-hero h1 mark {
            display: inline-block;
            padding: 0.06em 0.25em;
            margin: 0 0.1em;
            letter-spacing: 0.15em;
            transform: scaleX(1.03);
            background: #FFFF00;
            color: #000;
        }
        .page-hero .lead {
            max-width: 700px;
            margin-bottom: 48px;
            font-size: 1.15rem;
            color: #888;
        }
        .page-hero-buttons {
            display: flex;
            gap: 20px;
            margin-bottom: 60px;
        }
        .page-hero-meta {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-top: 60px;
        }
        .meta-item h4 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 3rem;
            color: #FFFF00;
            line-height: 1;
            margin-bottom: 8px;
        }
        .meta-item p {
            font-family: 'Space Mono', monospace;
            font-size: 0.65rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.15em;
        }
        .process-timeline {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .process-step {
            padding: 40px 32px;
            background: #111;
            border: 1px solid #222;
            position: relative;
            transition: all 0.4s ease;
        }
        .process-step:hover {
            background: #151515;
            border-color: #333;
            transform: translateY(-4px);
        }
        .process-step .step-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #FFFF00;
        }
        .process-step .step-icon i {
            color: #FFFF00;
        }
        .process-step h3 {
            font-size: 1.1rem;
            margin-bottom: 12px;
        }
        .process-step p {
            font-size: 0.85rem;
            color: #888;
            line-height: 1.7;
        }
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2px;
        }
        .benefit-card {
            padding: 48px 32px;
            background: #111;
            border: 1px solid #222;
            text-align: center;
        }
        .benefit-card .icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #FFFF00;
        }
        .benefit-card .icon i {
            color: #FFFF00;
        }
        .benefit-card h3 {
            font-size: 1.1rem;
            margin-bottom: 12px;
        }
        .benefit-card p {
            font-size: 0.85rem;
            color: #888;
            line-height: 1.7;
        }
        .cta-section {
            background: #FFFF00;
            color: #000;
            padding: 100px 0;
            text-align: center;
        }
        .cta-section h2 {
            color: #000;
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            margin-bottom: 24px;
        }
        .cta-section p {
            font-size: 1.1rem;
            color: #000;
            max-width: 600px;
            margin: 0 auto 40px;
        }
        .cta-section .btn {
            background: #000;
            color: #fff;
            border-color: #000;
        }
        .cta-section .btn:hover {
            background: #fff;
            color: #000;
            border-color: #fff;
        }
        
        /* ══════════════════════════════════════════
           SERVICES PAGE FAQ STYLES
           ══════════════════════════════════════════ */
        #faq .faq-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }
        /* Consistent FAQ styling across all pages */
        #faq .faq-item,
        .faq-item {
            border-bottom: 1px solid #333;
            padding: 32px 0;
        }
        #faq .faq-item summary,
        .faq-item summary {
            font-family: 'Antonio', sans-serif;
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            color: #fff;
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-transform: uppercase;
            transition: color 0.3s ease;
        }
        #faq .faq-item summary:hover,
        .faq-item summary:hover {
            color: #FFFF00;
        }
        #faq .faq-item summary::-webkit-details-marker,
        .faq-item summary::-webkit-details-marker {
            display: none;
        }
        #faq .faq-item summary::marker,
        .faq-item summary::marker {
            display: none;
        }
        /* Plus icon using span (removed ::after to avoid duplicate) */
        #faq .faq-item summary span,
        .faq-item summary span {
            font-size: 2.5rem;
            color: #fff;
            transition: transform 0.3s ease;
            flex-shrink: 0;
            margin-left: 20px;
        }
        #faq .faq-item[open] summary span,
        .faq-item[open] summary span {
            transform: rotate(45deg);
        }
        #faq .faq-item[open] summary,
        .faq-item[open] summary {
            color: #FFFF00;
        }
        #faq .faq-answer,
        .faq-answer {
            margin-top: 24px;
            font-size: 1.1rem;
            color: #888;
            text-transform: none;
            font-weight: 400;
            line-height: 1.8;
        }
        #faq .faq-answer p,
        .faq-answer p {
            margin-bottom: 16px;
            font-size: 1.1rem;
            color: #888;
            line-height: 1.8;
            text-transform: none;
            font-weight: 400;
        }
        #faq .faq-answer p:last-child,
        .faq-answer p:last-child {
            margin-bottom: 0;
        }
        
        @media (max-width: 1024px) {
            .page-hero-meta {
                grid-template-columns: repeat(2, 1fr);
            }
            .process-timeline {
                grid-template-columns: repeat(2, 1fr);
            }
            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .page-hero {
                padding: 120px 0 80px;
            }
            .page-hero-meta {
                grid-template-columns: 1fr;
            }
            .process-timeline,
            .benefits-grid {
                grid-template-columns: 1fr;
            }
            .page-hero-buttons {
                flex-direction: column;
            }
        }
