/* ============================================================
           DESIGN SYSTEM
           ============================================================ */
        :root {
            /* Brand palette */
            --navy-900: #1C2470;
            --navy-800: #243080;
            --indigo-700: #2E3A8C;
            --indigo-600: #3A4699;
            --blue-purple: #5B6BAF;
            --lavender: #8E8EC4;
            --lavender-soft: #BCBCD8;

            /* Surfaces */
            --white: #FFFFFF;
            --surface-50: #FAFBFF;
            --surface-100: #F7F8FC;
            --surface-200: #EEF0F8;
            --line-100: #E5E7F1;
            --line-200: #DADCE9;

            /* Type */
            --ink-900: #1C2470;
            --ink-700: #2A3060;
            --ink-500: #5A5A7A;
            --ink-400: #7A7A99;
            --ink-300: #9B9BB5;

            /* Effects */
            --shadow-sm: 0 1px 2px rgba(28, 36, 112, 0.05), 0 1px 1px rgba(28, 36, 112, 0.04);
            --shadow-md: 0 4px 16px rgba(28, 36, 112, 0.08), 0 2px 4px rgba(28, 36, 112, 0.05);
            --shadow-lg: 0 16px 40px rgba(28, 36, 112, 0.10), 0 6px 12px rgba(28, 36, 112, 0.06);
            --shadow-xl: 0 32px 64px rgba(28, 36, 112, 0.14), 0 12px 24px rgba(28, 36, 112, 0.08);

            /* Layout */
            --container: 1280px;
            --container-wide: 1440px;
            --radius-sm: 6px;
            --radius-md: 10px;
            --radius-lg: 16px;
            --radius-xl: 24px;

            /* Motion */
            --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
            --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
        }

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

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--ink-700);
            background: var(--white);
            line-height: 1.6;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        .skip-link {
            position: absolute;
            left: -9999px;
            top: auto;
            z-index: 10001;
            padding: 12px 20px;
            background: var(--navy-900);
            color: var(--white);
            font-weight: 600;
            font-size: 14px;
            border-radius: 0 0 8px 0;
            text-decoration: none;
        }
        .skip-link:focus {
            left: 0;
            top: 0;
        }

        ::selection {
            background: var(--navy-900);
            color: var(--white);
        }

        img, svg { display: block; max-width: 100%; }
        a { color: inherit; text-decoration: none; }
        button { font-family: inherit; border: none; background: none; cursor: pointer; }
        ul { list-style: none; }

        /* ============================================================
           TYPOGRAPHY UTILITIES
           ============================================================ */
        .display, .h1, .h2, .h3, .h4 {
            font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
            color: var(--ink-900);
            letter-spacing: -0.02em;
            line-height: 1.08;
            font-weight: 700;
        }
        .display { font-size: clamp(40px, 5.5vw, 72px); letter-spacing: -0.035em; font-weight: 700; }
        .h1 { font-size: clamp(36px, 4.5vw, 56px); letter-spacing: -0.03em; }
        .h2 { font-size: clamp(28px, 3vw, 40px); letter-spacing: -0.025em; line-height: 1.15; }
        .h3 { font-size: clamp(20px, 1.6vw, 24px); letter-spacing: -0.015em; line-height: 1.3; }
        .h4 { font-size: 17px; letter-spacing: -0.01em; line-height: 1.4; }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--blue-purple);
        }
        .eyebrow::before {
            content: '';
            width: 28px;
            height: 1px;
            background: var(--blue-purple);
        }
        .eyebrow.light { color: var(--lavender-soft); }
        .eyebrow.light::before { background: var(--lavender-soft); }

        .lead {
            font-size: clamp(17px, 1.3vw, 19px);
            line-height: 1.65;
            color: var(--ink-500);
            font-weight: 400;
        }

        /* ============================================================
           LAYOUT PRIMITIVES
           ============================================================ */
        .container {
            width: 100%;
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 32px;
        }
        .container-wide {
            width: 100%;
            max-width: var(--container-wide);
            margin: 0 auto;
            padding: 0 32px;
        }

        section { position: relative; }

        /* Fixed nav: prevent section titles clipping on anchor scroll */
        section[id],
        .hero[id] {
            scroll-margin-top: var(--scroll-offset, 176px);
        }
        .section-pad { padding: clamp(80px, 10vw, 140px) 0; }
        .section-pad-sm { padding: clamp(64px, 7vw, 100px) 0; }

        .section-header {
            max-width: 760px;
            margin-bottom: clamp(48px, 6vw, 80px);
        }
        .section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
        .section-header .h2 { margin-top: 16px; }
        .section-header .lead { margin-top: 20px; }

        /* ============================================================
           BUTTONS
           ============================================================ */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 15px 26px;
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            font-weight: 600;
            letter-spacing: -0.005em;
            border-radius: 8px;
            transition: all 0.25s var(--ease-out);
            white-space: nowrap;
            position: relative;
            overflow: hidden;
        }
        .btn svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease-out); }
        .btn:hover svg { transform: translateX(3px); }

        .btn-primary {
            background: var(--navy-900);
            color: var(--white);
        }
        .btn-primary:hover {
            background: var(--indigo-700);
            transform: translateY(-1px);
            box-shadow: 0 12px 28px rgba(28, 36, 112, 0.25);
        }
        .btn-primary.on-dark { background: var(--white); color: var(--navy-900); }
        .btn-primary.on-dark:hover { background: var(--surface-100); }

        .btn-ghost {
            background: transparent;
            color: var(--navy-900);
            border: 1px solid var(--line-200);
        }
        .btn-ghost:hover { border-color: var(--navy-900); background: var(--surface-50); }
        .btn-ghost.on-dark { color: var(--white); border-color: rgba(255,255,255,0.25); }
        .btn-ghost.on-dark:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }

        .btn-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--navy-900);
            font-weight: 600;
            font-size: 15px;
            padding: 4px 0;
            border-bottom: 1px solid transparent;
            transition: border-color 0.25s var(--ease-out), gap 0.25s var(--ease-out);
        }
        .btn-link:hover { border-color: var(--navy-900); gap: 12px; }
        .btn-link svg { width: 14px; height: 14px; }

        /* ============================================================
           NAVIGATION
           ============================================================ */
        .nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: saturate(180%) blur(20px);
            -webkit-backdrop-filter: saturate(180%) blur(20px);
            border-bottom: 1px solid var(--line-100);
            z-index: 1000;
            transition: border-color 0.4s var(--ease-out), background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
        }
        /* Transparent state — applied when nav sits over the hero */
        .nav.nav--hero {
            background: transparent;
            border-bottom-color: transparent;
            box-shadow: none;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
        }
        .nav.nav--hero.scrolled {
            background: rgba(28, 36, 112, 0.55);
            backdrop-filter: saturate(160%) blur(20px);
            -webkit-backdrop-filter: saturate(160%) blur(20px);
            border-bottom-color: rgba(255,255,255,0.1);
        }
        .nav.scrolled {
            background: rgba(255, 255, 255, 0.96);
            border-bottom-color: var(--line-100);
            box-shadow: var(--shadow-sm);
        }
        .nav-inner {
            max-width: var(--container-wide);
            margin: 0 auto;
            padding: 10px 32px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            min-height: 72px;
        }
        .brand {
            display: inline-flex;
            align-items: center;
            text-decoration: none;
            cursor: pointer;
            transition: opacity 0.2s var(--ease-out);
            flex-shrink: 0;
        }
        .brand:hover { opacity: 0.85; }
        .brand-logo {
            display: block;
            object-fit: contain;
            object-position: left center;
            -webkit-user-drag: none;
            -webkit-user-select: none;
            user-select: none;
        }
        .brand-logo--header {
            width: 220px;
            max-width: 220px;
            height: auto;
            max-height: 52px;
        }
        .brand-logo--footer {
            height: 120px;
            width: 120px;
            max-width: 120px;
        }
        .nav-desktop {
            display: flex;
            align-items: center;
            gap: 24px;
            flex: 1;
            justify-content: flex-end;
            min-width: 0;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 2px;
        }
        .nav-links > li > a {
            display: inline-flex;
            align-items: center;
            padding: 10px 14px;
            font-size: 14.5px;
            font-weight: 500;
            color: var(--ink-700);
            border-radius: 6px;
            transition: color 0.25s var(--ease-out), background 0.25s var(--ease-out), opacity 0.25s var(--ease-out);
            cursor: pointer;
            white-space: nowrap;
        }
        .nav-links > li > a:hover,
        .nav-links > li > a:focus-visible {
            color: var(--navy-900);
            background: var(--surface-100);
            outline: none;
            box-shadow: 0 0 0 2px var(--white), 0 0 0 4px rgba(28, 36, 112, 0.2);
        }
        /* Hero-transparent nav: dark links over light hero */
        .nav.nav--hero .nav-links > li > a {
            color: var(--ink-700);
        }
        .nav.nav--hero .nav-links > li > a:hover,
        .nav.nav--hero .nav-links > li > a:focus-visible {
            color: var(--navy-900);
            background: rgba(28,36,112,0.06);
            box-shadow: 0 0 0 2px transparent, 0 0 0 4px rgba(28,36,112,0.12);
        }
        .nav.nav--hero .btn-ghost {
            color: var(--navy-900);
            border-color: rgba(28,36,112,0.25);
        }
        .nav.nav--hero .btn-ghost:hover {
            border-color: var(--navy-900);
            background: rgba(28,36,112,0.05);
        }
        .nav.nav--hero .btn-primary {
            background: var(--navy-900);
            color: var(--white);
            border: none;
        }
        .nav.nav--hero .btn-primary:hover {
            background: var(--indigo-700);
            transform: translateY(-1px);
            box-shadow: 0 8px 24px rgba(28,36,112,0.25);
        }
        .nav.nav--hero .hamburger {
            border-color: var(--line-200);
            background: rgba(255,255,255,0.8);
        }
        .nav.nav--hero .hamburger span,
        .nav.nav--hero .hamburger span::before,
        .nav.nav--hero .hamburger span::after {
            background: var(--navy-900);
        }
        .nav-actions { display: flex; align-items: center; gap: 10px; }
        .nav .btn { padding: 10px 18px; font-size: 14px; }

        .hamburger {
            display: none;
            width: 44px;
            height: 44px;
            border-radius: 10px;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--line-200);
            background: var(--white);
            transition: border-color 0.2s, background 0.2s;
            flex-shrink: 0;
        }
        .hamburger:hover { border-color: var(--navy-900); }
        .hamburger span {
            display: block;
            width: 18px;
            height: 1.6px;
            background: var(--navy-900);
            position: relative;
            transition: background 0.25s;
        }
        .hamburger span::before,
        .hamburger span::after {
            content: '';
            position: absolute;
            left: 0;
            width: 18px;
            height: 1.6px;
            background: var(--navy-900);
            transition: transform 0.3s var(--ease-out);
        }
        .hamburger span::before { top: -6px; }
        .hamburger span::after  { top: 6px; }
        .hamburger.active span { background: transparent; }
        .hamburger.active span::before { transform: translateY(6px) rotate(45deg); }
        .hamburger.active span::after  { transform: translateY(-6px) rotate(-45deg); }

        /* Mobile overlay — DOM-present but inert by default. Becomes interactive
           only when (a) viewport ≤ 900px AND (b) the .active class is set.
           The @media (min-width: 901px) rule below forces display:none on desktop. */
        .nav-mobile {
            position: fixed;
            top: var(--nav-h, 74px);
            left: 0; right: 0;
            background: var(--white);
            border-bottom: 1px solid var(--line-100);
            padding: 18px 24px 28px;
            box-shadow: var(--shadow-lg);
            z-index: 999;
            transform: translateY(-12px);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition:
                opacity 0.3s var(--ease-out),
                transform 0.3s var(--ease-out),
                visibility 0s linear 0.3s;
            max-height: calc(100dvh - var(--nav-h, 74px));
            overflow-y: auto;
            overscroll-behavior: contain;
        }
        .nav-mobile.active {
            opacity: 1;
            transform: translateY(0);
            visibility: visible;
            pointer-events: auto;
            transition:
                opacity 0.3s var(--ease-out),
                transform 0.3s var(--ease-out),
                visibility 0s linear 0s;
        }
        .nav-mobile ul { display: flex; flex-direction: column; gap: 2px; list-style: none; }
        .nav-mobile a {
            display: block;
            padding: 14px;
            font-size: 16px;
            font-weight: 500;
            color: var(--ink-900);
            border-radius: 10px;
            cursor: pointer;
            transition: background 0.2s, color 0.2s;
        }
        .nav-mobile a:hover,
        .nav-mobile a:focus-visible { background: var(--surface-100); color: var(--navy-900); outline: none; }
        .nav-mobile .btn { display: flex; width: 100%; margin-top: 16px; padding: 14px 20px; font-size: 15px; }

        .nav-backdrop {
            position: fixed;
            inset: 0;
            background: rgba(28, 36, 112, 0.45);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.3s var(--ease-out), visibility 0s linear 0.3s;
            z-index: 998;
        }
        .nav-backdrop.active {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transition: opacity 0.3s var(--ease-out), visibility 0s linear 0s;
        }

        body.nav-open { overflow: hidden; }

        /* Hard split — guarantees desktop & mobile never appear simultaneously */
        @media (min-width: 901px) {
            .nav-mobile,
            .nav-backdrop { display: none !important; }
            .hamburger { display: none !important; }
        }

        /* ============================================================
           HERO
           ============================================================ */
        .hero {
            position: relative;
            padding: 168px 0 100px;
            background: linear-gradient(135deg, #FFFFFF 0%, #EEF5FF 25%, #D4E5FF 55%, #C2D8FF 80%, #D8EAFF 100%);
            color: var(--ink-900);
            overflow: hidden;
            isolation: isolate;
        }
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 55% 50% at 85% 15%, rgba(79, 107, 237, 0.18), transparent 60%),
                radial-gradient(ellipse 45% 55% at 10% 85%, rgba(28, 36, 112, 0.10), transparent 60%),
                radial-gradient(ellipse 60% 40% at 50% 50%, rgba(212, 229, 255, 0.35), transparent 70%);
            z-index: -1;
        }
        .hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(28,36,112,0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(28,36,112,0.04) 1px, transparent 1px);
            background-size: 64px 64px;
            mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 80%);
            -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 80%);
            z-index: -1;
            opacity: 1;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
            gap: clamp(40px, 6vw, 72px);
            align-items: center;
        }
        .hero-grid > * { min-width: 0; }
        .hero-content .eyebrow { margin-bottom: 28px; }
        .hero .display {
            color: var(--ink-900);
            margin-bottom: 28px;
        }
        .hero .display em {
            font-style: normal;
            color: var(--navy-900);
            font-weight: 700;
            background: linear-gradient(120deg, var(--navy-900) 0%, var(--phase-1) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-lead {
            font-size: clamp(17px, 1.4vw, 20px);
            line-height: 1.6;
            color: var(--ink-500);
            max-width: 580px;
            margin-bottom: 40px;
            font-weight: 400;
        }
        .hero-actions {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            margin-bottom: 56px;
        }
        .hero-trust {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            padding-top: 40px;
            border-top: 1px solid var(--line-200);
            max-width: 580px;
        }
        .hero-trust .num {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 30px;
            font-weight: 700;
            color: var(--navy-900);
            letter-spacing: -0.02em;
            line-height: 1;
            margin-bottom: 8px;
        }
        .hero-trust .lbl {
            font-size: 12px;
            color: var(--ink-500);
            letter-spacing: 0.04em;
            line-height: 1.4;
        }

        /* Hero visual — fully contained, never overflows its column */
        .hero-visual {
            position: relative;
            aspect-ratio: 1 / 1;
            width: 100%;
            max-width: 520px;
            margin-left: auto;
            margin-right: 0;
            contain: layout paint style;
            overflow: hidden;
            isolation: isolate;
        }
        .hv-panel {
            position: absolute;
            background: rgba(22, 30, 100, 0.91);
            border: 1px solid rgba(255,255,255,0.10);
            border-radius: var(--radius-lg);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
        }
        .hv-main {
            inset: 6% 4% 14% 4%;
            padding: clamp(20px, 2.2vw, 28px);
            display: flex;
            flex-direction: column;
            gap: 16px;
            box-shadow: 0 32px 64px rgba(28,36,112,0.22), 0 8px 24px rgba(28,36,112,0.12);
        }
        .hv-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 16px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }
        .hv-header .dot { width: 8px; height: 8px; border-radius: 50%; background: #5eead4; box-shadow: 0 0 10px rgba(94, 234, 212, 0.6); }
        .hv-label { font-size: 11px; color: var(--lavender); letter-spacing: 0.08em; text-transform: uppercase; }
        .hv-title { font-size: 13px; color: var(--white); font-weight: 600; }
        .hv-rows { display: flex; flex-direction: column; gap: 12px; }
        .hv-row {
            display: grid;
            grid-template-columns: 1fr auto;
            align-items: center;
            gap: 12px;
            padding: 12px 14px;
            background: rgba(255,255,255,0.03);
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.06);
        }
        .hv-row-left { display: flex; align-items: center; gap: 12px; }
        .hv-icon {
            width: 28px; height: 28px;
            border-radius: 6px;
            background: rgba(134, 134, 172, 0.18);
            display: grid; place-items: center;
            color: var(--lavender);
        }
        .hv-icon svg { width: 14px; height: 14px; }
        .hv-row-title { font-size: 12.5px; color: var(--white); font-weight: 500; }
        .hv-row-meta { font-size: 11px; color: var(--lavender); }
        .hv-bar {
            width: 60px; height: 4px;
            background: rgba(255,255,255,0.08);
            border-radius: 4px;
            overflow: hidden;
            position: relative;
        }
        .hv-bar::after {
            content: '';
            position: absolute;
            top: 0; left: 0; bottom: 0;
            background: linear-gradient(90deg, var(--lavender), var(--white));
            border-radius: 4px;
            animation: barFill 2.4s var(--ease-out) forwards;
        }
        .hv-bar.b1::after { width: 0; animation-delay: 0.3s; --w: 88%; }
        .hv-bar.b2::after { width: 0; animation-delay: 0.5s; --w: 64%; }
        .hv-bar.b3::after { width: 0; animation-delay: 0.7s; --w: 92%; }

        .hv-aside {
            top: 2%;
            right: 2%;
            width: clamp(130px, 36%, 190px);
            max-width: calc(100% - 8%);
            padding: clamp(14px, 1.6vw, 20px);
            background: rgba(28, 36, 112, 0.85);
            border: 1px solid rgba(255,255,255,0.12);
            box-shadow: 0 20px 50px rgba(0,0,0,0.4);
            animation: floatY 6s var(--ease-in-out) infinite;
        }
        .hv-aside .hv-label { margin-bottom: 12px; }
        .hv-metric {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(22px, 2.4vw, 30px);
            font-weight: 700;
            color: var(--white);
            line-height: 1;
            margin-bottom: 6px;
            letter-spacing: -0.02em;
        }
        .hv-trend {
            font-size: 11px;
            color: #5eead4;
            font-weight: 500;
        }
        .hv-spark {
            margin-top: 14px;
            height: 36px;
        }

        .hv-badge {
            bottom: 4%;
            left: 2%;
            padding: 14px 18px;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            max-width: min(70%, calc(100% - 16px));
            background: rgba(28, 36, 112, 0.92);
            border: 1px solid rgba(255,255,255,0.12);
            animation: floatY 7s var(--ease-in-out) infinite reverse;
        }
        .hv-badge-icon {
            width: 36px; height: 36px;
            border-radius: 8px;
            background: var(--blue-purple);
            display: grid; place-items: center;
            color: var(--white);
        }
        .hv-badge-text { display: flex; flex-direction: column; }
        .hv-badge-title { font-size: 12px; color: var(--white); font-weight: 600; }
        .hv-badge-sub { font-size: 11px; color: var(--lavender); }

        /* ============================================================
           SERVICES
           ============================================================ */
        .services {
            background: var(--white);
        }
        .services-head {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: end;
            margin-bottom: 64px;
        }
        .services-head .lead { max-width: 520px; }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            border-top: 1px solid var(--line-100);
            border-left: 1px solid var(--line-100);
        }
        /* 7 cards in a 4-col grid: last card in the 3rd row stays left-aligned */
        .services-grid .service-card:last-child:nth-child(4n+3) {
            grid-column: span 1;
        }
        .service-card {
            position: relative;
            border-right: 1px solid var(--line-100);
            border-bottom: 1px solid var(--line-100);
            background: var(--white);
            transition: background 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out);
            cursor: pointer;
            perspective: 1400px;
            min-height: 360px;
        }
        .service-card:not(.flipped):hover {
            background: var(--surface-50);
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        .service-card:not(.flipped):hover .service-arrow { opacity: 1; transform: translate(0,0); }
        .service-card:not(.flipped):hover .service-icon {
            background: var(--navy-900);
            color: var(--white);
        }

        .service-num {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 12px;
            font-weight: 600;
            color: var(--lavender);
            letter-spacing: 0.06em;
        }
        .service-icon {
            width: 44px; height: 44px;
            border-radius: 10px;
            background: var(--surface-100);
            display: grid; place-items: center;
            color: var(--navy-900);
            margin-top: 8px;
            transition: background 0.3s, color 0.3s;
        }
        .service-icon svg { width: 22px; height: 22px; }
        .service-card h3 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: var(--ink-900);
            letter-spacing: -0.015em;
            line-height: 1.3;
        }
        .service-card p {
            font-size: 14.5px;
            line-height: 1.6;
            color: var(--ink-500);
            margin-bottom: auto;
        }
        .service-arrow {
            align-self: flex-start;
            color: var(--navy-900);
            opacity: 0;
            transform: translate(-6px, 0);
            transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
        }
        .service-arrow svg { width: 18px; height: 18px; }

        /* ============================================================
           CARD FLIP SYSTEM (service-card + tool-card)
           ============================================================ */
        .flip-inner {
            position: relative;
            width: 100%;
            min-height: inherit;
            transform-style: preserve-3d;
            transition: transform 0.68s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .service-card.flipped .flip-inner,
        .tool-card.flipped .flip-inner {
            transform: rotateY(180deg);
        }
        .flip-front,
        .flip-back {
            position: absolute;
            inset: 0;
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
            display: flex;
            flex-direction: column;
        }
        .flip-front {
            padding: 36px 32px;
            gap: 16px;
            position: relative;
        }
        .flip-front::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--navy-900), var(--blue-purple));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s var(--ease-out);
        }
        .service-card:hover .flip-front::before,
        .service-card.flipped .flip-front::before { transform: scaleX(1); }

        .flip-back {
            transform: rotateY(180deg);
            background: var(--navy-900);
            border-radius: 0;
            padding: 28px 28px 32px;
            overflow: hidden;
            gap: 0;
        }
        .flip-back::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--blue-purple), var(--lavender));
        }

        /* Flip-back interior elements */
        .fb-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 14px;
        }
        .fb-num {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.1em;
            color: var(--lavender);
            text-transform: uppercase;
        }
        .fb-close {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 50%;
            width: 26px; height: 26px;
            display: grid; place-items: center;
            cursor: pointer;
            color: rgba(255,255,255,0.6);
            transition: background 0.2s, color 0.2s;
            flex-shrink: 0;
        }
        .fb-close:hover { background: rgba(255,255,255,0.18); color: var(--white); }
        .fb-close svg { width: 12px; height: 12px; }
        .fb-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 16px;
            font-weight: 700;
            color: var(--white);
            letter-spacing: -0.01em;
            line-height: 1.25;
            margin-bottom: 14px;
        }
        .fb-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 7px;
            flex: 1;
            margin-bottom: 16px;
        }
        .fb-list li {
            display: flex;
            align-items: flex-start;
            gap: 9px;
            font-size: 12.5px;
            line-height: 1.45;
            color: rgba(255,255,255,0.80);
        }
        .fb-list li::before {
            content: '';
            display: inline-block;
            width: 4px; height: 4px;
            background: var(--lavender);
            border-radius: 50%;
            margin-top: 6px;
            flex-shrink: 0;
        }
        .fb-cta {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            font-weight: 600;
            color: var(--lavender-soft);
            text-decoration: none;
            cursor: pointer;
            transition: color 0.2s, gap 0.2s;
            padding-top: 14px;
            border-top: 1px solid rgba(255,255,255,0.10);
            margin-top: auto;
            letter-spacing: 0.02em;
        }
        .fb-cta:hover { color: var(--white); gap: 9px; }
        .fb-cta svg { width: 13px; height: 13px; flex-shrink: 0; }

        /* Flip hint — visible on card hover */
        .flip-hint {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 11px;
            color: var(--ink-300);
            margin-top: auto;
            padding-top: 14px;
            border-top: 1px solid var(--line-100);
            letter-spacing: 0.04em;
            opacity: 0;
            transition: opacity 0.25s, color 0.25s;
            user-select: none;
        }
        .service-card:hover .flip-hint { opacity: 1; color: var(--blue-purple); }
        .tool-card:hover .flip-hint { opacity: 1; color: var(--tool-color, var(--blue-purple)); }
        .flip-hint svg { width: 11px; height: 11px; }

        /* Tool-card flip tweaks */
        .tool-card {
            position: relative;
            border: 1px solid var(--line-100);
            border-radius: var(--radius-lg);
            background: var(--white);
            overflow: hidden;
            cursor: pointer;
            perspective: 1400px;
            min-height: 370px;
            transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out);
        }
        .tool-card:not(.flipped):hover {
            border-color: var(--line-200);
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }
        .tool-card .flip-front {
            padding: 28px 24px 24px;
            gap: 10px;
        }
        .tool-card .flip-front::before {
            height: 3px;
            background: var(--tool-color, var(--navy-900));
        }
        .tool-card:hover .flip-front::before,
        .tool-card.flipped .flip-front::before { transform: scaleX(1); }
        .tool-card .flip-back {
            background: rgba(18, 24, 80, 0.97);
            border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        }
        .tool-card .flip-back::before {
            background: var(--tool-color, var(--blue-purple));
        }
        .tool-card .fb-num { color: var(--tool-color, var(--lavender)); }

        /* ============================================================
           ABOUT
           ============================================================ */
        .about {
            background: var(--surface-50);
            position: relative;
            overflow: hidden;
        }
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
        }
        .about-left .h2 { margin-top: 16px; margin-bottom: 32px; }
        .about-left p {
            color: var(--ink-500);
            font-size: 15.5px;
            line-height: 1.75;
            margin-bottom: 22px;
            max-width: none;
        }
        .about-left p:last-of-type { margin-bottom: 0; }
        .about-actions {
            display: flex;
            gap: 24px;
            margin-top: 40px;
            flex-wrap: wrap;
            padding-top: 32px;
            border-top: 1px solid var(--line-100);
        }

        .about-visual {
            position: sticky;
            top: calc(var(--scroll-offset, 176px) + 24px);
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto auto;
            gap: 18px;
            align-self: start;
        }
        .av-card {
            background: var(--white);
            border: 1px solid var(--line-100);
            border-radius: var(--radius-lg);
            padding: 28px;
            box-shadow: var(--shadow-md);
            transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
        }
        .av-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
        .av-card .stat-num {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(40px, 4vw, 56px);
            font-weight: 700;
            color: var(--navy-900);
            line-height: 1;
            letter-spacing: -0.03em;
            margin-bottom: 12px;
        }
        .av-card .stat-num sup { font-size: 0.45em; vertical-align: top; margin-left: 4px; color: var(--blue-purple); }
        .av-card .stat-label {
            font-size: 13px;
            color: var(--ink-500);
            font-weight: 500;
            line-height: 1.5;
        }
        .av-card.dark {
            background: var(--navy-900);
            border-color: var(--navy-900);
            grid-column: span 2;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            color: var(--white);
        }
        .av-card.dark .stat-num { color: var(--white); }
        .av-card.dark .stat-num sup { color: var(--lavender); }
        .av-card.dark .stat-label { color: var(--lavender-soft); }
        .av-card.dark .stat-block { flex: 1; }
        .av-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.12); }

        /* ============================================================
           INDUSTRIES
           ============================================================ */
        .industries {
            background: var(--white);
        }
        .industries-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .industry-card {
            position: relative;
            background: var(--surface-50);
            border: 1px solid var(--line-100);
            border-radius: var(--radius-lg);
            padding: 36px 32px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            min-height: 280px;
            transition: all 0.4s var(--ease-out);
            overflow: hidden;
            cursor: pointer;
        }
        .industry-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--navy-900) 0%, var(--indigo-700) 100%);
            opacity: 0;
            transition: opacity 0.4s var(--ease-out);
            z-index: 0;
        }
        .industry-card > * { position: relative; z-index: 1; }
        .industry-card:hover {
            transform: translateY(-4px);
            border-color: transparent;
            box-shadow: var(--shadow-lg);
        }
        .industry-card:hover::after { opacity: 1; }
        .industry-card:hover .industry-icon-wrap { background: rgba(255,255,255,0.1); color: var(--white); }
        .industry-card:hover .industry-title,
        .industry-card:hover .industry-desc,
        .industry-card:hover .industry-num,
        .industry-card:hover .industry-link { color: var(--white); }
        .industry-card:hover .industry-link svg { color: var(--white); }

        .industry-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .industry-icon-wrap {
            width: 52px; height: 52px;
            border-radius: 12px;
            background: var(--white);
            border: 1px solid var(--line-100);
            display: grid; place-items: center;
            color: var(--navy-900);
            transition: all 0.4s var(--ease-out);
        }
        .industry-icon-wrap svg { width: 26px; height: 26px; }
        .industry-num {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 13px;
            font-weight: 600;
            color: var(--lavender);
            letter-spacing: 0.06em;
            font-variant-numeric: tabular-nums;
            transition: color 0.4s var(--ease-out);
            display: inline-flex;
            align-items: center;
            gap: 0.45em;
            white-space: nowrap;
        }
        .industry-num-val {
            font-weight: 700;
            letter-spacing: 0.02em;
        }
        .industry-num-sep {
            font-weight: 400;
            opacity: 0.5;
            line-height: 1;
        }
        .industry-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 22px;
            font-weight: 700;
            color: var(--ink-900);
            letter-spacing: -0.02em;
            transition: color 0.4s var(--ease-out);
        }
        .industry-desc {
            font-size: 14.5px;
            line-height: 1.6;
            color: var(--ink-500);
            margin-top: -4px;
            margin-bottom: auto;
            transition: color 0.4s var(--ease-out);
        }
        .industry-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            color: var(--navy-900);
            transition: color 0.4s var(--ease-out);
        }
        .industry-link svg { width: 14px; height: 14px; transition: transform 0.25s var(--ease-out); }
        .industry-card:hover .industry-link svg { transform: translateX(3px); }

        /* ============================================================
           SAP DEADLINE — premium dark advisory band
           ============================================================ */
        .deadline {
            background: linear-gradient(135deg, #FFFFFF 0%, #EEF5FF 25%, #D4E5FF 55%, #C2D8FF 80%, #D8EAFF 100%);
            color: var(--ink-900);
            position: relative;
            overflow: hidden;
            isolation: isolate;
        }
        .deadline::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 55% 50% at 90% 10%, rgba(79, 107, 237, 0.14), transparent 60%),
                radial-gradient(ellipse 45% 55% at 5% 90%, rgba(28, 36, 112, 0.08), transparent 60%);
            z-index: -1;
        }
        .deadline::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(28,36,112,0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(28,36,112,0.04) 1px, transparent 1px);
            background-size: 64px 64px;
            mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
            -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
            z-index: -1;
        }

        .deadline-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 80px;
            align-items: center;
        }
        .deadline-left .h2 { color: var(--ink-900); margin-top: 16px; margin-bottom: 28px; }
        .deadline-left .lead { color: var(--ink-500); margin-bottom: 36px; max-width: 580px; }

        .deadline-meta {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            padding-top: 36px;
            border-top: 1px solid var(--line-200);
        }
        .deadline-meta .num {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--navy-900);
            letter-spacing: -0.02em;
            line-height: 1;
            margin-bottom: 8px;
        }
        .deadline-meta .lbl {
            font-size: 12.5px;
            color: var(--ink-500);
            line-height: 1.5;
        }

        .deadline-card {
            background: var(--white);
            border: 1px solid var(--line-200);
            box-shadow: var(--shadow-lg);
            border-radius: var(--radius-lg);
            padding: 36px;
        }
        .deadline-card .eyebrow { margin-bottom: 24px; }
        .countdown {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
            margin-bottom: 32px;
        }
        .cd-cell {
            background: var(--surface-100);
            border: 1px solid var(--line-100);
            border-radius: 10px;
            padding: 18px 12px;
            text-align: center;
        }
        .cd-num {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(24px, 2.6vw, 36px);
            font-weight: 700;
            color: var(--navy-900);
            letter-spacing: -0.02em;
            line-height: 1;
            margin-bottom: 8px;
            font-variant-numeric: tabular-nums;
        }
        .cd-lbl {
            font-size: 10.5px;
            color: var(--ink-400);
            text-transform: uppercase;
            letter-spacing: 0.12em;
        }
        .deadline-card .btn { width: 100%; }

        .deadline-target {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0;
            border-top: 1px solid var(--line-100);
            margin-top: 8px;
            margin-bottom: 8px;
        }
        .deadline-target .k { font-size: 13px; color: var(--ink-400); }
        .deadline-target .v { font-size: 13px; color: var(--ink-900); font-weight: 600; }

        /* ============================================================
           TOOLS & TECHNOLOGY
           ============================================================ */
        .tools {
            background: var(--surface-50);
            border-top: 1px solid var(--line-100);
        }
        .tools-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .tool-cat-badge {
            display: inline-flex;
            align-items: center;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.11em;
            text-transform: uppercase;
            color: var(--tool-color, var(--blue-purple));
            margin-bottom: 2px;
        }
        .tool-icon-wrap {
            width: 40px; height: 40px;
            border-radius: 10px;
            background: color-mix(in srgb, var(--tool-color, var(--navy-900)) 10%, transparent);
            display: grid; place-items: center;
            color: var(--tool-color, var(--navy-900));
            transition: background 0.3s, color 0.3s;
            margin-bottom: 4px;
        }
        .tool-card:not(.flipped):hover .tool-icon-wrap {
            background: var(--tool-color, var(--navy-900));
            color: var(--white);
        }
        .tool-icon-wrap svg { width: 20px; height: 20px; }
        .tool-name {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 16px;
            font-weight: 700;
            color: var(--ink-900);
            letter-spacing: -0.015em;
            line-height: 1.25;
        }
        .tool-desc {
            font-size: 13px;
            line-height: 1.58;
            color: var(--ink-500);
            margin-top: 2px;
        }

        /* ============================================================
           METHODOLOGY — horizontal journey
           ============================================================ */

        /* Phase colour tokens */
        :root {
            --phase-1: #4F6BED;   /* Royal Blue    h≈225 */
            --phase-2: #C026D3;   /* Fuchsia       h≈292 — replaces Teal (too close to Forest Green) */
            --phase-3: #7C5CFC;   /* Violet        h≈256 */
            --phase-4: #D97706;   /* Amber         h≈38  */
            --phase-5: #E85D75;   /* Rose          h≈350 */
            --phase-6: #16A34A;   /* Forest Green  h≈142 */
            --phase-7: #0891B2;   /* Cerulean      h≈197 */
        }

        .methodology {
            background: var(--surface-50);
            overflow: hidden;
        }

        /* Premium section-header accent line */
        .methodology .section-header .eyebrow {
            color: var(--phase-1);
        }
        .methodology .section-header .eyebrow::before {
            background: var(--phase-1);
        }
        .methodology .section-header .h2 {
            background: linear-gradient(120deg, var(--navy-900) 0%, var(--phase-1) 60%, var(--phase-3) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .method-track {
            position: relative;
            padding-top: 24px;
        }
        /* Baseline track line */
        .method-track::before {
            content: '';
            position: absolute;
            top: 56px;
            left: 0; right: 0;
            height: 2px;
            background: var(--line-100);
            border-radius: 2px;
        }
        /* Progress line — multicolour gradient */
        .method-track::after {
            content: '';
            position: absolute;
            top: 56px;
            left: 0;
            height: 3px;
            border-radius: 3px;
            width: var(--progress, 0%);
            background: linear-gradient(
                90deg,
                var(--phase-1)   0%,
                var(--phase-2)  17%,
                var(--phase-3)  33%,
                var(--phase-4)  50%,
                var(--phase-5)  67%,
                var(--phase-6)  83%,
                var(--phase-7) 100%
            );
            transition: width 1.6s var(--ease-out);
        }
        .method-steps {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 0;
            position: relative;
        }
        .m-step {
            position: relative;
            padding: 0 14px;
            text-align: left;
            cursor: pointer;
            transition: opacity 0.3s var(--ease-out);
        }
        .m-step:not(.active):hover { opacity: 0.85; }

        /* Per-phase colour binding */
        .m-step[data-phase="1"] { --phase-color: var(--phase-1); }
        .m-step[data-phase="2"] { --phase-color: var(--phase-2); }
        .m-step[data-phase="3"] { --phase-color: var(--phase-3); }
        .m-step[data-phase="4"] { --phase-color: var(--phase-4); }
        .m-step[data-phase="5"] { --phase-color: var(--phase-5); }
        .m-step[data-phase="6"] { --phase-color: var(--phase-6); }
        .m-step[data-phase="7"] { --phase-color: var(--phase-7); }

        .m-step-marker {
            position: relative;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: var(--white);
            border: 2px solid var(--line-200);
            margin: 47px 0 26px;
            transition: all 0.4s var(--ease-out);
            z-index: 2;
        }
        /* Active marker uses phase colour */
        .m-step.active .m-step-marker {
            border-color: var(--phase-color, var(--navy-900));
            background: var(--phase-color, var(--navy-900));
            box-shadow: 0 0 0 6px color-mix(in srgb, var(--phase-color, var(--navy-900)) 15%, transparent);
            transform: scale(1.15);
        }
        .m-step-num {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 11px;
            font-weight: 700;
            color: var(--phase-color, var(--lavender));
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 8px;
        }
        .m-step-name {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 15px;
            font-weight: 700;
            color: var(--ink-900);
            letter-spacing: -0.015em;
            line-height: 1.3;
            margin-bottom: 10px;
            transition: color 0.3s var(--ease-out);
        }
        /* Active step name takes phase colour */
        .m-step.active .m-step-name {
            color: var(--phase-color, var(--navy-900));
        }
        .m-step-desc {
            font-size: 13px;
            line-height: 1.55;
            color: var(--ink-400);
        }

        /* ============================================================
           CONTACT — executive consultation
           ============================================================ */
        .contact {
            background: var(--surface-50);
        }
        .contact-grid {
            display: grid;
            grid-template-columns: 0.85fr 1.15fr;
            gap: 80px;
            align-items: start;
        }
        .contact-left .h2 { margin-top: 16px; margin-bottom: 28px; }
        .contact-left .lead { margin-bottom: 48px; max-width: 460px; }

        .office-card {
            background: var(--white);
            border: 1px solid var(--line-100);
            border-radius: var(--radius-lg);
            padding: 28px;
            margin-bottom: 16px;
            transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
        }
        .office-card:hover { border-color: var(--line-200); box-shadow: var(--shadow-md); }
        .office-head {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 18px;
        }
        .office-pin {
            width: 36px; height: 36px;
            border-radius: 10px;
            background: var(--surface-100);
            display: grid; place-items: center;
            color: var(--navy-900);
        }
        .office-pin svg { width: 18px; height: 18px; }
        .office-head h4 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 16px;
            font-weight: 700;
            color: var(--ink-900);
            letter-spacing: -0.01em;
        }
        .office-head .tag {
            margin-left: auto;
            font-size: 11px;
            padding: 4px 10px;
            background: var(--surface-100);
            border-radius: 999px;
            color: var(--ink-500);
            font-weight: 500;
        }
        .office-body { display: grid; gap: 8px; font-size: 14px; color: var(--ink-500); line-height: 1.55; }
        .office-body a { color: var(--ink-700); border-bottom: 1px solid transparent; transition: border-color 0.2s; }
        .office-body a:hover { border-color: var(--ink-700); }

        .form-card {
            position: relative;
            background: var(--white);
            border: 1px solid var(--line-100);
            border-radius: var(--radius-lg);
            padding: 40px;
            box-shadow: var(--shadow-md);
        }
        .form-honeypot {
            position: absolute;
            left: -9999px;
            width: 1px;
            height: 1px;
            overflow: hidden;
        }
        .form-head { margin-bottom: 28px; }
        .form-head h3 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 22px;
            font-weight: 700;
            color: var(--ink-900);
            letter-spacing: -0.02em;
            margin-bottom: 8px;
        }
        .form-head p { font-size: 14px; color: var(--ink-500); }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
            margin-bottom: 18px;
        }
        .form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
        .form-row .form-group { margin-bottom: 0; }
        .form-group label {
            font-size: 12.5px;
            font-weight: 600;
            color: var(--ink-700);
            letter-spacing: 0.01em;
        }
        .form-group label span { color: var(--blue-purple); }
        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 14px 16px;
            background: var(--white);
            border: 1px solid var(--line-200);
            border-radius: 8px;
            color: var(--ink-900);
            font-family: 'Inter', sans-serif;
            font-size: 14.5px;
            transition: border-color 0.2s, box-shadow 0.2s;
        }
        .form-group input:hover,
        .form-group select:hover,
        .form-group textarea:hover { border-color: var(--lavender); }
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--navy-900);
            box-shadow: 0 0 0 4px rgba(28, 36, 112, 0.08);
        }
        .form-group textarea { resize: vertical; min-height: 120px; line-height: 1.55; }
        .form-group select {
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='%235A5A7A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='m4 6 4 4 4-4'/></svg>");
            background-repeat: no-repeat;
            background-position: right 14px center;
            background-size: 16px;
            padding-right: 40px;
        }

        .form-foot {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            margin-top: 8px;
            flex-wrap: wrap;
        }
        .form-foot small { font-size: 12.5px; color: var(--ink-400); max-width: 280px; line-height: 1.5; }

        /* Inline form status (replaces alert popups) */
        .form-status {
            display: none;
            align-items: flex-start;
            gap: 12px;
            padding: 16px 18px;
            border-radius: 10px;
            font-size: 14px;
            line-height: 1.55;
            margin-bottom: 20px;
            border: 1px solid transparent;
        }
        .form-status.is-visible { display: flex; }
        .form-status.is-success {
            background: #ECFDF5;
            border-color: #A7F3D0;
            color: #065F46;
        }
        .form-status.is-error {
            background: #FEF2F2;
            border-color: #FECACA;
            color: #991B1B;
        }
        .form-status .fs-icon {
            flex-shrink: 0;
            width: 20px; height: 20px;
            margin-top: 1px;
        }
        .form-status .fs-body strong { display: block; font-weight: 600; margin-bottom: 2px; }

        .btn[disabled],
        .btn.is-loading {
            opacity: 0.7;
            cursor: not-allowed;
            pointer-events: none;
        }
        .btn .btn-spinner {
            width: 14px; height: 14px;
            border: 2px solid currentColor;
            border-right-color: transparent;
            border-radius: 50%;
            animation: spin 0.7s linear infinite;
            display: inline-block;
        }

        .field-error {
            display: none;
            font-size: 12.5px;
            color: #B91C1C;
            margin-top: 2px;
        }
        .form-group.has-error input,
        .form-group.has-error select,
        .form-group.has-error textarea {
            border-color: #DC2626;
            box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
        }
        .form-group.has-error .field-error { display: block; }

        /* ============================================================
           FOOTER — mega
           ============================================================ */
        .footer {
            background: linear-gradient(135deg, #FFFFFF 0%, #EEF5FF 25%, #D4E5FF 55%, #C2D8FF 80%, #D8EAFF 100%);
            color: var(--ink-500);
            padding-top: 88px;
            position: relative;
            overflow: hidden;
        }
        .footer::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(28,36,112,0.18), transparent);
        }
        .footer-cta {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 40px;
            align-items: center;
            padding-bottom: 64px;
            border-bottom: 1px solid var(--line-200);
        }
        .footer-cta h3 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(24px, 2.6vw, 36px);
            font-weight: 700;
            color: var(--ink-900);
            letter-spacing: -0.02em;
            line-height: 1.2;
            max-width: 720px;
        }

        .footer-main {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
            gap: 48px;
            padding: 64px 0 56px;
        }
        .footer-brand .brand { margin-bottom: 28px; }
        .footer-brand p {
            font-size: 14.5px;
            line-height: 1.65;
            color: var(--ink-500);
            max-width: 320px;
            margin-bottom: 28px;
        }
        .footer-social { display: flex; gap: 10px; }
        .footer-social a {
            width: 38px; height: 38px;
            border-radius: 10px;
            display: grid; place-items: center;
            border: 1px solid var(--line-200);
            color: var(--ink-500);
            transition: all 0.2s;
        }
        .footer-social a:hover {
            background: var(--navy-900);
            color: var(--white);
            border-color: var(--navy-900);
        }
        .footer-social svg { width: 16px; height: 16px; }

        .footer-col h5 {
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            font-weight: 600;
            color: var(--ink-900);
            letter-spacing: 0.12em;
            text-transform: uppercase;
            margin-bottom: 20px;
        }
        .footer-col ul li { margin-bottom: 12px; }
        .footer-col a {
            font-size: 14px;
            color: var(--ink-500);
            transition: color 0.2s;
            cursor: pointer;
        }
        .footer-col a:hover { color: var(--navy-900); }
        .footer-col p {
            font-size: 14px;
            color: var(--ink-500);
            line-height: 1.6;
            margin-bottom: 12px;
        }
        .footer-col strong { color: var(--ink-900); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; display: block; margin-bottom: 4px; }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            padding: 28px 0;
            border-top: 1px solid var(--line-200);
            font-size: 13px;
            color: var(--ink-400);
            flex-wrap: wrap;
        }
        .footer-bottom-links { display: flex; gap: 24px; flex-wrap: wrap; }
        .footer-bottom-links a:hover { color: var(--navy-900); }