    /* ==========================================================================
    APPSTRACT DEVELOPMENT — Navbar / Hero / Footer Stylesheet
    Light-dominant theme. Navy is reserved for the hero panel and footer.
    ========================================================================== */

    /* --------------------------------------------------------------------------
    1. DESIGN TOKENS
    -------------------------------------------------------------------------- */
    :root {
    /* Light surfaces (default page) */
    --bg: #ffffff;
    --bg-soft: #f3f7fe;
    --surface: #ffffff;
    --surface-2: #eef3fc;
    --border: #e3e9f7;
    --border-strong: #cfdcf2;

    /* Ink (text on light) */
    --ink: #0a1020;
    --ink-2: #4a5568;
    --muted: #8893a8;

    /* Navy "stage" surfaces (hero panel, footer) */
    --navy-950: #00040f;
    --navy-900: #060b1f;
    --navy-800: #0d1730;
    --navy-700: #16213f;
    --on-dark: #f4f7ff;
    --on-dark-soft: rgba(244, 247, 255, 0.68);
    --on-dark-border: rgba(255, 255, 255, 0.1);
    --on-dark-surface: rgba(255, 255, 255, 0.055);

    /* Brand gradient — sampled from the Appstract mark */
    --grad-cyan: #29c6ff;
    --grad-blue: #1e8cff;
    --grad-deep: #0b3fb5;
    --brand-gradient: linear-gradient(135deg, var(--grad-cyan) 0%, var(--grad-blue) 48%, var(--grad-deep) 100%);
    --brand-gradient-soft: linear-gradient(135deg, rgba(41, 198, 255, 0.12), rgba(11, 63, 181, 0.12));

    --accent: #1e8cff;
    --accent-strong: #0b3fb5;
    --wa: #25d366;

    /* Typography */
    --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
    --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
    --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;

    /* Layout */
    --container: 1280px;
    --container-pad: clamp(1.25rem, 4.5vw, 2.75rem);
    --nav-h: 84px;

    /* Radius */
    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;
    --r-full: 999px;

    /* Shadow */
    --shadow-sm: 0 1px 2px rgba(15, 23, 55, 0.05), 0 1px 1px rgba(15, 23, 55, 0.03);
    --shadow-md: 0 10px 28px -10px rgba(20, 40, 90, 0.14), 0 2px 6px rgba(20, 40, 90, 0.05);
    --shadow-lg: 0 28px 64px -22px rgba(13, 27, 64, 0.24);
    --shadow-glow: 0 14px 36px -10px rgba(30, 140, 255, 0.45);

    /* Motion */
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --dur-fast: 0.2s;
    --dur-base: 0.45s;
    --dur-slow: 0.85s;

    /* z-index scale */
    --z-nav: 100;
    --z-mobile-menu: 90;
    --z-fab: 80;
    }

    /* --------------------------------------------------------------------------
    2. RESET & BASE
    -------------------------------------------------------------------------- */
    *,
    *::before,
    *::after {
    box-sizing: border-box;
    }

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

    body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    }

    img,
    svg {
    display: block;
    max-width: 100%;
    }

    h1, h2, h3, h4 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    color: var(--ink);
    }

    p {
    margin: 0;
    }

    a {
    color: inherit;
    text-decoration: none;
    }

    ul {
    margin: 0;
    padding: 0;
    list-style: none;
    }

    button {
    font-family: inherit;
    }

    ::selection {
    background: var(--grad-blue);
    color: #fff;
    }

    .icon-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    }

    .icon {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    }

    .skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    z-index: 1000;
    padding: 0.75rem 1.25rem;
    background: var(--navy-950);
    color: var(--on-dark);
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 0 0 var(--r-sm) 0;
    }

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

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

  .container {
    width: 100%;
    max-width: 1480px;
    margin-inline: auto;
    padding-inline: clamp(0.5rem, 2vw, 1.25rem);
  }

    /* --------------------------------------------------------------------------
    3. BUTTONS
    -------------------------------------------------------------------------- */
    .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9375rem;
    line-height: 1;
    padding: 0.8rem 1.4rem;
    border-radius: var(--r-full);
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: transform var(--dur-fast) var(--ease-spring),
                box-shadow var(--dur-base) var(--ease),
                background var(--dur-base) var(--ease),
                border-color var(--dur-base) var(--ease),
                color var(--dur-fast) var(--ease);
    }

    /* Solid brand-gradient fill, locked with background-size so it can never
    render as a flat/partial color while still allowing a hover sheen. */
    .btn--primary {
    background-image: var(--brand-gradient);
    background-color: var(--grad-blue);
    background-size: 160% 160%;
    background-position: 0% 50%;
    color: #fff;
    box-shadow: var(--shadow-glow);
    }

    .btn--primary:hover {
    background-position: 100% 50%;
    transform: translateY(-2px);
    box-shadow: 0 18px 40px -10px rgba(30, 140, 255, 0.55);
    }

    .btn--primary:active {
    transform: translateY(0);
    }

    .btn--ghost {
    background: var(--surface-2);
    color: var(--ink);
    border-color: var(--border);
    }

    .btn--ghost:hover {
    background: var(--surface);
    border-color: var(--border-strong);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    }

    .btn--outline-light {
    background: transparent;
    color: var(--on-dark);
    border-color: var(--on-dark-border);
    }

    .btn--outline-light:hover {
    background: var(--on-dark-surface);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
    }

    .btn--sm {
    padding: 0.6rem 1.1rem;
    font-size: 0.875rem;
    }

    .btn--lg {
    padding: 1rem 1.9rem;
    font-size: 1rem;
    }

    .btn--block {
    width: 100%;
    }

    .btn .icon {
    transition: transform var(--dur-base) var(--ease);
    }

    .btn--magnetic {
    will-change: transform;
    }

    /* --------------------------------------------------------------------------
    4. TYPE UTILITIES (eyebrow, gradient text)
    -------------------------------------------------------------------------- */
    .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem 0.4rem 0.6rem;
    border-radius: var(--r-full);
    background: var(--surface-2);
    border: 1px solid var(--border);
    color: var(--accent-strong);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    }

    .eyebrow--dark {
    background: var(--on-dark-surface);
    border-color: var(--on-dark-border);
    color: var(--on-dark);
    }

    .eyebrow__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-gradient);
    box-shadow: 0 0 0 0 rgba(41, 198, 255, 0.55);
    animation: pulse-dot 2.6s ease-in-out infinite;
    flex-shrink: 0;
    }

    .text-gradient {
    background: var(--brand-gradient);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    transition: background-position var(--dur-slow) var(--ease);
    }

    h1:hover .text-gradient {
    background-position: 100% 0;
    }

    /* --------------------------------------------------------------------------
    5. NAVBAR
    -------------------------------------------------------------------------- */
    .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-nav);
    padding-block: 1.1rem;
    --nav-fg: var(--on-dark);
    --nav-fg-soft: var(--on-dark-soft);
    --nav-bg: transparent;
    --nav-border: transparent;
    background: var(--nav-bg);
    border-bottom: 1px solid var(--nav-border);
    transition: background var(--dur-base) var(--ease),
                border-color var(--dur-base) var(--ease),
                padding-block var(--dur-base) var(--ease),
                box-shadow var(--dur-base) var(--ease);
    }

    .nav.is-scrolled {
    --nav-fg: var(--ink);
    --nav-fg-soft: var(--ink-2);
    --nav-bg: rgba(255, 255, 255, 0.8);
    --nav-border: var(--border);
    padding-block: 0.65rem;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    }

    .nav__inner {
    margin-top: 0.4rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    }

    .nav__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    justify-self: start;
    min-width: 0;
    }

    /* Fixed square stage for the mark — image is *contained*, never cropped or
    overflowing its rounded box, regardless of source aspect ratio. */
    .nav__mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--r-sm);
    overflow: hidden;
    background: var(--navy-950);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
    padding: 5px;
    transition: transform var(--dur-base) var(--ease-spring);
    }

    .nav__mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    }

    .nav__brand:hover .nav__mark {
    transform: rotate(-6deg) scale(1.05);
    }

    .nav__word {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.0625rem;
    letter-spacing: -0.01em;
    color: var(--nav-fg);
    white-space: nowrap;
    transition: color var(--dur-base) var(--ease);
    }

    .nav__links {
    display: none;
    align-items: center;
    gap: 2rem;
    justify-self: center;
    }

    .nav__link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--nav-fg-soft);
    padding-block: 0.25rem;
    position: relative;
    transition: color var(--dur-fast) var(--ease);
    }

    .nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -4px;
    height: 2px;
    border-radius: var(--r-full);
    background: var(--brand-gradient);
    transition: right var(--dur-base) var(--ease);
    }

    .nav__link:hover {
    color: var(--nav-fg);
    }

    .nav__link:hover::after {
    right: 0;
    }

    .nav__link.is-active {
    color: var(--grad-cyan);
    }

    .nav__link.is-active::after {
    right: 0;
    background: var(--grad-cyan);
    }

    .nav__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-self: end;
    }

    .nav__actions .btn {
    display: none;
    }

    .nav__toggle {
    position: relative;
    z-index: calc(var(--z-mobile-menu) + 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--r-sm);
    border: 1px solid var(--on-dark-border);
    background: var(--on-dark-surface);
    color: var(--nav-fg);
    cursor: pointer;
    transition: background var(--dur-fast) var(--ease),
                border-color var(--dur-fast) var(--ease),
                transform var(--dur-fast) var(--ease-spring);
    }

    .nav__toggle:active {
    transform: scale(0.93);
    }

    .nav.is-scrolled .nav__toggle {
    background: var(--surface-2);
    border-color: var(--border);
    }

    .nav__toggle .icon--close {
    display: none;
    }

    .nav.is-menu-open .nav__toggle .icon--menu {
    display: none;
    }

    .nav.is-menu-open .nav__toggle .icon--close {
    display: block;
    }

    /* Mobile menu
    Uses a scrollable column instead of a forced vertical-center so 6 links +
    actions never get squeezed or clipped off-screen on short viewports. */
    .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: var(--z-mobile-menu);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100vh;
    height: 100dvh;
    padding: calc(var(--nav-h) + 1.25rem) 1.5rem 3rem;
    background: var(--navy-950);
    background-image:
        radial-gradient(60% 50% at 85% 10%, rgba(41, 198, 255, 0.16), transparent 70%),
        radial-gradient(50% 50% at 10% 90%, rgba(11, 63, 181, 0.28), transparent 70%);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity var(--dur-base) var(--ease),
                transform var(--dur-base) var(--ease),
                visibility var(--dur-base);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    }

    .mobile-menu__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2rem, 6vh, 3rem);
    margin: auto 0;
    padding-block: 1.5rem;
    }

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

    .mobile-menu__links {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
    align-items: center;
    }

    .mobile-menu__link {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 6vw, 2.1rem);
    font-weight: 600;
    color: var(--on-dark);
    opacity: 0;
    transform: translateY(14px);
    transition: opacity var(--dur-base) var(--ease),
                transform var(--dur-base) var(--ease),
                color var(--dur-fast);
    }

    .mobile-menu.is-open .mobile-menu__link {
    opacity: 1;
    transform: translateY(0);
    }

    .mobile-menu.is-open .mobile-menu__link:nth-child(1) { transition-delay: 0.05s; }
    .mobile-menu.is-open .mobile-menu__link:nth-child(2) { transition-delay: 0.1s; }
    .mobile-menu.is-open .mobile-menu__link:nth-child(3) { transition-delay: 0.15s; }
    .mobile-menu.is-open .mobile-menu__link:nth-child(4) { transition-delay: 0.2s; }
    .mobile-menu.is-open .mobile-menu__link:nth-child(5) { transition-delay: 0.25s; }
    .mobile-menu.is-open .mobile-menu__link:nth-child(6) { transition-delay: 0.3s; }

    .mobile-menu__link:hover,
    .mobile-menu__link:active {
    color: var(--grad-cyan);
    }

    .mobile-menu__actions {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    max-width: 320px;
    width: 100%;
    margin-inline: auto;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity var(--dur-base) var(--ease) 0.32s,
                transform var(--dur-base) var(--ease) 0.32s;
    }

    .mobile-menu.is-open .mobile-menu__actions {
    opacity: 1;
    transform: translateY(0);
    }

    /* Lock background scroll behind the mobile menu without layout jump */
    body.menu-open {
    overflow: hidden;
    }

    @media (min-width: 900px) {
    .nav__links {
        display: flex;
    }
    .nav__actions .btn {
        display: inline-flex;
    }
    .nav__toggle,
    .mobile-menu {
        display: none;
    }
    }

    /* --------------------------------------------------------------------------
    6. HERO
    -------------------------------------------------------------------------- */
    .hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    background: var(--bg);
    overflow: hidden;
    }

    /* The dark "stage" panel itself never touches the viewport edge — it always
    keeps an even gutter on both sides, governed by .container's padding. */
    .hero__container {
    position: relative;
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(120% 100% at 85% -10%, rgba(41, 198, 255, 0.22), transparent 55%),
        radial-gradient(80% 80% at 5% 110%, rgba(11, 63, 181, 0.35), transparent 60%),
        linear-gradient(165deg, var(--navy-900), var(--navy-950) 70%);
    box-shadow: var(--shadow-lg);
    padding: clamp(5.5rem, 24vw, 9.5rem) clamp(1.25rem, 5vw, 3.5rem) clamp(2.5rem, 7vw, 5rem);
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2.25rem, 6vw, 4rem);
    }

    @media (min-width: 600px) {
    .hero__container {
        border-radius: var(--r-xl);
    }
    }

    .hero__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.9;
    z-index: 0;
    }

    .hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    z-index: 0;
    pointer-events: none;
    }

    .hero__glow--a {
    width: 38vw;
    height: 38vw;
    max-width: 460px;
    max-height: 460px;
    top: -10%;
    right: -8%;
    background: radial-gradient(circle, rgba(41, 198, 255, 0.4), transparent 70%);
    animation: drift-a 22s ease-in-out infinite alternate;
    }

    .hero__glow--b {
    width: 32vw;
    height: 32vw;
    max-width: 400px;
    max-height: 400px;
    bottom: -14%;
    left: -6%;
    background: radial-gradient(circle, rgba(11, 63, 181, 0.55), transparent 70%);
    animation: drift-b 26s ease-in-out infinite alternate;
    }

    .hero__container > .hero__content,
    .hero__container > .hero__visual {
    position: relative;
    z-index: 1;
    }

    .hero__content {
    max-width: 620px;
    text-align: center;
    margin-inline: auto;
    }

    .hero__title {
    font-size: clamp(1.95rem, 8vw, 4.25rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--on-dark);
    margin: 1rem 0 1rem;
    }

    .hero__subtitle {
    color: var(--on-dark-soft);
    font-size: clamp(0.9375rem, 2.4vw, 1.125rem);
    line-height: 1.75;
    max-width: 46ch;
    margin-inline: auto;
    }

    .hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    margin-top: 1.85rem;
    }

    /* Visual: badge + orbits + floating chips */
    .hero__visual {
    position: relative;
    justify-self: center;
    width: 100%;
    max-width: 230px;
    aspect-ratio: 1;
    margin-inline: auto;
    }

    @media (min-width: 480px) {
    .hero__visual {
        max-width: 320px;
    }
    }

    .hero__badge {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 56%;
    height: 56%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: var(--r-lg);
    background: var(--on-dark-surface);
    border: 1px solid var(--on-dark-border);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(41, 198, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    animation: badge-float 7s ease-in-out infinite;
    }

    .hero__badge img {
    width: 62%;
    height: 62%;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(41, 198, 255, 0.35));
    }

    .hero__orbit {
    position: absolute;
    inset: 0;
    margin: auto;
    border-radius: 50%;
    border: 1px dashed var(--on-dark-border);
    top: 50%;
    left: 50%;
    }

    .hero__orbit--1 {
    width: 82%;
    height: 82%;
    transform: translate(-50%, -50%);
    animation: spin-cw 50s linear infinite;
    }

    .hero__orbit--2 {
    width: 100%;
    height: 100%;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.06);
    transform: translate(-50%, -50%);
    animation: spin-ccw 70s linear infinite;
    }

    /* Chips sit fully inside the visual box on mobile (no negative offsets) so
    they never crowd or clip against the hero panel's edge. They reclaim the
    roomier floating position once the panel is wide enough to afford it. */
    .hero__chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.75rem;
    border-radius: var(--r-full);
    background: var(--on-dark-surface);
    border: 1px solid var(--on-dark-border);
    backdrop-filter: blur(10px);
    color: var(--on-dark);
    font-size: 0.6875rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
    max-width: calc(100% - 0.5rem);
    }

    .hero__chip .icon {
    width: 13px;
    height: 13px;
    color: var(--grad-cyan);
    }

    .hero__chip--1 {
    top: 2%;
    left: 0;
    animation: float-chip 6s ease-in-out infinite;
    }

    .hero__chip--2 {
    bottom: 6%;
    right: 0;
    animation: float-chip 7s ease-in-out infinite 1.2s;
    }

    .hero__chip--3 {
    bottom: 42%;
    left: -43%;
    animation: float-chip 6.5s ease-in-out infinite 0.6s;
    }

    .hero__chip--3 {
    bottom: 42%;
    left: -43%;
    animation: float-chip 6.5s ease-in-out infinite 0.6s;
    }
    .hero__chip--4 {
    bottom: 42%;
    left: -43%;
    animation: float-chip 6.5s ease-in-out infinite 0.6s;
    }
    @media (min-width: 480px) {
    .hero__chip {
        gap: 0.5rem;
        padding: 0.55rem 0.95rem;
        font-size: 0.8125rem;
        max-width: calc(100% + 2.5rem);
    }

    .hero__chip .icon {
        width: 16px;
        height: 16px;
    }

    .hero__chip--1 {
        top: 4%;
        left: -2%;
    }

    .hero__chip--2 {
        bottom: 16%;
        right: -6%;
    }

    .hero__chip--3 {
        bottom: -4%;
        left: 4%;
    }
    }

    /* Scroll cue */
    .hero__scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    margin-top: clamp(2rem, 4vw, 3rem);
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    }

    .hero__scroll-line {
    position: relative;
    width: 1px;
    height: 42px;
    background: linear-gradient(to bottom, var(--border-strong), transparent);
    overflow: hidden;
    }

    .hero__scroll-line::after {
    content: "";
    position: absolute;
    left: 0;
    top: -20px;
    width: 1px;
    height: 20px;
    background: var(--brand-gradient);
    animation: scroll-cue 2.2s ease-in-out infinite;
    }

    /* From tablet up: copy on the left, visual on the right, both held inside
    the panel's gutter — never edge-to-edge, never off-center. */
    @media (min-width: 860px) {
    .hero__container {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
        align-items: center;
        text-align: left;
    }

    .hero__content {
        text-align: left;
        margin-inline: 0;
    }

    .hero__subtitle {
        margin-inline: 0;
    }

    .hero__actions {
        justify-content: flex-start;
    }

    .hero__visual {
        max-width: 380px;
        margin-inline: auto 0;
    }
    }

    @media (min-width: 1180px) {
    .hero__container {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    }
    }

    /* --------------------------------------------------------------------------
    7. FOOTER
    -------------------------------------------------------------------------- */
    .footer {
    background: var(--navy-950);
    color: var(--on-dark);
    padding-top: clamp(3.5rem, 7vw, 5.5rem);
    }

    .footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.75rem;
    padding-bottom: clamp(2.5rem, 5vw, 4rem);
    border-bottom: 1px solid var(--on-dark-border);
    }

    .footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1.25rem;
    }

    .footer__brand .nav__word {
    color: var(--on-dark);
    }

    .footer__about {
    color: var(--on-dark-soft);
    font-size: 0.9375rem;
    line-height: 1.8;
    max-width: 36ch;
    margin-bottom: 1.5rem;
    }

    .footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    }

    .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--on-dark-surface);
    border: 1px solid var(--on-dark-border);
    color: var(--on-dark);
    transition: background var(--dur-fast) var(--ease),
                border-color var(--dur-fast) var(--ease),
                transform var(--dur-fast) var(--ease-spring),
                color var(--dur-fast) var(--ease);
    }

    .social-icon:hover {
    background: var(--brand-gradient);
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    }

    .footer__title {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--on-dark);
    margin-bottom: 1.25rem;
    }

    .footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    }

    .footer__links a {
    display: inline-block;
    color: var(--on-dark-soft);
    font-size: 0.9375rem;
    transition: color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
    }

    .footer__links a:hover {
    color: var(--on-dark);
    transform: translateX(3px);
    }

    .footer__contact {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    }

    .footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    color: var(--on-dark-soft);
    font-size: 0.9375rem;
    line-height: 1.5;
    }

    .footer__contact .icon {
    color: var(--grad-cyan);
    margin-top: 0.15rem;
    }

    .footer__contact a {
    color: inherit;
    transition: color var(--dur-fast) var(--ease);
    }

    .footer__contact a:hover {
    color: var(--on-dark);
    }

    .footer__bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    padding-block: 1.75rem;
    font-size: 0.8125rem;
    color: var(--on-dark-soft);
    text-align: center;
    }

    .footer__legal {
    display: flex;
    gap: 1.5rem;
    }

    .footer__legal a {
    transition: color var(--dur-fast) var(--ease);
    }

    .footer__legal a:hover {
    color: var(--on-dark);
    }

    @media (min-width: 640px) {
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer__col--brand {
        grid-column: 1 / -1;
    }
    .footer__bottom {
        flex-direction: row;
        text-align: left;
    }
    }

    @media (min-width: 1100px) {
    .footer__grid {
        grid-template-columns: 1.4fr 1fr 1fr 1fr;
    }
    .footer__col--brand {
        grid-column: auto;
    }
    }

    /* --------------------------------------------------------------------------
    8. FAB (WhatsApp)
    -------------------------------------------------------------------------- */
    .fab-whatsapp {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: var(--z-fab);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--wa);
    color: #fff;
    box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.55);
    transition: transform var(--dur-fast) var(--ease-spring), box-shadow var(--dur-fast) var(--ease);
    }

    .fab-whatsapp::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--wa);
    opacity: 0.55;
    animation: fab-pulse 2.6s ease-out infinite;
    }

    .fab-whatsapp:hover {
    transform: translateY(-3px) scale(1.06);
    box-shadow: 0 16px 36px -8px rgba(37, 211, 102, 0.6);
    }

    @media (min-width: 640px) {
    .fab-whatsapp {
        right: 1.5rem;
        bottom: 1.5rem;
        width: 58px;
        height: 58px;
    }
    }

    /* --------------------------------------------------------------------------
    9. SCROLL-REVEAL UTILITY
    -------------------------------------------------------------------------- */
    html.js [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
    }

    html.js [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
    }

    html.js [data-reveal-delay="1"] { transition-delay: 0.08s; }
    html.js [data-reveal-delay="2"] { transition-delay: 0.16s; }
    html.js [data-reveal-delay="3"] { transition-delay: 0.24s; }

    /* --------------------------------------------------------------------------
    10. KEYFRAME ANIMATIONS
    -------------------------------------------------------------------------- */
    @keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(41, 198, 255, 0.55); }
    50% { box-shadow: 0 0 0 6px rgba(41, 198, 255, 0); }
    }

    @keyframes drift-a {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-6%, 8%) scale(1.12); }
    }

    @keyframes drift-b {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(8%, -6%) scale(1.08); }
    }

    @keyframes badge-float {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-10px); }
    }

    @keyframes float-chip {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(-1.5deg); }
    }

    @keyframes spin-cw {
    to { transform: translate(-50%, -50%) rotate(360deg); }
    }

    @keyframes spin-ccw {
    to { transform: translate(-50%, -50%) rotate(-360deg); }
    }

    @keyframes scroll-cue {
    0% { transform: translateY(-20px); opacity: 0; }
    35% { opacity: 1; }
    100% { transform: translateY(42px); opacity: 0; }
    }

    @keyframes fab-pulse {
    0% { transform: scale(0.9); opacity: 0.55; }
    70% { transform: scale(1.45); opacity: 0; }
    100% { opacity: 0; }
    }

    /* --------------------------------------------------------------------------
    11. REDUCED MOTION
    -------------------------------------------------------------------------- */
    @media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    html.js [data-reveal] {
        opacity: 1;
        transform: none;
    }

    .hero__glow,
    .hero__badge,
    .hero__chip,
    .hero__orbit,
    .fab-whatsapp::before,
    .eyebrow__dot,
    .hero__scroll-line::after {
        animation: none;
    }
    }

    /* ============ STATS SECTION ============ */

    .stats {
    padding-block: clamp(3.5rem, 7vw, 5.5rem);
    background: var(--bg);
    position: relative;
    overflow: hidden;
    }

    /* Subtle brand-tinted background shimmer */
    .stats::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(55% 70% at 15% 50%, rgba(41, 198, 255, 0.05), transparent 70%),
        radial-gradient(45% 60% at 85% 50%, rgba(11, 63, 181, 0.06), transparent 70%);
    pointer-events: none;
    }

    .stats__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    }

    .stats__item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
    padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 3vw, 2rem);
    background: var(--surface);
    overflow: hidden;
    transition: background var(--dur-base) var(--ease);
    }

    /* Hover spotlight */
    .stats__item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--brand-gradient-soft);
    opacity: 0;
    transition: opacity var(--dur-base) var(--ease);
    pointer-events: none;
    }

    .stats__item:hover::before {
    opacity: 1;
    }

    /* Bottom accent line that grows on hover */
    .stats__item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--brand-gradient);
    transform: translateX(-50%);
    transition: width var(--dur-base) var(--ease);
    border-radius: var(--r-full);
    }

    .stats__item:hover::after {
    width: 60%;
    }

    .stats__number {
    display: flex;
    align-items: baseline;
    gap: 0.1em;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
    background: var(--brand-gradient);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    }

    .stats__suffix {
    font-size: 0.6em;
    font-weight: 700;
    background: var(--brand-gradient);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    }

    .stats__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--r-md);
    background: var(--brand-gradient-soft);
    color: var(--accent-strong);
    flex-shrink: 0;
    transition: transform var(--dur-base) var(--ease-spring);
    }

    .stats__item:hover .stats__icon {
    transform: scale(1.1) rotate(-5deg);
    }

    .stats__label {
    font-size: clamp(0.8125rem, 1.6vw, 0.9375rem);
    font-weight: 500;
    color: var(--ink-2);
    margin: 0;
    }

    @media (min-width: 640px) {
    .stats__grid {
        grid-template-columns: repeat(4, 1fr);
    }
    }

    /* ============ END STATS CSS ============ */
