
        /* ============================================================
           THEME TOKENS
           WCAG AA verified:
           Dark:  #e8ecf1 on #0a0e14 = 16.1:1 | #8899aa on #0a0e14 = 5.7:1
                  #ff6b2b on #0a0e14 = 6.2:1 | #0a0e14 on #ff6b2b = 6.2:1
           Light: #1a1f26 on #f8f7f4 = 15.2:1 | #4a5568 on #f8f7f4 = 7.1:1
                  #c44a15 on #f8f7f4 = 5.4:1 | #fff on #c44a15 = 4.6:1
           ============================================================ */

        /* DARK (default) */
        [data-theme="dark"] {
            --bg:         #0a0e14;
            --bg-alt:     #111820;
            --bg-card:    #161d27;
            --bg-card-h:  #1c2533;
            --bg-cta:     #161d27;
            --accent:     #ff6b2b;
            --accent-h:   #e85a1c;
            --accent-bg:  rgba(255,107,43,0.1);
            --accent-bd:  rgba(255,107,43,0.2);
            --t1:         #e8ecf1;
            --t2:         #8899aa;
            --t3:         #7b8c9c;
            --bd:         #1e2a38;
            --bd-l:       #243040;
            --ok:         #34d399;
            --shadow-card: 0 4px 24px rgba(0,0,0,0.3);
            --shadow-sm:  0 1px 4px rgba(0,0,0,0.2);
            --nav-bg:     rgba(10,14,20,0.88);
            --grid-line:  rgba(255,107,43,0.03);
            --step-num:   #1e2a38;
            --cta-bg:     linear-gradient(135deg, #161d27 0%, #111820 100%);
            --cta-t1:     #e8ecf1;
            --cta-t2:     #8899aa;
            --cta-t3:     #7b8c9c;
        }

        /* LIGHT */
        [data-theme="light"] {
            --bg:         #f8f7f4;
            --bg-alt:     #f0eee9;
            --bg-card:    #ffffff;
            --bg-card-h:  #fafaf8;
            --bg-cta:     #1a1f26;
            --accent:     #c44a15;
            --accent-h:   #a83d10;
            --accent-bg:  #fef3ee;
            --accent-bd:  #fcdbc8;
            --t1:         #1a1f26;
            --t2:         #4a5568;
            --t3:         #5c6b7d;
            --bd:         #e2dfd8;
            --bd-l:       #ece9e2;
            --ok:         #2d8659;
            --shadow-card: 0 8px 32px rgba(0,0,0,0.07);
            --shadow-sm:  0 1px 3px rgba(0,0,0,0.06);
            --nav-bg:     rgba(248,247,244,0.88);
            --grid-line:  rgba(0,0,0,0.02);
            --step-num:   #e2dfd8;
            --cta-bg:     #1a1f26;
            --cta-t1:     #ffffff;
            --cta-t2:     #a0aec0;
            --cta-t3:     #8a9ab0;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 80px; }

        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--bg);
            color: var(--t1);
            line-height: 1.7;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -webkit-text-size-adjust: 100%;
            transition: background .35s, color .35s;
        }

        /* Skip to content (AA) */
        .skip-link {
            position: absolute;
            top: -100%;
            left: 16px;
            background: var(--accent);
            color: #fff;
            padding: 12px 24px;
            border-radius: 0 0 8px 8px;
            font-weight: 700;
            font-size: 1rem;
            z-index: 9999;
            text-decoration: none;
            transition: top .2s;
        }
        .skip-link:focus { top: 0; }

        /* Prefers reduced motion (AA) */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
            .reveal { opacity: 1; transform: none; }
        }

        /* Subtle background grid */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background-image:
                linear-gradient(var(--grid-line) 1px, transparent 1px),
                linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
            z-index: 0;
            transition: background-image .35s;
        }

        a:focus-visible, button:focus-visible {
            outline: 3px solid var(--accent);
            outline-offset: 3px;
            border-radius: 4px;
        }

        .container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
        .fm { font-family: 'JetBrains Mono', monospace; }
        .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

        /* Smooth transitions for themed elements */
        .nav, .product-card, .step-card, .extra-card, .area-card,
        .price-table-wrap, .price-note, .cta-box, .footer {
            transition: background .35s, border-color .35s, color .35s, box-shadow .35s;
        }

        /* ========== NAV ========== */
        .nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 100;
            padding: 0 24px;
            background: var(--nav-bg);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
        }
        .nav.scrolled { box-shadow: 0 1px 0 var(--bd); }
        .nav-inner {
            max-width: 1140px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 68px;
        }
        .nav-logo {
            font-family: 'JetBrains Mono', monospace;
            font-size: 1rem;
            font-weight: 700;
            color: var(--t1);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: color .35s;
        }
        .nav-logo-icon {
            width: 28px; height: 28px;
            background: var(--accent);
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            flex-shrink: 0;
            transition: background .35s;
        }
        .nav-logo .dot { color: var(--accent); transition: color .35s; }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 24px;
            list-style: none;
        }
        .nav-links a {
            color: var(--t2);
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            transition: color .2s;
            padding: 8px 4px;
            min-height: 44px;
            display: inline-flex;
            align-items: center;
        }
        .nav-links a:hover { color: var(--t1); }
        .nav-cta {
            background: var(--accent) !important;
            color: #fff !important;
            padding: 10px 22px;
            min-height: 44px;
            border-radius: 7px;
            font-weight: 700 !important;
            font-size: 1rem !important;
            transition: background .2s, transform .2s, box-shadow .2s;
        }
        [data-theme="dark"] .nav-cta { color: #0a0e14 !important; }
        .nav-cta:hover {
            background: var(--accent-h) !important;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(255,107,43,.25);
        }

        /* Theme toggle – modern pill with sun/moon SVGs */
        .theme-toggle {
            background: var(--bg-card);
            border: 1px solid var(--bd);
            border-radius: 100px;
            width: 56px; height: 30px;
            cursor: pointer;
            position: relative;
            flex-shrink: 0;
            padding: 0;
            min-height: 44px;
            display: flex;
            align-items: center;
            transition: background .35s, border-color .35s;
            overflow: visible;
        }
        .theme-toggle .toggle-track {
            position: absolute;
            top: 50%; left: 0;
            transform: translateY(-50%);
            width: 56px; height: 30px;
            pointer-events: none;
        }
        .theme-toggle .toggle-thumb {
            position: absolute;
            top: 3px; left: 3px;
            width: 24px; height: 24px;
            background: var(--accent);
            border-radius: 50%;
            transition: transform .35s cubic-bezier(.4,0,.2,1);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        [data-theme="light"] .theme-toggle .toggle-thumb {
            transform: translateX(26px);
        }
        .theme-toggle .toggle-thumb svg {
            width: 14px; height: 14px;
            transition: opacity .25s, transform .35s;
        }
        .theme-toggle .icon-moon { position: absolute; }
        .theme-toggle .icon-sun  { position: absolute; }
        [data-theme="dark"] .theme-toggle .icon-moon { opacity: 1; transform: rotate(0deg); }
        [data-theme="dark"] .theme-toggle .icon-sun  { opacity: 0; transform: rotate(90deg); }
        [data-theme="light"] .theme-toggle .icon-moon { opacity: 0; transform: rotate(-90deg); }
        [data-theme="light"] .theme-toggle .icon-sun  { opacity: 1; transform: rotate(0deg); }

        .mobile-toggle {
            display: none;
            background: none; border: none;
            cursor: pointer; padding: 0;
            min-width: 44px; min-height: 44px;
            align-items: center; justify-content: center;
            position: relative;
        }
        .mobile-toggle span {
            display: block;
            width: 24px; height: 2px;
            background: var(--t1);
            border-radius: 2px;
            position: absolute;
            left: 10px;
            transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .2s, background .35s;
        }
        .mobile-toggle span:nth-child(1) { top: 14px; }
        .mobile-toggle span:nth-child(2) { top: 21px; }
        .mobile-toggle span:nth-child(3) { top: 28px; }
        .mobile-toggle.active span:nth-child(1) { top: 21px; transform: rotate(45deg); }
        .mobile-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
        .mobile-toggle.active span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

        /* ========== HERO ========== */
        .hero {
            position: relative;
            padding: 140px 0 80px;
            z-index: 1;
        }
        .hero-glow {
            position: absolute;
            top: -20%; right: -10%;
            width: 550px; height: 550px;
            background: radial-gradient(circle, var(--accent-bg) 0%, transparent 70%);
            pointer-events: none;
        }
        .hero-content { max-width: 680px; position: relative; }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--bg-card);
            border: 1px solid var(--bd);
            padding: 7px 16px;
            border-radius: 100px;
            font-size: 1rem;
            color: var(--t2);
            font-weight: 500;
            margin-bottom: 28px;
            box-shadow: var(--shadow-sm);
            animation: fadeUp .6s ease-out both;
            transition: background .35s, border-color .35s, color .35s;
        }
        .hero-badge-dot {
            width: 7px; height: 7px;
            background: var(--ok);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }
        @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

        .hero h1 {
            font-size: clamp(2.4rem, 5.5vw, 4rem);
            font-weight: 800;
            line-height: 1.08;
            letter-spacing: -1.5px;
            margin-bottom: 20px;
            animation: fadeUp .6s ease-out .08s both;
        }
        .hero h1 .accent { color: var(--accent); transition: color .35s; }
        .hero-sub {
            font-size: 1.1rem;
            color: var(--t2);
            max-width: 520px;
            line-height: 1.75;
            margin-bottom: 36px;
            animation: fadeUp .6s ease-out .16s both;
        }
        .hero-actions {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
            animation: fadeUp .6s ease-out .24s both;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--accent);
            color: #fff;
            padding: 15px 30px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            border: none;
            cursor: pointer;
            min-height: 48px;
            transition: background .2s, transform .2s, box-shadow .2s;
        }
        [data-theme="dark"] .btn-primary { color: #0a0e14; }
        .btn-primary:hover {
            background: var(--accent-h);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255,107,43,.25);
        }
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--bg-card);
            color: var(--t1);
            padding: 15px 30px;
            border-radius: 8px;
            font-weight: 500;
            font-size: 1rem;
            text-decoration: none;
            border: 1px solid var(--bd);
            min-height: 48px;
            transition: border-color .2s, box-shadow .2s, background .35s, color .35s;
        }
        .btn-secondary:hover {
            box-shadow: var(--shadow-sm);
        }
        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 56px;
            padding-top: 40px;
            border-top: 1px solid var(--bd);
            animation: fadeUp .6s ease-out .32s both;
        }
        .hero-stat-value {
            font-family: 'JetBrains Mono', monospace;
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--accent);
            transition: color .35s;
        }
        .hero-stat-label {
            font-size: 1rem;
            color: var(--t3);
            margin-top: 2px;
            font-weight: 500;
        }
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(16px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ========== SECTION COMMON ========== */
        section { position: relative; z-index: 1; }
        .section-label {
            font-family: 'JetBrains Mono', monospace;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--accent);
            margin-bottom: 12px;
            font-weight: 700;
            transition: color .35s;
        }
        .section-title {
            font-size: clamp(1.7rem, 3.5vw, 2.5rem);
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -.8px;
            margin-bottom: 12px;
        }
        .section-desc {
            font-size: 1rem;
            color: var(--t2);
            max-width: 540px;
            line-height: 1.75;
        }

        /* ========== PRODUCTS ========== */
        .products { padding: 80px 0; }
        .products-header { margin-bottom: 48px; }
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 14px;
        }
        .product-card {
            background: var(--bg-card);
            border: 1px solid var(--bd-l);
            border-radius: 10px;
            padding: 26px 22px;
            text-decoration: none;
            color: inherit;
            transition: transform .2s, box-shadow .3s, border-color .3s, background .35s;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .product-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-card);
            border-color: var(--accent-bd);
        }
        .product-icon {
            width: 44px; height: 44px;
            background: var(--accent-bg);
            border: 1px solid var(--accent-bd);
            border-radius: 9px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.15rem;
            color: var(--accent);
            transition: background .35s, border-color .35s, color .35s;
        }
        .product-card h3 { font-size: 1.05rem; font-weight: 700; }
        .product-card p { font-size: 1rem; color: var(--t2); line-height: 1.65; flex: 1; }
        .product-price {
            font-family: 'JetBrains Mono', monospace;
            font-size: 1rem;
            color: var(--accent);
            font-weight: 700;
            padding-top: 12px;
            border-top: 1px solid var(--bd-l);
            transition: color .35s, border-color .35s;
        }

        /* ========== SERVICES ========== */
        .services { padding: 80px 0; background: var(--bg-alt); transition: background .35s; }
        .services-header { margin-bottom: 56px; }
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 48px;
        }
        .step-card {
            background: var(--bg-card);
            border: 1px solid var(--bd-l);
            border-radius: 10px;
            padding: 32px 28px;
        }
        .step-num {
            font-family: 'JetBrains Mono', monospace;
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--step-num);
            line-height: 1;
            margin-bottom: 18px;
            transition: color .35s;
        }
        .step-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
        .step-card p { font-size: 1rem; color: var(--t2); line-height: 1.7; }
        .extras {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 14px;
        }
        .extra-card {
            background: var(--bg-card);
            border: 1px solid var(--bd-l);
            border-radius: 10px;
            padding: 26px 24px;
        }
        .extra-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
        .extra-card p { font-size: 1rem; color: var(--t2); line-height: 1.65; }

        /* ========== PRICING ========== */
        .pricing { padding: 80px 0; }
        .pricing-header { margin-bottom: 40px; }
        .price-table-wrap {
            background: var(--bg-card);
            border: 1px solid var(--bd-l);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }
        .price-table { width: 100%; border-collapse: collapse; font-size: 1rem; }
        .price-table thead th {
            text-align: left;
            padding: 14px 20px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--t3);
            background: var(--bg-alt);
            border-bottom: 1px solid var(--bd);
            font-weight: 700;
            transition: background .35s, color .35s;
        }
        .price-table td {
            padding: 15px 20px;
            border-bottom: 1px solid var(--bd-l);
            color: var(--t2);
            transition: color .35s, border-color .35s;
        }
        .price-table tr:last-child td { border-bottom: none; }
        .price-table tr:hover { background: var(--bg); }
        .price-table .pv {
            font-family: 'JetBrains Mono', monospace;
            color: var(--accent);
            font-weight: 700;
            white-space: nowrap;
            font-size: 1rem;
        }
        .price-table .pn { font-weight: 600; color: var(--t1); }
        .price-note {
            margin-top: 24px;
            padding: 18px 22px;
            background: var(--accent-bg);
            border: 1px solid var(--accent-bd);
            border-radius: 10px;
            font-size: 1rem;
            color: var(--t2);
            line-height: 1.7;
        }
        .price-note strong { color: var(--t1); }

        /* ========== AREAS ========== */
        .areas { padding: 80px 0; background: var(--bg-alt); transition: background .35s; }
        .areas-header { margin-bottom: 40px; }
        .areas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 10px;
        }
        .area-card {
            display: flex;
            align-items: center;
            gap: 12px;
            background: var(--bg-card);
            border: 1px solid var(--bd-l);
            border-radius: 10px;
            padding: 16px 18px;
            text-decoration: none;
            color: var(--t1);
            font-weight: 600;
            font-size: 1rem;
            min-height: 48px;
            transition: border-color .2s, box-shadow .2s, transform .15s, background .35s, color .35s;
        }
        .area-card:hover {
            border-color: var(--accent-bd);
            box-shadow: var(--shadow-sm);
            transform: translateY(-2px);
        }
        .area-dot {
            width: 9px; height: 9px;
            border-radius: 50%;
            background: var(--accent);
            flex-shrink: 0;
            transition: background .35s;
        }

        /* ========== CTA ========== */
        .cta-section { padding: 80px 0; }
        .cta-box {
            background: var(--cta-bg);
            border-radius: 16px;
            padding: 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
            border: 1px solid var(--bd-l);
        }
        .cta-box::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), #e8772e, var(--accent));
        }
        .cta-box h2 {
            font-size: clamp(1.6rem, 3.5vw, 2.2rem);
            font-weight: 800;
            letter-spacing: -.5px;
            margin-bottom: 12px;
            color: var(--cta-t1);
            position: relative;
        }
        .cta-box p {
            font-size: 1rem;
            color: var(--cta-t2);
            margin-bottom: 32px;
            max-width: 480px;
            margin-left: auto; margin-right: auto;
            line-height: 1.7;
            position: relative;
        }
        .cta-box .btn-primary {
            font-size: 1.05rem;
            padding: 17px 36px;
            position: relative;
            color: #fff;
        }
        [data-theme="dark"] .cta-box .btn-primary { color: #0a0e14; }
        .cta-contact {
            margin-top: 20px;
            font-size: 1rem;
            color: var(--cta-t3);
            position: relative;
        }
        .cta-contact a {
            color: var(--cta-t2);
            text-decoration: underline;
            text-underline-offset: 3px;
            transition: color .2s;
        }
        .cta-contact a:hover { color: var(--cta-t1); }

        /* ========== FOOTER ========== */
        .footer {
            padding: 56px 0 28px;
            border-top: 1px solid var(--bd);
            position: relative; z-index: 1;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-brand p {
            color: var(--t3);
            font-size: 1rem;
            margin-top: 14px;
            line-height: 1.7;
            max-width: 280px;
        }
        .footer-h {
            font-size: 1rem;
            font-family: 'JetBrains Mono', monospace;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--t3);
            margin-bottom: 16px;
            font-weight: 700;
        }
        .footer ul { list-style: none; }
        .footer li { margin-bottom: 8px; }
        .footer ul a {
            color: var(--t2);
            text-decoration: none;
            font-size: 1rem;
            transition: color .2s;
        }
        .footer ul a:hover { color: var(--accent); }
        .footer-bottom {
            padding-top: 28px;
            border-top: 1px solid var(--bd);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1rem;
            color: var(--t3);
        }

        /* ========== SCROLL REVEAL ========== */
        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity .5s ease, transform .5s ease;
        }
        .reveal.visible { opacity: 1; transform: translateY(0); }

        /* ========== RESPONSIVE ========== */

        /* Tablet */
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .mobile-toggle { display: flex; }
            .nav-links.open {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 68px; left: 0; right: 0;
                background: var(--nav-bg);
                backdrop-filter: blur(16px);
                padding: 20px 24px;
                gap: 8px;
                border-bottom: 1px solid var(--bd);
            }
            .nav-links.open li { width: 100%; }
            .nav-links.open a {
                width: 100%;
                padding: 12px 8px;
                font-size: 1rem;
            }
            .nav-links.open .nav-cta {
                text-align: center;
                justify-content: center;
                margin-top: 8px;
            }
            .nav-links.open .theme-wrap { order: -1; }
            .hero { padding: 110px 0 50px; }
            .hero-stats { flex-wrap: wrap; gap: 24px; }
            .hero-stats > div { min-width: 120px; }
            .steps-grid { grid-template-columns: 1fr; gap: 12px; }
            .products-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
            .cta-box { padding: 40px 24px; }
            .hero-actions { flex-direction: column; align-items: stretch; }
            .btn-primary, .btn-secondary { justify-content: center; }
            /* Table horizontal scroll */
            .price-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
            .price-table { min-width: 520px; }
            .price-table thead th, .price-table td { padding: 12px 14px; }
            .price-table { font-size: 1rem; }
        }

        /* Small phones */
        @media (max-width: 480px) {
            .container { padding: 0 16px; }
            .footer-grid { grid-template-columns: 1fr; gap: 24px; }
            .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
            .hero-stats { flex-direction: column; gap: 16px; }
            .areas-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
            .products-grid { grid-template-columns: 1fr; gap: 12px; }
            .hero h1 { font-size: 2rem; letter-spacing: -0.8px; }
            .section-title { font-size: 1.5rem; }
            .cta-box { padding: 32px 16px; }
            .cta-box h2 { font-size: 1.4rem; }
        }

        /* Very small phones */
        @media (max-width: 360px) {
            .hero { padding: 100px 0 40px; }
            .hero-badge { font-size: 1rem; padding: 6px 12px; }
            .areas-grid { grid-template-columns: 1fr; }
        }

        /* Safe area insets for notch phones */
        @supports (padding: env(safe-area-inset-bottom)) {
            .footer { padding-bottom: calc(28px + env(safe-area-inset-bottom)); }
            .nav { padding-left: calc(24px + env(safe-area-inset-left)); padding-right: calc(24px + env(safe-area-inset-right)); }
        }
    

        /* ========== INNER PAGE STYLES ========== */
        .page-hero {
            padding: 120px 0 48px;
            position: relative;
            z-index: 1;
        }
        .page-hero .section-label { margin-bottom: 8px; }
        .page-hero h1 {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -1px;
            margin-bottom: 16px;
        }
        .page-hero .hero-sub {
            font-size: 1.05rem;
            color: var(--t2);
            max-width: 620px;
            line-height: 1.75;
            margin-bottom: 28px;
            animation: none;
            opacity: 1;
        }

        .content-section {
            padding: 64px 0;
            position: relative;
            z-index: 1;
        }
        .content-section.alt { background: var(--bg-alt); transition: background .35s; }
        .content-section h2 {
            font-size: clamp(1.3rem, 2.5vw, 1.8rem);
            font-weight: 800;
            letter-spacing: -.5px;
            margin-bottom: 16px;
            line-height: 1.2;
        }
        .content-section h3 {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 10px;
            margin-top: 28px;
        }
        .content-section p {
            color: var(--t2);
            line-height: 1.8;
            margin-bottom: 16px;
            max-width: 760px;
        }
        .content-section p:last-child { margin-bottom: 0; }
        .content-section strong { color: var(--t1); }

        /* Breadcrumb */
        .breadcrumb {
            font-size: 1rem;
            color: var(--t3);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .breadcrumb a {
            color: var(--t2);
            text-decoration: none;
            transition: color .2s;
        }
        .breadcrumb a:hover { color: var(--accent); }
        .breadcrumb .sep { color: var(--t3); }

        /* Inline CTA box */
        .inline-cta {
            background: var(--accent-bg);
            border: 1px solid var(--accent-bd);
            border-radius: 12px;
            padding: 28px 32px;
            margin: 32px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
            transition: background .35s, border-color .35s;
        }
        .inline-cta p {
            color: var(--t1) !important;
            font-weight: 600;
            margin: 0 !important;
            max-width: none !important;
        }
        .inline-cta .btn-primary { white-space: nowrap; }

        /* Price table on inner pages */
        .content-section .price-table-wrap {
            margin: 24px 0 32px;
        }

        /* FAQ on inner pages */
        .faq-section { padding: 64px 0; }
        .faq-item {
            border-bottom: 1px solid var(--bd);
            padding: 24px 0;
        }
        .faq-item:first-child { border-top: 1px solid var(--bd); }
        .faq-q {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--t1);
            cursor: pointer;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
        .faq-q::before {
            content: '+';
            color: var(--accent);
            font-size: 1.3rem;
            font-weight: 700;
            line-height: 1;
            flex-shrink: 0;
            transition: transform .3s;
        }
        .faq-item.open .faq-q::before {
            transform: rotate(45deg);
        }
        .faq-a {
            color: var(--t2);
            line-height: 1.75;
            padding-left: 32px;
            max-height: 0;
            overflow: hidden;
            transition: max-height .35s ease, opacity .25s;
            opacity: 0;
        }
        .faq-item.open .faq-a {
            max-height: 300px;
            opacity: 1;
        }

        @media (max-width: 768px) {
            .page-hero { padding: 100px 0 36px; }
            .inline-cta { flex-direction: column; align-items: flex-start; }
        }
