        :root {
            /* === LIGHT PALETTE — Stripe / FAANG B2B aesthetic === */
            --bg: #FFFFFF;
            --bg-tint: #FAFBFC;
            --bg-cream: #F6F9FC;
            --bg-card: #FFFFFF;
            --bg-card-hover: #FCFCFD;

            --border: #E3E8EE;
            --border-strong: #C1C9D2;
            --border-light: #F1F4F7;

            --text: #0A2540;          /* Stripe-style deep navy */
            --text-2: #1A2C4D;
            --text-mute: #425466;
            --text-faint: #697386;
            --text-light: #8898AA;

            /* Single accent — confident SaaS blue, distinct from Stripe's purple */
            --accent: #1652F0;
            --accent-hover: #0E3FCF;
            --accent-soft: #E8EEFF;
            --accent-tint: #F0F4FF;

            /* Secondary signals (used sparingly) */
            --success: #00A878;
            --warm: #FFB020;
            --rose: #ED5F74;
            --indigo: #635BFF;

            /* Dark surfaces for the one CTA band only */
            --ink: #0A2540;
            --ink-2: #122144;

            --font: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
            --font-mono: 'Geist Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;

            --container: 1200px;
            --container-narrow: 880px;
            --container-wide: 1320px;
            --radius-sm: 6px;
            --radius: 8px;
            --radius-lg: 12px;
            --radius-xl: 16px;

            /* shadow stack (Stripe-style soft layered shadows) */
            --shadow-sm: 0 1px 2px rgba(10,37,64,0.04), 0 1px 3px rgba(10,37,64,0.06);
            --shadow: 0 2px 4px rgba(10,37,64,0.04), 0 4px 12px rgba(10,37,64,0.08);
            --shadow-md: 0 8px 24px rgba(10,37,64,0.08), 0 4px 8px rgba(10,37,64,0.04);
            --shadow-lg: 0 24px 48px rgba(10,37,64,0.12), 0 8px 24px rgba(10,37,64,0.06);
            --shadow-xl: 0 40px 80px rgba(10,37,64,0.14), 0 16px 32px rgba(10,37,64,0.08);

            /* Back-compat for old templates */
            --navy: var(--text);
            --navy-deep: var(--text);
            --navy-mid: var(--text-2);
            --blue: var(--accent);
            --blue-hover: var(--accent-hover);
            --blue-light: var(--accent);
            --blue-glow: rgba(22,82,240,0.18);
            --violet: var(--indigo);
            --slate: var(--text-mute);
            --slate-light: var(--text-faint);
            --bg-off: var(--bg-cream);
            --bg-white: var(--bg);
            --text-muted: var(--text-mute);
        }

        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; scroll-padding-top: 88px; }
        body {
            font-family: var(--font);
            font-feature-settings: 'cv11', 'ss01', 'ss03';
            color: var(--text);
            background: var(--bg);
            line-height: 1.55;
            font-size: 17px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
            overflow-x: hidden;
        }
        a { color: inherit; text-decoration: none; }
        button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
        ul, ol { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        ::selection { background: var(--accent); color: #fff; }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font);
            font-weight: 600;
            letter-spacing: -0.025em;
            line-height: 1.05;
            color: inherit;
        }

        .container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
        .container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 28px; }
        .container-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 28px; }

        /* === EYEBROW === */
        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: var(--font);
            font-size: 13.5px;
            font-weight: 500;
            color: var(--accent);
        }
        .eyebrow .dot {
            width: 6px; height: 6px;
            border-radius: 50%;
            background: var(--accent);
            box-shadow: 0 0 0 4px var(--accent-soft);
        }

        /* === BUTTONS — pill style, Stripe/UnitQ pattern === */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            font-family: var(--font);
            font-size: 14.5px;
            font-weight: 500;
            letter-spacing: -0.005em;
            padding: 11px 22px;
            border-radius: 999px;
            transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
            cursor: pointer;
            position: relative;
            border: 1px solid transparent;
            white-space: nowrap;
            line-height: 1.2;
        }
        .btn-primary {
            background: var(--accent);
            color: #fff;
            border-color: var(--accent);
            box-shadow: 0 1px 2px rgba(22,82,240,0.20);
        }
        .btn-primary:hover {
            background: var(--accent-hover);
            border-color: var(--accent-hover);
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(22,82,240,0.32);
        }
        .btn-dark {
            background: var(--text);
            color: #fff;
            border-color: var(--text);
        }
        .btn-dark:hover {
            background: #061B33;
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(10,37,64,0.24);
        }
        .btn-ghost {
            background: transparent;
            color: var(--text);
            border-color: var(--border-strong);
        }
        .btn-ghost:hover {
            border-color: var(--text);
            background: var(--bg-cream);
        }
        .btn-light-ghost {
            background: transparent;
            color: #fff;
            border-color: rgba(255,255,255,0.32);
        }
        .btn-light-ghost:hover {
            background: rgba(255,255,255,0.08);
            border-color: rgba(255,255,255,0.6);
        }
        .btn-link {
            color: var(--accent);
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .btn-arrow {
            display: inline-block;
            transition: transform 0.18s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .btn:hover .btn-arrow,
        .btn-link:hover .btn-arrow { transform: translateX(3px); }

        /* === REVEAL === */
        .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1); }
        .reveal.visible { opacity: 1; transform: none; }
        .d1 { transition-delay: 0.06s; }
        .d2 { transition-delay: 0.12s; }
        .d3 { transition-delay: 0.18s; }
        .d4 { transition-delay: 0.24s; }
        .d5 { transition-delay: 0.30s; }
        .d6 { transition-delay: 0.36s; }
        .d7 { transition-delay: 0.42s; }

        /* === NAV (light, refined) === */
        .nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 100;
            background: rgba(255,255,255,0.82);
            backdrop-filter: saturate(180%) blur(18px);
            -webkit-backdrop-filter: saturate(180%) blur(18px);
            border-bottom: 1px solid var(--border-light);
            transition: all 0.25s ease;
        }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            max-width: var(--container-wide);
            margin: 0 auto;
            padding: 0 28px;
        }
        .nav-left {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .nav-logo-img {
            width: 28px;
            height: 28px;
            object-fit: contain;
        }
        .nav-wordmark {
            font-family: var(--font);
            font-size: 19px;
            font-weight: 600;
            letter-spacing: -0.025em;
            color: var(--text);
        }
        .nav-wordmark .dot { color: var(--accent); }
        .nav-center {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .nav-link {
            font-family: var(--font);
            font-size: 14.5px;
            font-weight: 450;
            color: var(--text-mute);
            transition: color 0.15s;
            padding: 8px 14px;
            border-radius: 8px;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .nav-link:hover { color: var(--text); }
        .nav-link svg { width: 11px; height: 11px; opacity: 0.65; }
        .nav-right {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-cta {
            font-family: var(--font);
            font-size: 14px;
            font-weight: 500;
            color: #fff;
            background: var(--accent);
            padding: 9px 18px;
            border-radius: 999px;
            transition: all 0.18s;
            box-shadow: 0 1px 2px rgba(22,82,240,0.15);
        }
        .nav-cta:hover {
            background: var(--accent-hover);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(22,82,240,0.25);
        }
        .nav-secondary {
            font-size: 14px;
            color: var(--text-mute);
            padding: 8px 14px;
            border-radius: 8px;
            transition: color 0.15s;
        }
        .nav-secondary:hover { color: var(--text); }

        /* Megamenu */
        .nav-megamenu {
            position: fixed;
            top: 80px;
            left: 50%;
            transform: translateX(-50%) translateY(-8px);
            width: min(960px, calc(100vw - 56px));
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 16px;
            box-shadow: var(--shadow-xl);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.2s, transform 0.2s, visibility 0s 0.2s;
            padding: 24px;
            overflow: hidden;
        }
        .nav-megamenu.open {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
            transition: opacity 0.2s, transform 0.2s, visibility 0s;
        }
        .nav-megamenu-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 8px;
        }
        .nav-megamenu h6 {
            font-family: var(--font);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: var(--text-faint);
            padding: 8px 12px;
            line-height: 1;
        }
        .nav-megamenu .feat {
            display: flex;
            gap: 12px;
            padding: 10px 12px;
            border-radius: 10px;
            transition: background 0.12s;
            align-items: flex-start;
        }
        .nav-megamenu .feat:hover { background: var(--bg-cream); }
        .nav-megamenu .feat-icon {
            width: 32px; height: 32px;
            border-radius: 8px;
            background: var(--accent-soft);
            color: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .nav-megamenu .feat-icon svg { width: 16px; height: 16px; }
        .nav-megamenu .feat-body {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .nav-megamenu .feat-title {
            font-family: var(--font);
            font-size: 14.5px;
            font-weight: 600;
            color: var(--text);
            line-height: 1.3;
        }
        .nav-megamenu .feat-desc {
            font-size: 13px;
            color: var(--text-mute);
            line-height: 1.4;
        }

        /* Mobile */
        .nav-hamburger {
            display: none;
            padding: 8px;
            cursor: pointer;
            border-radius: 8px;
        }
        .nav-hamburger:hover { background: var(--bg-cream); }
        .nav-hamburger span {
            display: block;
            width: 20px; height: 2px;
            background: var(--text);
            margin: 4px 0;
            transition: transform 0.22s, opacity 0.22s;
            border-radius: 2px;
        }
        .nav-hamburger.open span:first-child { transform: translateY(6px) rotate(45deg); }
        .nav-hamburger.open span:nth-child(2) { opacity: 0; }
        .nav-hamburger.open span:last-child { transform: translateY(-6px) rotate(-45deg); }
        .nav-mobile {
            display: none;
            position: fixed;
            top: 72px; left: 0; right: 0;
            background: #fff;
            border-bottom: 1px solid var(--border);
            box-shadow: var(--shadow-lg);
            padding: 24px 28px 32px;
            max-height: calc(100vh - 72px);
            overflow-y: auto;
        }
        .nav-mobile.open { display: block; }
        .nav-mobile h6 {
            font-family: var(--font);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.04em;
            color: var(--text-faint);
            margin: 18px 0 8px;
            text-transform: uppercase;
        }
        .nav-mobile a {
            display: block;
            font-family: var(--font);
            font-size: 16px;
            font-weight: 500;
            color: var(--text);
            padding: 10px 0;
            border-bottom: 1px solid var(--border-light);
        }
        .nav-mobile .nav-cta {
            display: inline-block;
            margin-top: 16px;
            padding: 11px 22px;
        }

        /* === FOOTER === */
        .footer {
            background: var(--bg-cream);
            border-top: 1px solid var(--border);
            padding: 96px 0 40px;
        }
        .footer-cta {
            display: grid;
            grid-template-columns: 1.4fr 1fr;
            gap: 64px;
            padding-bottom: 64px;
            border-bottom: 1px solid var(--border);
            margin-bottom: 56px;
            align-items: end;
        }
        .footer-cta h2 {
            font-size: clamp(36px, 5vw, 60px);
            font-weight: 600;
            line-height: 1;
            letter-spacing: -0.03em;
            max-width: 580px;
            color: var(--text);
        }
        .footer-cta-meta {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
        }
        .footer-cta-meta p {
            font-size: 15px;
            color: var(--text-mute);
            max-width: 360px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
            gap: 56px;
            margin-bottom: 56px;
        }
        .footer-brand { display: flex; flex-direction: column; gap: 16px; }
        .footer-brand-top {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .footer-brand-top img { width: 28px; height: 28px; object-fit: contain; }
        .footer-brand-top span {
            font-family: var(--font);
            font-size: 19px;
            font-weight: 600;
            letter-spacing: -0.025em;
            color: var(--text);
        }
        .footer-brand-top span .dot { color: var(--accent); }
        .footer-brand p {
            font-size: 14px;
            color: var(--text-mute);
            line-height: 1.55;
            max-width: 300px;
        }
        .footer-grid h5 {
            font-family: var(--font);
            font-size: 13px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 16px;
        }
        .footer-grid a {
            display: block;
            font-size: 14px;
            color: var(--text-mute);
            padding: 5px 0;
            transition: color 0.15s;
        }
        .footer-grid a:hover { color: var(--accent); }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: var(--font);
            font-size: 13px;
            color: var(--text-faint);
            padding-top: 28px;
            border-top: 1px solid var(--border);
        }

        /* === FLASH === */
        .flash-toast-container {
            position: fixed; top: 88px; right: 20px;
            z-index: 200;
            display: flex; flex-direction: column; gap: 8px;
        }
        .flash-toast {
            font-family: var(--font);
            font-size: 14px;
            background: #fff;
            color: var(--text);
            padding: 12px 18px;
            border: 1px solid var(--border);
            border-left: 3px solid var(--accent);
            border-radius: 10px;
            box-shadow: var(--shadow-md);
            max-width: 400px;
        }
        .flash-toast.error { border-left-color: var(--rose); }
        .flash-toast.success { border-left-color: var(--success); }

        /* === GENERIC PAGES === */
        .page-header {
            position: relative;
            padding: 144px 0 72px;
            border-bottom: 1px solid var(--border);
            background: var(--bg);
            overflow: hidden;
        }
        .page-header::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 60% 50% at 80% 30%, rgba(22,82,240,0.06), transparent 60%),
                radial-gradient(ellipse 40% 40% at 15% 70%, rgba(99,91,255,0.05), transparent 60%);
            pointer-events: none;
        }
        .page-header > .container,
        .page-header > .container-narrow,
        .page-header > .container-wide { position: relative; z-index: 2; }
        .page-header h1 {
            font-family: var(--font);
            font-size: clamp(40px, 5.5vw, 72px);
            font-weight: 600;
            letter-spacing: -0.035em;
            line-height: 1;
            color: var(--text);
            max-width: 880px;
            margin: 0 0 18px;
        }
        .page-header > .container > p,
        .page-header > .container-narrow > p,
        .page-header > .container-wide > p {
            font-size: 19px;
            line-height: 1.55;
            color: var(--text-mute);
            max-width: 640px;
            margin: 0;
        }

        .page-content {
            padding: 80px 0 120px;
            background: var(--bg);
            color: var(--text);
        }
        .page-content > .container,
        .page-content > .container-narrow { max-width: 800px; }
        .page-content h2 {
            font-family: var(--font);
            font-size: clamp(26px, 2.6vw, 34px);
            font-weight: 600;
            letter-spacing: -0.025em;
            color: var(--text);
            margin: 56px 0 16px;
        }
        .page-content h2:first-child { margin-top: 0; }
        .page-content h3 {
            font-family: var(--font);
            font-size: 19px;
            font-weight: 600;
            color: var(--text);
            margin: 32px 0 10px;
        }
        .page-content p {
            font-size: 16.5px;
            line-height: 1.7;
            color: var(--text-2);
            margin: 0 0 18px;
        }
        .page-content a:not(.btn) {
            color: var(--accent);
            font-weight: 500;
            transition: color 0.15s;
        }
        .page-content a:not(.btn):hover { color: var(--accent-hover); }
        .page-content ul:not([class]) {
            list-style: none;
            margin: 0 0 18px;
            padding: 0;
        }
        .page-content ul:not([class]) li {
            font-size: 16.5px;
            line-height: 1.7;
            color: var(--text-2);
            padding-left: 24px;
            position: relative;
            margin-bottom: 8px;
        }
        .page-content ul:not([class]) li::before {
            content: '';
            position: absolute;
            left: 4px; top: 12px;
            width: 6px; height: 6px;
            border-radius: 50%;
            background: var(--accent);
        }

        /* === FEATURE PAGE TEMPLATE (used by all /features/*) === */
        .fp-hero {
            position: relative;
            padding: 144px 0 72px;
            background: var(--bg);
            overflow: hidden;
        }
        .fp-hero::before {
            content: '';
            position: absolute; inset: 0;
            background:
                radial-gradient(ellipse 60% 50% at 80% 30%, rgba(22,82,240,0.08), transparent 60%),
                radial-gradient(ellipse 40% 50% at 15% 70%, rgba(99,91,255,0.06), transparent 60%);
            pointer-events: none;
        }
        .fp-hero > .container-wide { position: relative; z-index: 2; }
        .fp-hero-grid {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 56px;
            align-items: center;
        }
        .fp-hero h1 {
            font-size: clamp(40px, 5vw, 68px);
            font-weight: 600;
            letter-spacing: -0.04em;
            line-height: 1;
            margin: 18px 0 22px;
            color: var(--text);
        }
        .fp-hero h1 .acc { color: var(--accent); }
        .fp-hero p.lede {
            font-size: 19px;
            line-height: 1.55;
            color: var(--text-mute);
            max-width: 540px;
            margin-bottom: 28px;
        }
        .fp-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
        .fp-hero-img {
            border-radius: 16px;
            overflow: hidden;
            aspect-ratio: 4 / 3;
            box-shadow: var(--shadow-xl);
        }
        .fp-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

        .fp-section {
            padding: 96px 0;
            background: var(--bg);
            border-bottom: 1px solid var(--border-light);
        }
        .fp-section:nth-of-type(even) { background: var(--bg-cream); }
        .fp-section-head {
            margin-bottom: 56px;
            max-width: 760px;
        }
        .fp-section-head h2 {
            font-size: clamp(32px, 4vw, 52px);
            font-weight: 600;
            letter-spacing: -0.03em;
            margin: 16px 0;
            line-height: 1.05;
        }
        .fp-section-head h2 .acc { color: var(--accent); }
        .fp-section-head p {
            font-size: 17.5px;
            line-height: 1.55;
            color: var(--text-mute);
            max-width: 580px;
        }

        .fp-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }
        .fp-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
        .fp-card {
            padding: 28px 28px 32px;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 14px;
            box-shadow: var(--shadow-sm);
            transition: all 0.22s;
        }
        .fp-card:hover {
            border-color: var(--border-strong);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        .fp-card-icon {
            width: 36px; height: 36px;
            border-radius: 10px;
            background: var(--accent-soft);
            color: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }
        .fp-card-icon svg { width: 18px; height: 18px; }
        .fp-card h3 {
            font-size: 19px;
            font-weight: 600;
            letter-spacing: -0.015em;
            line-height: 1.25;
            margin-bottom: 10px;
            color: var(--text);
        }
        .fp-card p {
            font-size: 14.5px;
            line-height: 1.55;
            color: var(--text-mute);
            margin: 0;
        }

        .fp-cta {
            padding: 96px 0;
            background: var(--text);
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        .fp-cta::before {
            content: '';
            position: absolute; inset: 0;
            background: radial-gradient(ellipse at 50% 80%, rgba(22,82,240,0.32), transparent 60%);
            pointer-events: none;
        }
        .fp-cta > .container-wide { position: relative; z-index: 2; }
        .fp-cta-inner {
            max-width: 760px;
            margin: 0 auto;
            text-align: center;
        }
        .fp-cta h2 {
            font-size: clamp(32px, 4vw, 52px);
            font-weight: 600;
            letter-spacing: -0.03em;
            margin: 18px 0 18px;
            color: #fff;
            line-height: 1.05;
        }
        .fp-cta h2 .acc {
            background: linear-gradient(135deg, #7B61FF 0%, #34D399 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .fp-cta p {
            font-size: 17px;
            color: rgba(255,255,255,0.72);
            line-height: 1.55;
            max-width: 540px;
            margin: 0 auto 32px;
        }
        .fp-cta .eyebrow { color: #7B8FFF; justify-content: center; }
        .fp-cta .eyebrow .dot { background: #7B8FFF; box-shadow: 0 0 0 4px rgba(123,143,255,0.25); }
        .fp-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

        @media (max-width: 1024px) {
            .fp-hero-grid { grid-template-columns: 1fr; gap: 40px; }
            .fp-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 640px) {
            .fp-hero { padding: 120px 0 48px; }
            .fp-section, .fp-cta { padding: 72px 0; }
            .fp-grid, .fp-grid.cols-2 { grid-template-columns: 1fr; }
        }

        /* Form helpers */
        .contact-layout {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 56px;
        }
        .contact-sidebar {
            display: flex;
            flex-direction: column;
            gap: 16px;
            padding: 28px;
            background: var(--bg-cream);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            height: fit-content;
        }
        .contact-info-item {
            display: flex;
            gap: 12px;
            align-items: flex-start;
        }
        .contact-info-icon {
            width: 32px; height: 32px;
            border-radius: 8px;
            background: var(--accent-soft);
            color: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 15px;
        }
        .contact-info-text { font-size: 14px; color: var(--text-2); line-height: 1.5; }
        .contact-info-text a:not(.btn) { color: var(--accent); }
        .form-section { margin-bottom: 24px; }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 16px;
        }
        .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
        .form-group label {
            font-family: var(--font);
            font-size: 13px;
            font-weight: 500;
            color: var(--text);
        }
        .form-group label .req { color: var(--rose); margin-left: 2px; }
        .form-group input, .form-group select, .form-group textarea {
            font-family: var(--font);
            font-size: 15px;
            color: var(--text);
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 11px 14px;
            transition: all 0.18s;
            outline: none;
        }
        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px var(--accent-soft);
        }
        .form-group textarea { min-height: 130px; resize: vertical; line-height: 1.5; }
        .form-submit {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-family: var(--font);
            font-size: 14.5px;
            font-weight: 500;
            background: var(--accent);
            color: #fff;
            padding: 11px 22px;
            border-radius: 999px;
            border: 1px solid var(--accent);
            cursor: pointer;
            transition: all 0.18s;
            box-shadow: 0 1px 2px rgba(22,82,240,0.15);
        }
        .form-submit:hover {
            background: var(--accent-hover);
            border-color: var(--accent-hover);
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(22,82,240,0.25);
        }

        /* === RESPONSIVE === */
        @media (max-width: 1024px) {
            .nav-center { display: none; }
            .nav-secondary { display: none; }
            .nav-hamburger { display: block; }
            .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; }
            .footer-grid > div:nth-child(4),
            .footer-grid > div:nth-child(5) { grid-column: span 1; }
            .footer-cta { grid-template-columns: 1fr; gap: 32px; }
        }
        @media (max-width: 768px) {
            html { scroll-padding-top: 76px; }
            body { font-size: 16px; }
            .container, .container-narrow, .container-wide { padding: 0 22px; }
            .nav-inner { height: 64px; padding: 0 22px; }
            .nav-cta { padding: 8px 16px; font-size: 13.5px; }
            .nav-wordmark { font-size: 17px; }
            .footer { padding: 64px 0 32px; }
            .footer-cta { padding-bottom: 48px; margin-bottom: 40px; }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
                margin-bottom: 40px;
            }
            .footer-brand { grid-column: span 2; }
            .footer-bottom {
                flex-direction: column;
                gap: 8px;
                align-items: flex-start;
            }
            .page-header { padding: 120px 0 56px; }
            .page-content { padding: 56px 0 80px; }
            .contact-layout { grid-template-columns: 1fr; gap: 32px; }
            .form-row { grid-template-columns: 1fr; }
        }

        /* Breadcrumbs */
        .breadcrumbs {
            padding: 16px 0 0;
            font-size: 0.82rem;
            color: var(--text-4);
        }
        .breadcrumbs a { color: var(--text-4); text-decoration: none; }
        .breadcrumbs a:hover { color: var(--accent); }
        .breadcrumbs .sep { margin: 0 6px; opacity: 0.5; }

        /* Related features grid */
        .related-features {
            padding: 64px 0;
            border-top: 1px solid var(--border);
        }
        .related-features h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 24px;
            color: var(--text-3);
        }
        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 16px;
        }
        .related-card {
            display: block;
            padding: 20px;
            border: 1px solid var(--border);
            border-radius: 10px;
            text-decoration: none;
            color: var(--text);
            transition: border-color 0.15s, box-shadow 0.15s;
        }
        .related-card:hover {
            border-color: var(--accent);
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
        }
        .related-card strong { display: block; margin-bottom: 4px; }
        .related-card span { font-size: 0.85rem; color: var(--text-4); }

        /* FAQ accordion (shared across all pages) */
        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1.6fr;
            gap: 80px;
        }
        .faq-aside h2 {
            font-size: clamp(36px, 4vw, 52px);
            font-weight: 600;
            letter-spacing: -0.03em;
            margin: 16px 0 16px;
            line-height: 1.05;
        }
        .faq-aside h2 .acc { color: var(--accent); }
        .faq-aside p {
            font-size: 15px;
            color: var(--text-mute);
            max-width: 320px;
            margin-bottom: 28px;
        }
        .faq-list {
            border-top: 1px solid var(--border);
        }
        .faq-item { border-bottom: 1px solid var(--border); }
        .faq-q {
            width: 100%;
            text-align: left;
            padding: 22px 40px 22px 0;
            font-family: var(--font);
            font-size: 17px;
            font-weight: 600;
            line-height: 1.3;
            color: var(--text);
            position: relative;
            background: none;
            border: none;
            cursor: pointer;
        }
        .faq-q:hover { color: var(--accent); }
        .faq-chevron { display: none; }
        .faq-q::after {
            content: '+';
            position: absolute;
            right: 0; top: 22px;
            font-family: var(--font);
            font-size: 22px;
            color: var(--accent);
            font-weight: 300;
            transition: transform 0.22s;
        }
        .faq-item.open .faq-q::after { transform: rotate(45deg); }
        .faq-a {
            font-size: 15.5px;
            line-height: 1.65;
            color: var(--text-mute);
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.32s ease;
        }
        .faq-a p { padding: 0 40px 24px 0; max-width: 680px; }

        @media (max-width: 768px) {
            .faq-grid { grid-template-columns: 1fr; gap: 40px; }
        }