/* ==========================================================================
   NEW SECTIONS — Stats fix + Partners + Why + Industries + Testimonials + CTA
   ========================================================================== */

/* --- Shared section layout ------------------------------------------------ */
.section {
  padding-block: clamp(4rem, 8vw, 6.5rem);
  background: var(--bg);
}
.section--alt { background: var(--bg-soft); }
.section--dark { background: var(--navy-950); }

.section__head {
  max-width: 640px;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: .75rem 0 0;
}
.section__lead {
  margin-top: .875rem;
  color: var(--ink-2);
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* --- STATS FIX: bg matches page, no stray colour bleed ------------------- */
.stats {
  padding-block: clamp(2.5rem, 5vw, 4rem);
  background: var(--bg); /* was inheriting hero's dark bg */
}
.stats::before { display: none; } /* remove any leftover shimmer pseudo */

.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.stats__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: .5rem;
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1rem, 3vw, 2rem);
  background: var(--surface);
  overflow: hidden;
  transition: background var(--dur-base) var(--ease);
}
.stats__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--brand-gradient-soft);
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease);
  pointer-events: none;
}
.stats__item:hover::before { opacity: 1; }
.stats__item::after {
  content: "";
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--brand-gradient);
  transform: translateX(-50%);
  transition: width var(--dur-base) var(--ease);
  border-radius: var(--r-full);
}
.stats__item:hover::after { width: 60%; }

.stats__number {
  display: flex;
  align-items: baseline;
  gap: .1em;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1;
  background: var(--brand-gradient);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.stats__suffix {
  font-size: .6em;
  font-weight: 700;
  background: var(--brand-gradient);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.stats__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  background: var(--brand-gradient-soft);
  color: var(--accent-strong);
  transition: transform var(--dur-base) var(--ease-spring);
}
.stats__item:hover .stats__icon { transform: scale(1.1) rotate(-5deg); }
.stats__label {
  font-size: clamp(.8125rem, 1.6vw, .9375rem);
  font-weight: 500;
  color: var(--ink-2);
  margin: 0;
}
@media (min-width: 640px) {
  .stats__grid { grid-template-columns: repeat(4, 1fr); }
}

/* --- PARTNERS ------------------------------------------------------------ */
.partners__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (min-width: 480px) { .partners__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .partners__grid { grid-template-columns: repeat(6, 1fr); } }

.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .875rem;
  padding: 1.75rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease);
}
.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}
.partner-card__logo {
  width: 72px;
  height: 72px;
  border-radius: var(--r-md);
  background: var(--brand-gradient-soft);
  border: 1.5px dashed var(--border-strong);
  position: relative;
}
/* Dashed placeholder cross */
.partner-card__logo::before,
.partner-card__logo::after {
  content: "";
  position: absolute;
  background: var(--border-strong);
  border-radius: 2px;
}
.partner-card__logo::before { width: 1px; height: 40%; top: 30%; left: 50%; transform: translateX(-50%); }
.partner-card__logo::after  { width: 40%; height: 1px; top: 50%; left: 30%; transform: translateY(-50%); }
.partner-card__name {
  font-family: var(--font-display);
  font-size: .875rem;
  font-weight: 600;
  color: var(--ink-2);
  text-align: center;
}

/* --- WHY ----------------------------------------------------------------- */
.why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 560px) { .why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .why__grid { grid-template-columns: repeat(3, 1fr); } }

.why-card {
  padding: 1.875rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(280px circle at var(--mx,50%) var(--my,50%), rgba(41,198,255,.08), transparent 70%);
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease);
  pointer-events: none;
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.why-card:hover::before { opacity: 1; }

.why-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--brand-gradient-soft);
  color: var(--accent-strong);
  margin-bottom: 1.125rem;
  transition: transform var(--dur-base) var(--ease-spring);
}
.why-card:hover .why-card__icon { transform: scale(1.08) rotate(-4deg); }
.why-card__title { font-size: 1.125rem; margin-bottom: .4rem; }
.why-card__text { color: var(--ink-2); font-size: .9375rem; line-height: 1.75; margin: 0; }

/* --- INDUSTRIES ---------------------------------------------------------- */
.industries__grid {
  display: flex;
  flex-wrap: wrap;
  gap: .875rem;
  justify-content: center;
}
.industry-chip {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .8rem 1.4rem;
  border-radius: var(--r-full);
  background: var(--on-dark-surface);
  border: 1px solid var(--on-dark-border);
  color: var(--on-dark);
  font-size: .9375rem;
  font-weight: 600;
  cursor: default;
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.industry-chip .icon { color: var(--grad-cyan); }
.industry-chip:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(41,198,255,.4);
  transform: translateY(-2px);
}

/* --- TESTIMONIALS -------------------------------------------------------- */
.testi__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 600px) { .testi__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testi__grid { grid-template-columns: repeat(3, 1fr); } }

.testi-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.875rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }

.testi-card__stars {
  display: flex;
  gap: .2rem;
  color: #f59e0b;
}
.testi-card__text {
  flex: 1;
  font-size: .9375rem;
  line-height: 1.75;
  color: var(--ink-2);
  font-style: italic;
  margin: 0;
}
.testi-card__meta {
  display: flex;
  align-items: center;
  gap: .875rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.testi-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .875rem;
  flex-shrink: 0;
}
.testi-card__name { font-family: var(--font-display); font-weight: 700; font-size: .9375rem; color: var(--ink); margin: 0; }
.testi-card__role { font-size: .8125rem; color: var(--muted); margin: .15rem 0 0; }

/* --- FINAL CTA ----------------------------------------------------------- */
.cta {
  position: relative;
  overflow: hidden;
}
.cta__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(55% 60% at 50% 25%, rgba(41,198,255,.22), transparent 70%),
    radial-gradient(45% 55% at 85% 85%, rgba(11,63,181,.4), transparent 70%);
  pointer-events: none;
}
.cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}
.cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.1;
  color: var(--on-dark);
  margin: 1rem 0 .875rem;
}
.cta__text {
  color: var(--on-dark-soft);
  font-size: 1.0625rem;
  line-height: 1.8;
  max-width: 52ch;
  margin-bottom: 2rem;
}
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* --- FOOTER spacing fix — eliminate blank gap after footer --------------- */
body { display: flex; flex-direction: column; min-height: 100vh; }
main { flex: 1; }
.footer { margin-top: 0; }  /* ensure footer sits flush */

