      /* =========================================
       TOKENS & RESET
    ========================================= */
      :root {
        /* Brand — indigo primary (var names kept for markup compatibility) */
        --navy: #4338ca;        /* primary brand / Enterprise accent */
        --navy-deep: #1e1b4b;   /* deep dark surfaces (hero, footer, infra) */
        --navy-mid: #4f46e5;    /* brand mid */

        /* Eyebrow labels / small accents */
        --gold: #4f46e5;        /* label accent (brand) */
        --gold-light: #a5b4fc;  /* labels on dark */
        --gold-pale: #e0e7ff;

        /* Cool neutral surfaces (were "cream") */
        --cream: #f6f8fc;       /* page background */
        --cream-dark: #eceff5;
        --cream-mid: #f1f4f9;

        /* Ink & greys */
        --charcoal: #0f1117;
        --ink: #111827;         /* primary text */
        --muted: #667085;       /* secondary text */
        --steel: #98a2b3;       /* subtle */
        --rule: #e5e7eb;        /* hairlines / borders */
        --white: #ffffff;

        /* Secondary accent — emerald (One product) */
        --health: #047857;
        --health-light: #10b981;
        --health-pale: #d1fae5;

        --font-display: "Space Grotesk", ui-sans-serif, system-ui, "Segoe UI", sans-serif;
        --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
        --font-label: "Inter", ui-sans-serif, system-ui, sans-serif;

        /* Shape language */
        --radius-sm: 8px;
        --radius: 12px;
        --radius-lg: 18px;
        --radius-xl: 28px;
        --radius-pill: 999px;
        --shadow-xs: 0 1px 2px rgba(16, 24, 40, 0.06);
        --shadow-sm: 0 1px 3px rgba(16, 24, 40, 0.10), 0 1px 2px rgba(16, 24, 40, 0.06);
        --shadow-md: 0 8px 20px rgba(16, 24, 40, 0.08), 0 2px 6px rgba(16, 24, 40, 0.05);
        --shadow-lg: 0 20px 40px rgba(16, 24, 40, 0.12), 0 6px 12px rgba(16, 24, 40, 0.06);
        --shadow-brand: 0 10px 28px rgba(67, 56, 202, 0.26);
        --ring: 0 0 0 4px rgba(79, 70, 229, 0.16);

        --max-w: 1280px;
        --pad-x: clamp(1.5rem, 5vw, 5rem);
        --pad-section: clamp(4rem, 8vw, 8rem);
      }

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

      html {
        font-size: 18px;
        scroll-behavior: smooth;
        -webkit-font-smoothing: antialiased;
        overflow-x: hidden;
      }

      body {
        font-family: var(--font-body);
        background: var(--cream);
        color: var(--ink);
        overflow-x: hidden;
        max-width: 100vw;
      }

      img {
        display: block;
        max-width: 100%;
        height: auto;
      }
      a {
        text-decoration: none;
        color: inherit;
      }
      ul {
        list-style: none;
      }

      /* =========================================
       LAYOUT HELPERS
    ========================================= */
      .container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0 var(--pad-x);
      }

      .section {
        padding: var(--pad-section) 0;
      }

      hr.rule {
        border: none;
        border-top: 1px solid var(--rule);
        margin: 0;
      }

      hr.rule--gold {
        border-top-color: var(--gold);
      }

      /* =========================================
       TYPOGRAPHY
    ========================================= */
      .label {
        font-family: var(--font-label);
        font-size: 0.72rem;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--gold);
        font-weight: 400;
      }

      .label--light {
        color: var(--gold-light);
      }

      .label--muted {
        color: var(--muted);
      }

      h1,
      h2,
      h3,
      h4,
      h5 {
        font-family: var(--font-display);
        font-weight: 400;
        line-height: 1.12;
      }

      .display-xl {
        font-size: clamp(3.2rem, 7vw, 7.5rem);
        font-weight: 300;
        letter-spacing: -0.01em;
        line-height: 1.02;
      }

      .display-lg {
        font-size: clamp(2.4rem, 4.5vw, 4.8rem);
        font-weight: 400;
        letter-spacing: -0.01em;
      }

      .display-md {
        font-size: clamp(1.8rem, 3vw, 3rem);
        font-weight: 400;
      }

      .display-sm {
        font-size: clamp(1.4rem, 2.2vw, 2rem);
        font-weight: 400;
      }

      .body-lg {
        font-size: 1.15rem;
        line-height: 1.75;
        color: var(--muted);
      }

      .body-md {
        font-size: 1rem;
        line-height: 1.7;
        color: var(--muted);
      }

      /* =========================================
       NAVIGATION
    ========================================= */
      .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 202;
        background: var(--white);
        border-bottom: 1px solid var(--rule);
        transition: box-shadow 0.3s;
      }

      .nav.scrolled {
        box-shadow: 0 2px 20px rgba(67, 56, 202, 0.08);
      }

      .nav__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 72px;
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0 var(--pad-x);
      }

      .nav__logo {
        display: flex;
        flex-direction: column;
        line-height: 1;
      }

      .nav__logo-name {
        font-family: var(--font-display);
        font-size: 1.55rem;
        font-weight: 500;
        color: var(--navy);
        letter-spacing: 0.04em;
      }

      .nav__logo-sub {
        font-family: var(--font-label);
        font-size: 0.6rem;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        color: var(--gold);
        margin-top: 2px;
      }

      .nav__links {
        display: flex;
        align-items: center;
        gap: 2.2rem;
      }

      .nav__link {
        font-family: var(--font-label);
        font-size: 0.78rem;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--ink);
        position: relative;
        padding-bottom: 3px;
        transition: color 0.2s;
      }

      .nav__link::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--gold);
        transition: width 0.3s ease;
      }

      .nav__link:hover {
        color: var(--navy);
      }
      .nav__link:hover::after {
        width: 100%;
      }

      .nav__cta {
        font-family: var(--font-label);
        font-size: 0.78rem;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        background: var(--navy);
        color: var(--white);
        padding: 0.55rem 1.4rem;
        border: 1px solid var(--navy);
        transition:
          background 0.25s,
          color 0.25s;
      }

      .nav__cta:hover {
        background: transparent;
        color: var(--navy);
      }

      /* Burger button */
      .nav__burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 36px;
        height: 36px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
        position: relative;
        z-index: 201;
      }

      .nav__burger-line {
        display: block;
        width: 100%;
        height: 1px;
        background: var(--navy);
        transition:
          transform 0.3s ease,
          opacity 0.3s ease,
          width 0.3s ease;
        transform-origin: center;
      }

      .nav__burger-line:nth-child(2) {
        width: 70%;
      }

      /* Burger open state — morph to X */
      .nav__burger.is-open .nav__burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
        width: 100%;
      }

      .nav__burger.is-open .nav__burger-line:nth-child(2) {
        opacity: 0;
        width: 0;
      }

      .nav__burger.is-open .nav__burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
      }

      /* Mobile drawer */
      .nav__drawer {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 200;
        background: var(--white);
        display: flex;
        flex-direction: column;
        padding: 100px var(--pad-x) clamp(2rem, 5vw, 4rem);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
        overflow-y: auto;
      }

      .nav__drawer.is-open {
        transform: translateX(0);
      }

      .nav__drawer-rule {
        width: 30px;
        height: 1px;
        background: var(--gold);
        margin-bottom: 2rem;
      }

      .nav__drawer-links {
        display: flex;
        flex-direction: column;
        gap: 0;
        flex: 1;
      }

      .nav__drawer-link {
        font-family: var(--font-display);
        font-size: clamp(1.8rem, 7vw, 2.6rem);
        font-weight: 300;
        color: var(--navy);
        padding: 0.7rem 0;
        border-bottom: 1px solid var(--rule);
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: color 0.2s;
        opacity: 0;
        transform: translateX(20px);
        transition:
          color 0.2s,
          opacity 0.4s ease,
          transform 0.4s ease;
      }

      .nav__drawer-link:first-child {
        border-top: 1px solid var(--rule);
      }

      .nav__drawer-link:hover {
        color: var(--gold);
      }

      .nav__drawer-link svg {
        width: 18px;
        height: 18px;
        color: var(--gold);
        opacity: 0;
        transition: opacity 0.2s;
      }

      .nav__drawer-link:hover svg {
        opacity: 1;
      }

      .nav__drawer.is-open .nav__drawer-link {
        opacity: 1;
        transform: translateX(0);
      }

      .nav__drawer.is-open .nav__drawer-link:nth-child(1) {
        transition-delay: 0.08s;
      }
      .nav__drawer.is-open .nav__drawer-link:nth-child(2) {
        transition-delay: 0.13s;
      }
      .nav__drawer.is-open .nav__drawer-link:nth-child(3) {
        transition-delay: 0.18s;
      }
      .nav__drawer.is-open .nav__drawer-link:nth-child(4) {
        transition-delay: 0.23s;
      }
      .nav__drawer.is-open .nav__drawer-link:nth-child(5) {
        transition-delay: 0.28s;
      }
      .nav__drawer.is-open .nav__drawer-link:nth-child(6) {
        transition-delay: 0.33s;
      }

      .nav__drawer-cta {
        margin-top: 2.5rem;
        font-family: var(--font-label);
        font-size: 0.8rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        background: var(--navy);
        color: var(--white);
        padding: 1rem 2rem;
        border: 1px solid var(--navy);
        text-align: center;
        display: block;
        transition:
          background 0.25s,
          color 0.25s;
        opacity: 0;
        transform: translateY(10px);
        transition:
          background 0.25s,
          color 0.25s,
          opacity 0.4s ease 0.32s,
          transform 0.4s ease 0.32s;
      }

      .nav__drawer.is-open .nav__drawer-cta {
        opacity: 1;
        transform: translateY(0);
      }

      .nav__drawer-cta:hover {
        background: transparent;
        color: var(--navy);
      }

      .nav__drawer-footer {
        margin-top: 2rem;
        font-family: var(--font-label);
        font-size: 0.62rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--muted);
        opacity: 0;
        transition: opacity 0.4s ease 0.38s;
      }

      .nav__drawer.is-open .nav__drawer-footer {
        opacity: 1;
      }

      /* =========================================
       HERO
    ========================================= */
      .hero {
        background: var(--navy-deep);
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
      }

      /* Subtle geometric background texture */
      .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image:
          linear-gradient(rgba(79, 70, 229, 0.04) 1px, transparent 1px),
          linear-gradient(90deg, rgba(79, 70, 229, 0.04) 1px, transparent 1px);
        background-size: 80px 80px;
        pointer-events: none;
      }

      .hero::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(
          90deg,
          transparent,
          var(--gold),
          transparent
        );
      }

      .hero__inner {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0 var(--pad-x);
        padding-top: 140px;
        padding-bottom: clamp(3rem, 6vw, 6rem);
        width: 100%;
        position: relative;
        z-index: 1;
      }

      .hero__eyebrow {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2.5rem;
      }

      .hero__eyebrow-line {
        width: 40px;
        height: 1px;
        background: var(--gold);
      }

      .hero__heading {
        color: var(--white);
        max-width: 900px;
        margin-bottom: 2rem;
      }

      .hero__heading em {
        font-style: italic;
        color: var(--gold-light);
      }

      .hero__body {
        color: var(--steel);
        max-width: 480px;
        font-size: 1.15rem;
        line-height: 1.7;
        margin-bottom: 3.5rem;
      }

      .hero__actions {
        display: flex;
        align-items: center;
        gap: 2rem;
        flex-wrap: wrap;
      }

      .btn-primary {
        font-family: var(--font-label);
        font-size: 0.8rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        background: var(--gold);
        color: var(--white);
        padding: 0.9rem 2.4rem;
        border: 1px solid var(--gold);
        transition:
          background 0.25s,
          color 0.25s;
        display: inline-block;
      }

      .btn-primary:hover {
        background: transparent;
        color: var(--gold-light);
      }

      .btn-ghost {
        font-family: var(--font-label);
        font-size: 0.8rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        background: transparent;
        color: var(--steel);
        padding: 0.9rem 2.4rem;
        border: 1px solid rgba(152, 162, 179, 0.4);
        transition:
          border-color 0.25s,
          color 0.25s;
        display: inline-block;
      }

      .btn-ghost:hover {
        color: var(--white);
        border-color: var(--white);
      }

      /* Hero scroll indicator */
      .hero__scroll {
        position: absolute;
        right: var(--pad-x);
        bottom: clamp(2rem, 5vw, 4rem);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
        z-index: 1;
      }

      .hero__scroll-text {
        font-family: var(--font-label);
        font-size: 0.6rem;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        color: var(--steel);
        writing-mode: vertical-rl;
        text-orientation: mixed;
      }

      .hero__scroll-line {
        width: 1px;
        height: 60px;
        background: linear-gradient(to bottom, var(--gold), transparent);
        animation: scrollPulse 2s ease-in-out infinite;
      }

      @keyframes scrollPulse {
        0%,
        100% {
          opacity: 1;
          transform: scaleY(1);
          transform-origin: top;
        }
        50% {
          opacity: 0.4;
          transform: scaleY(0.6);
          transform-origin: top;
        }
      }

      /* =========================================
       INTRO BAND
    ========================================= */
      .intro {
        background: var(--cream-mid);
        border-bottom: 1px solid var(--rule);
      }

      .intro__inner {
        display: grid;
        grid-template-columns: 1fr 2px 1fr;
        gap: 0;
        align-items: stretch;
      }

      .intro__divider {
        background: var(--rule);
        width: 1px;
        margin: 3rem 0;
      }

      .intro__col {
        padding: clamp(2.5rem, 5vw, 4.5rem) clamp(2rem, 4vw, 4rem);
      }

      .intro__col:first-child {
        padding-left: 0;
      }

      .intro__col:last-child {
        padding-right: 0;
      }

      .intro__quote {
        font-family: var(--font-display);
        font-size: clamp(1.5rem, 2.5vw, 2.4rem);
        font-weight: 300;
        line-height: 1.45;
        color: var(--navy);
      }

      .intro__quote em {
        font-style: italic;
        color: var(--gold);
      }

      .intro__text {
        font-size: 1.05rem;
        line-height: 1.8;
        color: var(--muted);
      }

      /* =========================================
       SOLUTIONS
    ========================================= */
      .solutions {
        background: var(--white);
      }

      .solutions__header {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        margin-bottom: 4rem;
        gap: 2rem;
        flex-wrap: wrap;
      }

      .solutions__title {
        margin-top: 0.8rem;
      }

      .solutions__desc {
        max-width: 340px;
        font-size: 0.98rem;
        line-height: 1.75;
        color: var(--muted);
      }

      .solutions__grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        border-top: 1px solid var(--rule);
        border-left: 1px solid var(--rule);
      }

      .solution-card {
        border-right: 1px solid var(--rule);
        border-bottom: 1px solid var(--rule);
        padding: 3rem 2rem 2.5rem;
        position: relative;
        transition: background 0.3s;
        overflow: hidden;
      }

      .solution-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--gold);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
      }

      .solution-card:hover {
        background: var(--cream-mid);
      }

      .solution-card:hover::before {
        transform: scaleX(1);
      }

      .solution-card__num {
        font-family: var(--font-display);
        font-size: 0.72rem;
        letter-spacing: 0.2em;
        color: var(--gold);
        margin-bottom: 2.5rem;
      }

      .solution-card__icon {
        width: 42px;
        height: 42px;
        margin-bottom: 1.8rem;
        color: var(--navy);
        opacity: 0.75;
      }

      .solution-card__title {
        font-family: var(--font-display);
        font-size: 1.55rem;
        font-weight: 500;
        color: var(--navy);
        margin-bottom: 1rem;
        line-height: 1.2;
      }

      .solution-card__body {
        font-size: 0.95rem;
        line-height: 1.75;
        color: var(--muted);
        margin-bottom: 2rem;
      }

      .solution-card__features {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
      }

      .solution-card__feature {
        font-size: 0.82rem;
        color: var(--ink);
        display: flex;
        align-items: center;
        gap: 0.6rem;
      }

      .solution-card__feature::before {
        content: "";
        width: 16px;
        height: 1px;
        background: var(--gold);
        flex-shrink: 0;
      }

      .solution-card__link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-family: var(--font-label);
        font-size: 0.72rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--gold);
        margin-top: 2rem;
        transition: gap 0.2s;
      }

      .solution-card__link:hover {
        gap: 0.9rem;
      }

      .solution-card__link svg {
        width: 14px;
        height: 14px;
      }

      /* =========================================
       STATS BAR
    ========================================= */
      .stats {
        background: var(--navy);
        padding: 0;
      }

      .stats__inner {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
      }

      .stat {
        padding: clamp(2.5rem, 4vw, 4rem) clamp(1.5rem, 2.5vw, 3rem);
        border-right: 1px solid rgba(255, 255, 255, 0.08);
        position: relative;
      }

      .stat:last-child {
        border-right: none;
      }

      .stat__num {
        font-family: var(--font-display);
        font-size: clamp(2.8rem, 5vw, 5rem);
        font-weight: 300;
        color: var(--white);
        line-height: 1;
        margin-bottom: 0.6rem;
      }

      .stat__num span {
        color: var(--gold-light);
      }

      .stat__label {
        font-family: var(--font-label);
        font-size: 0.7rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--steel);
      }

      .stat__divider {
        width: 24px;
        height: 1px;
        background: var(--gold);
        margin-bottom: 1rem;
      }

      /* =========================================
       ABOUT / TEAM IMAGE
    ========================================= */
      .about {
        background: var(--cream);
      }

      .about__inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(3rem, 6vw, 7rem);
        align-items: center;
      }

      .about__content {
      }

      .about__eyebrow {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
      }

      .about__eyebrow-line {
        width: 30px;
        height: 1px;
        background: var(--gold);
      }

      .about__heading {
        color: var(--navy);
        margin-bottom: 1.8rem;
      }

      .about__text {
        font-size: 1.05rem;
        line-height: 1.85;
        color: var(--muted);
        margin-bottom: 1.5rem;
      }

      .about__pillars {
        margin-top: 2.5rem;
        display: flex;
        flex-direction: column;
        gap: 0;
      }

      .about__pillar {
        padding: 1.2rem 0;
        border-top: 1px solid var(--rule);
        display: flex;
        align-items: flex-start;
        gap: 1.5rem;
      }

      .about__pillar:last-child {
        border-bottom: 1px solid var(--rule);
      }

      .about__pillar-num {
        font-family: var(--font-display);
        font-size: 0.85rem;
        color: var(--gold);
        min-width: 28px;
        padding-top: 2px;
      }

      .about__pillar-content {
      }

      .about__pillar-title {
        font-family: var(--font-display);
        font-size: 1.15rem;
        font-weight: 500;
        color: var(--navy);
        margin-bottom: 0.25rem;
      }

      .about__pillar-text {
        font-size: 0.9rem;
        line-height: 1.65;
        color: var(--muted);
      }

      .about__image-wrap {
        position: relative;
      }

      .about__image-wrap::before {
        content: "";
        position: absolute;
        top: -16px;
        right: -16px;
        bottom: 16px;
        left: 16px;
        border: 1px solid var(--gold-pale);
        z-index: 0;
        pointer-events: none;
      }

      .about__image {
        position: relative;
        z-index: 1;
        width: 100%;
        aspect-ratio: 4/3;
        object-fit: cover;
        object-position: center;
        filter: saturate(0.85) contrast(1.05);
      }

      .about__image-caption {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 2;
        background: rgba(67, 56, 202, 0.88);
        padding: 1rem 1.4rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        backdrop-filter: blur(4px);
      }

      .about__image-caption-text {
        font-family: var(--font-label);
        font-size: 0.68rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--steel);
      }

      .about__image-caption-num {
        font-family: var(--font-display);
        font-size: 0.95rem;
        color: var(--gold-light);
      }

      /* =========================================
       INFRASTRUCTURE
    ========================================= */
      .infrastructure {
        background: var(--navy-deep);
        position: relative;
        overflow: hidden;
      }

      .infrastructure__bg {
        position: absolute;
        inset: 0;
        z-index: 0;
      }

      .infrastructure__bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        opacity: 0.18;
        filter: grayscale(100%);
      }

      .infrastructure__inner {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(3rem, 6vw, 8rem);
        align-items: center;
        padding: var(--pad-section) var(--pad-x);
        max-width: var(--max-w);
        margin: 0 auto;
      }

      .infrastructure__content {
      }

      .infrastructure__heading {
        color: var(--white);
        margin-bottom: 1.5rem;
      }

      .infrastructure__heading em {
        font-style: italic;
        color: var(--gold-light);
      }

      .infrastructure__text {
        color: var(--steel);
        font-size: 1.05rem;
        line-height: 1.8;
        margin-bottom: 2.5rem;
      }

      .infrastructure__specs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }

      .spec {
        padding: 1.4rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        padding-right: 1.5rem;
      }

      .spec:nth-child(even) {
        padding-left: 1.5rem;
        padding-right: 0;
        border-left: 1px solid rgba(255, 255, 255, 0.07);
      }

      .spec__label {
        font-family: var(--font-label);
        font-size: 0.65rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--steel);
        margin-bottom: 0.3rem;
      }

      .spec__value {
        font-family: var(--font-display);
        font-size: 1.1rem;
        color: var(--white);
      }

      .infrastructure__cards {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
      }

      .infra-card {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        padding: 1.8rem 2rem;
        position: relative;
      }

      .infra-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: var(--gold);
      }

      .infra-card__title {
        font-family: var(--font-display);
        font-size: 1.25rem;
        color: var(--white);
        margin-bottom: 0.5rem;
      }

      .infra-card__text {
        font-size: 0.9rem;
        line-height: 1.7;
        color: var(--steel);
      }

      /* =========================================
       DEVELOPMENT / CODE IMAGE SECTION
    ========================================= */
      .development {
        background: var(--white);
      }

      .development__inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(3rem, 6vw, 7rem);
        align-items: center;
      }

      .development__image-wrap {
        position: relative;
      }

      .development__image {
        width: 100%;
        aspect-ratio: 3/4;
        object-fit: cover;
        object-position: top;
        filter: saturate(0.8) contrast(1.05);
      }

      .development__badge {
        position: absolute;
        bottom: 2rem;
        right: -2rem;
        background: var(--navy);
        padding: 1.5rem 2rem;
        border-left: 3px solid var(--gold);
      }

      .development__badge-num {
        font-family: var(--font-display);
        font-size: 2.4rem;
        font-weight: 300;
        color: var(--white);
        line-height: 1;
      }

      .development__badge-label {
        font-family: var(--font-label);
        font-size: 0.62rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--steel);
        margin-top: 0.3rem;
      }

      .development__content {
      }

      .development__heading {
        color: var(--navy);
        margin-bottom: 1.5rem;
      }

      .development__text {
        font-size: 1.05rem;
        line-height: 1.85;
        color: var(--muted);
        margin-bottom: 2rem;
      }

      .development__list {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
        margin-bottom: 2.5rem;
      }

      .development__item {
        display: flex;
        gap: 1.2rem;
        align-items: flex-start;
      }

      .development__item-icon {
        width: 32px;
        height: 32px;
        background: var(--cream);
        border: 1px solid var(--rule);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-top: 2px;
      }

      .development__item-icon svg {
        width: 14px;
        height: 14px;
        color: var(--gold);
      }

      .development__item-title {
        font-family: var(--font-display);
        font-size: 1.05rem;
        font-weight: 500;
        color: var(--navy);
        margin-bottom: 0.2rem;
      }

      .development__item-text {
        font-size: 0.88rem;
        line-height: 1.65;
        color: var(--muted);
      }

      /* =========================================
       TESTIMONIAL BAND
    ========================================= */
      .testimonial {
        background: var(--gold);
        padding: clamp(3rem, 5vw, 5rem) 0;
      }

      .testimonial__inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 760px;
      }

      .testimonial__mark {
        font-family: var(--font-display);
        font-size: 5rem;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.3);
        line-height: 0.7;
        margin-bottom: 1.5rem;
      }

      .testimonial__quote {
        font-family: var(--font-display);
        font-size: clamp(1.4rem, 2.5vw, 2.2rem);
        font-weight: 400;
        font-style: italic;
        color: var(--white);
        line-height: 1.5;
        margin-bottom: 2rem;
      }

      .testimonial__attribution {
        font-family: var(--font-label);
        font-size: 0.72rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.65);
      }

      /* =========================================
       CONTACT / CTA
    ========================================= */
      .contact {
        background: var(--cream-mid);
        border-top: 1px solid var(--rule);
      }

      .contact__inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(3rem, 6vw, 8rem);
      }

      .contact__content {
      }

      .contact__heading {
        color: var(--navy);
        margin-bottom: 1.2rem;
      }

      .contact__text {
        font-size: 1.05rem;
        line-height: 1.8;
        color: var(--muted);
        margin-bottom: 2.5rem;
      }

      .contact__details {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
      }

      .contact__detail {
        display: flex;
        gap: 1rem;
        align-items: flex-start;
      }

      .contact__detail-label {
        font-family: var(--font-label);
        font-size: 0.68rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--gold);
        min-width: 80px;
        padding-top: 2px;
      }

      .contact__detail-value {
        font-size: 0.95rem;
        color: var(--ink);
      }

      .contact__form {
      }

      .form-group {
        margin-bottom: 1.5rem;
      }

      .form-label {
        display: block;
        font-family: var(--font-label);
        font-size: 0.68rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: 0.5rem;
      }

      .form-input,
      .form-select,
      .form-textarea {
        width: 100%;
        background: var(--white);
        border: 1px solid var(--rule);
        padding: 0.8rem 1rem;
        font-family: var(--font-body);
        font-size: 1rem;
        color: var(--ink);
        outline: none;
        transition: border-color 0.2s;
        appearance: none;
      }

      .form-input:focus,
      .form-select:focus,
      .form-textarea:focus {
        border-color: var(--gold);
      }

      .form-textarea {
        resize: vertical;
        min-height: 120px;
      }

      .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
      }

      .form-submit {
        font-family: var(--font-label);
        font-size: 0.8rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        background: var(--navy);
        color: var(--white);
        padding: 1rem 2.8rem;
        border: 1px solid var(--navy);
        cursor: pointer;
        transition:
          background 0.25s,
          color 0.25s;
      }

      .form-submit:hover {
        background: var(--navy-mid);
      }

      /* =========================================
       FOOTER
    ========================================= */
      .footer {
        background: var(--navy-deep);
        border-top: 1px solid rgba(255, 255, 255, 0.06);
      }

      .footer__top {
        padding: clamp(3rem, 5vw, 5rem) var(--pad-x);
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: clamp(2rem, 4vw, 5rem);
      }

      .footer__brand {
      }

      .footer__brand-name {
        font-family: var(--font-display);
        font-size: 1.8rem;
        font-weight: 500;
        color: var(--white);
        letter-spacing: 0.04em;
        margin-bottom: 0.3rem;
      }

      .footer__brand-tagline {
        font-family: var(--font-label);
        font-size: 0.62rem;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 1.5rem;
      }

      .footer__brand-text {
        font-size: 0.9rem;
        line-height: 1.75;
        color: rgba(152, 162, 179, 0.7);
        max-width: 280px;
      }

      .footer__col-title {
        font-family: var(--font-label);
        font-size: 0.65rem;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 1.4rem;
      }

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

      .footer__link {
        font-size: 0.88rem;
        color: rgba(152, 162, 179, 0.7);
        transition: color 0.2s;
      }

      .footer__link:hover {
        color: var(--white);
      }

      .footer__bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        padding: 1.5rem var(--pad-x);
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        flex-wrap: wrap;
      }

      .footer__copy {
        font-family: var(--font-label);
        font-size: 0.65rem;
        letter-spacing: 0.12em;
        color: rgba(152, 162, 179, 0.4);
      }

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

      .footer__legal a {
        font-family: var(--font-label);
        font-size: 0.65rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: rgba(152, 162, 179, 0.4);
        transition: color 0.2s;
      }

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

      /* =========================================
       FADE-IN ANIMATION
    ========================================= */
      .fade-up {
        opacity: 0;
        transform: translateY(30px);
        transition:
          opacity 0.7s ease,
          transform 0.7s ease;
      }

      .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
      }

      .fade-up.delay-1 {
        transition-delay: 0.1s;
      }
      .fade-up.delay-2 {
        transition-delay: 0.2s;
      }
      .fade-up.delay-3 {
        transition-delay: 0.3s;
      }
      .fade-up.delay-4 {
        transition-delay: 0.4s;
      }

      /* =========================================
       CUSTOM SOFTWARE
    ========================================= */
      .custom {
        background: var(--navy);
        position: relative;
        overflow: hidden;
      }

      /* Diagonal rule accent */
      .custom::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 40%;
        height: 100%;
        background: linear-gradient(
          to bottom right,
          rgba(79, 70, 229, 0.05),
          transparent
        );
        pointer-events: none;
      }

      .custom__inner {
        position: relative;
        z-index: 1;
      }

      .custom__top {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(3rem, 6vw, 8rem);
        align-items: end;
        margin-bottom: clamp(3rem, 5vw, 5rem);
        padding-bottom: clamp(2.5rem, 4vw, 4rem);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }

      .custom__heading {
        color: var(--white);
      }

      .custom__heading em {
        font-style: italic;
        color: var(--gold-light);
      }

      .custom__intro {
        color: var(--steel);
        font-size: 1.05rem;
        line-height: 1.85;
      }

      .custom__intro strong {
        color: var(--white);
        font-weight: 400;
      }

      /* Process steps */
      .custom__process {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
      }

      .process-step {
        padding: 2.2rem 1.8rem 2.2rem 0;
        border-right: 1px solid rgba(255, 255, 255, 0.07);
        position: relative;
      }

      .process-step:last-child {
        border-right: none;
        padding-right: 0;
      }

      .process-step:not(:first-child) {
        padding-left: 1.8rem;
      }

      .process-step__num {
        font-family: var(--font-display);
        font-size: 2.6rem;
        font-weight: 300;
        color: rgba(79, 70, 229, 0.2);
        line-height: 1;
        margin-bottom: 1rem;
      }

      .process-step__title {
        font-family: var(--font-display);
        font-size: 1.15rem;
        font-weight: 500;
        color: var(--white);
        margin-bottom: 0.6rem;
      }

      .process-step__text {
        font-size: 0.85rem;
        line-height: 1.7;
        color: var(--steel);
      }

      /* Capabilities band */
      .custom__capabilities {
        margin-top: clamp(2.5rem, 4vw, 4.5rem);
        padding-top: clamp(2.5rem, 4vw, 4.5rem);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: clamp(2rem, 4vw, 6rem);
        align-items: start;
      }

      .custom__cap-label {
        color: var(--gold-light);
      }

      .custom__cap-heading {
        font-family: var(--font-display);
        font-size: 1.55rem;
        font-weight: 400;
        color: var(--white);
        margin-top: 0.6rem;
        line-height: 1.3;
      }

      .custom__cap-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
      }

      .cap-item {
        padding: 1rem 1.5rem 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        display: flex;
        gap: 0.8rem;
        align-items: flex-start;
      }

      .cap-item:nth-child(even) {
        padding-left: 1.5rem;
        padding-right: 0;
        border-left: 1px solid rgba(255, 255, 255, 0.06);
      }

      .cap-item__dot {
        width: 5px;
        height: 5px;
        background: var(--gold);
        border-radius: 50%;
        flex-shrink: 0;
        margin-top: 0.5rem;
      }

      .cap-item__text {
        font-size: 0.9rem;
        line-height: 1.5;
        color: rgba(152, 162, 179, 0.85);
      }

      /* =========================================
       IntelliRoute PLATFORM
    ========================================= */
      .IntelliRoute {
        background: var(--cream-mid);
        border-top: 1px solid var(--rule);
        border-bottom: 1px solid var(--rule);
      }

      .IntelliRoute__product-bar {
        border-bottom: 1px solid var(--rule);
        padding-bottom: clamp(1.8rem, 3vw, 3rem);
        margin-bottom: clamp(2.5rem, 5vw, 5rem);
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 2rem;
        flex-wrap: wrap;
      }

      .IntelliRoute__product-name {
        font-family: var(--font-display);
        font-size: clamp(3rem, 7.5vw, 8.5rem);
        font-weight: 300;
        color: var(--navy);
        line-height: 0.9;
        letter-spacing: -0.02em;
        overflow-wrap: break-word;
      }

      .IntelliRoute__product-name span {
        color: var(--gold);
      }

      .IntelliRoute__product-meta {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 0.4rem;
        padding-bottom: 0.5rem;
      }

      .IntelliRoute__product-by {
        font-family: var(--font-label);
        font-size: 0.65rem;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--muted);
      }

      .IntelliRoute__product-tag {
        font-family: var(--font-display);
        font-size: clamp(1rem, 1.5vw, 1.35rem);
        font-style: italic;
        color: var(--navy);
      }

      .IntelliRoute__body {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(3rem, 6vw, 7rem);
        align-items: start;
      }

      .IntelliRoute__desc {
        font-size: 1.08rem;
        line-height: 1.85;
        color: var(--muted);
        margin-bottom: 1.2rem;
      }

      .IntelliRoute__stats {
        margin-top: 2.5rem;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        border-top: 1px solid var(--rule);
      }

      .IntelliRoute__stat {
        padding: 1.4rem 0;
        border-right: 1px solid var(--rule);
      }

      .IntelliRoute__stat:last-child {
        border-right: none;
      }
      .IntelliRoute__stat:not(:first-child) {
        padding-left: 1.4rem;
      }

      .IntelliRoute__stat-num {
        font-family: var(--font-display);
        font-size: clamp(1.9rem, 2.6vw, 2.6rem);
        font-weight: 300;
        color: var(--navy);
        line-height: 1;
        overflow-wrap: break-word;
      }

      .IntelliRoute__stat-num em {
        font-style: normal;
        font-size: 0.55em;
        color: var(--gold);
      }

      .IntelliRoute__stat-label {
        font-family: var(--font-label);
        font-size: 0.62rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--muted);
        margin-top: 0.3rem;
      }

      .IntelliRoute__features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
      }

      .IntelliRoute__feature {
        padding: 1.8rem 1.5rem 1.8rem 0;
        border-bottom: 1px solid var(--rule);
      }

      .IntelliRoute__feature:nth-child(odd):last-child {
        border-bottom: none;
      }

      .IntelliRoute__feature:nth-child(even) {
        padding-left: 1.5rem;
        padding-right: 0;
        border-left: 1px solid var(--rule);
      }

      .IntelliRoute__feature:nth-child(3),
      .IntelliRoute__feature:nth-child(4) {
        border-bottom: none;
      }

      .IntelliRoute__feature-icon {
        width: 30px;
        height: 30px;
        color: var(--gold);
        margin-bottom: 0.9rem;
      }

      .IntelliRoute__feature-title {
        font-family: var(--font-display);
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--navy);
        margin-bottom: 0.35rem;
      }

      .IntelliRoute__feature-text {
        font-size: 0.87rem;
        line-height: 1.65;
        color: var(--muted);
      }

      .IntelliRoute__integrations {
        margin-top: clamp(2.5rem, 4vw, 4.5rem);
        padding-top: clamp(2rem, 3vw, 3rem);
        border-top: 1px solid var(--rule);
      }

      .IntelliRoute__integration-label {
        font-family: var(--font-label);
        font-size: 0.65rem;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: 1.2rem;
      }

      .IntelliRoute__integration-list {
        display: flex;
        flex-wrap: wrap;
        gap: 0;
      }

      .IntelliRoute__integration-item {
        font-family: var(--font-label);
        font-size: 0.82rem;
        letter-spacing: 0.06em;
        color: var(--navy);
        padding: 0.55rem 1.1rem;
        border: 1px solid var(--rule);
        margin-right: -1px;
        margin-bottom: -1px;
        transition:
          background 0.2s,
          color 0.2s,
          border-color 0.2s;
        cursor: default;
      }

      .IntelliRoute__integration-item:hover {
        background: var(--navy);
        color: var(--white);
        border-color: var(--navy);
        z-index: 1;
        position: relative;
      }

      /* Custom split (image + text top) */
      .custom__split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(3rem, 6vw, 7rem);
        align-items: center;
        margin-bottom: clamp(2.5rem, 5vw, 5rem);
        padding-bottom: clamp(2.5rem, 5vw, 5rem);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }

      /* =========================================
       INTELLECTRA HEALTH
    ========================================= */
      .health {
        background: var(--navy-deep);
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        position: relative;
        overflow: hidden;
      }

      .health::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image:
          linear-gradient(rgba(16, 185, 129, 0.04) 1px, transparent 1px),
          linear-gradient(90deg, rgba(16, 185, 129, 0.04) 1px, transparent 1px);
        background-size: 60px 60px;
        pointer-events: none;
      }

      .health__inner {
        position: relative;
        z-index: 1;
      }

      .health__product-bar {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: clamp(1.8rem, 3vw, 3rem);
        margin-bottom: clamp(2.5rem, 5vw, 5rem);
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 2rem;
        flex-wrap: wrap;
      }

      .health__product-name {
        font-family: var(--font-display);
        font-size: clamp(3rem, 7.5vw, 8.5rem);
        font-weight: 300;
        color: var(--white);
        line-height: 0.92;
        letter-spacing: -0.02em;
      }

      .health__product-name span {
        color: var(--health-light);
      }

      .health__product-meta {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 0.4rem;
        padding-bottom: 0.5rem;
      }

      .health__product-by {
        font-family: var(--font-label);
        font-size: 0.65rem;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: rgba(152, 162, 179, 0.7);
      }

      .health__product-tag {
        font-family: var(--font-display);
        font-size: clamp(1rem, 1.5vw, 1.35rem);
        font-style: italic;
        color: var(--health-light);
      }

      .health__body {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(3rem, 6vw, 7rem);
        align-items: start;
      }

      .health__desc {
        font-size: 1.08rem;
        line-height: 1.85;
        color: var(--steel);
        margin-bottom: 1.2rem;
      }

      .health__desc strong {
        color: var(--white);
        font-weight: 400;
      }

      .health__stats {
        margin-top: 2.5rem;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
      }

      .health__stat {
        padding: 1.4rem 0;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
      }

      .health__stat:last-child {
        border-right: none;
      }

      .health__stat:not(:first-child) {
        padding-left: 1.4rem;
      }

      .health__stat-num {
        font-family: var(--font-display);
        font-size: 2.6rem;
        font-weight: 300;
        color: var(--white);
        line-height: 1;
      }

      .health__stat-num em {
        font-style: normal;
        color: var(--health-light);
      }

      .health__stat-label {
        font-family: var(--font-label);
        font-size: 0.62rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: rgba(152, 162, 179, 0.7);
        margin-top: 0.3rem;
      }

      .health__features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
      }

      .health__feature {
        padding: 1.8rem 1.5rem 1.8rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
      }

      .health__feature:nth-child(even) {
        padding-left: 1.5rem;
        padding-right: 0;
        border-left: 1px solid rgba(255, 255, 255, 0.07);
      }

      .health__feature:nth-child(3),
      .health__feature:nth-child(4) {
        border-bottom: none;
      }

      .health__feature-icon {
        width: 30px;
        height: 30px;
        color: var(--health-light);
        margin-bottom: 0.9rem;
      }

      .health__feature-title {
        font-family: var(--font-display);
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--white);
        margin-bottom: 0.35rem;
      }

      .health__feature-text {
        font-size: 0.87rem;
        line-height: 1.65;
        color: var(--steel);
      }

      .health__capabilities {
        margin-top: clamp(2.5rem, 4vw, 4.5rem);
        padding-top: clamp(2.5rem, 4vw, 4.5rem);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: clamp(2rem, 4vw, 6rem);
        align-items: start;
      }

      .health__cap-label {
        color: var(--health-light) !important;
      }

      .health__cap-heading {
        font-family: var(--font-display);
        font-size: 1.55rem;
        font-weight: 400;
        color: var(--white);
        margin-top: 0.6rem;
        line-height: 1.3;
      }

      .health__cap-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
      }

      .health__cap-item {
        padding: 1rem 1.5rem 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        display: flex;
        gap: 0.8rem;
        align-items: flex-start;
      }

      .health__cap-item:nth-child(even) {
        padding-left: 1.5rem;
        padding-right: 0;
        border-left: 1px solid rgba(255, 255, 255, 0.06);
      }

      .health__cap-dot {
        width: 5px;
        height: 5px;
        background: var(--health-light);
        border-radius: 50%;
        flex-shrink: 0;
        margin-top: 0.5rem;
      }

      .health__cap-text {
        font-size: 0.9rem;
        line-height: 1.5;
        color: rgba(152, 162, 179, 0.85);
      }

      .health__integrations {
        margin-top: clamp(2.5rem, 4vw, 4.5rem);
        padding-top: clamp(2rem, 3vw, 3rem);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
      }

      .health__integration-label {
        font-family: var(--font-label);
        font-size: 0.65rem;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        color: rgba(152, 162, 179, 0.7);
        margin-bottom: 1.2rem;
      }

      .health__integration-list {
        display: flex;
        flex-wrap: wrap;
        gap: 0;
      }

      .health__integration-item {
        font-family: var(--font-label);
        font-size: 0.82rem;
        letter-spacing: 0.06em;
        color: var(--steel);
        padding: 0.55rem 1.1rem;
        border: 1px solid rgba(255, 255, 255, 0.08);
        margin-right: -1px;
        margin-bottom: -1px;
        transition:
          background 0.2s,
          color 0.2s,
          border-color 0.2s;
        cursor: default;
      }

      .health__integration-item:hover {
        background: var(--health);
        color: var(--white);
        border-color: var(--health);
        z-index: 1;
        position: relative;
      }

      /* Health feature pillars */
      .health__pillars {
        margin-top: clamp(2.5rem, 4vw, 4.5rem);
        padding-top: clamp(2.5rem, 4vw, 4.5rem);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
      }

      .health__pillar {
        padding: 2rem 2rem 2rem 2.5rem;
        border-right: 1px solid rgba(255, 255, 255, 0.07);
        position: relative;
      }

      .health__pillar:last-child {
        border-right: none;
      }

      .health__pillar::before {
        content: "";
        position: absolute;
        top: 2rem;
        left: 0;
        width: 3px;
        height: 2rem;
        background: var(--health-light);
      }

      .health__pillar-title {
        font-family: var(--font-display);
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--white);
        margin-bottom: 0.75rem;
        line-height: 1.25;
      }

      .health__pillar-text {
        font-size: 0.87rem;
        line-height: 1.72;
        color: var(--steel);
      }

      /* Analytics portal band */
      .health__analytics {
        margin-top: clamp(3rem, 5vw, 5rem);
        padding: clamp(2.5rem, 4vw, 4rem) clamp(2rem, 4vw, 3.5rem);
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.07);
        position: relative;
        overflow: hidden;
      }

      .health__analytics::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--health-light), transparent 60%);
      }

      .health__analytics-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(2.5rem, 5vw, 5rem);
        align-items: start;
      }

      .health__analytics-eyebrow {
        font-family: var(--font-label);
        font-size: 0.65rem;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        color: var(--health-light);
        margin-bottom: 1rem;
        display: block;
      }

      .health__analytics-heading {
        font-family: var(--font-display);
        font-size: clamp(1.6rem, 2.5vw, 2.6rem);
        font-weight: 400;
        color: var(--white);
        line-height: 1.15;
        margin-bottom: 1.2rem;
      }

      .health__analytics-heading em {
        font-style: italic;
        color: var(--health-light);
      }

      .health__analytics-text {
        font-size: 1rem;
        line-height: 1.82;
        color: var(--steel);
        margin-bottom: 0.9rem;
      }

      .health__analytics-badges {
        display: flex;
        flex-direction: column;
        gap: 0.65rem;
        margin-top: 1.8rem;
        padding-top: 1.8rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
      }

      .health__analytics-badge {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        font-family: var(--font-label);
        font-size: 0.78rem;
        letter-spacing: 0.1em;
        color: var(--white);
      }

      .health__analytics-badge::before {
        content: "";
        width: 20px;
        height: 1px;
        background: var(--health-light);
        flex-shrink: 0;
      }

      .health__analytics-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1px;
        background: rgba(255, 255, 255, 0.06);
      }

      .health__analytics-card {
        background: rgba(16, 185, 129, 0.06);
        padding: 1.8rem 1.5rem;
        transition: background 0.3s;
      }

      .health__analytics-card:hover {
        background: rgba(16, 185, 129, 0.11);
      }

      .health__analytics-card-num {
        font-family: var(--font-display);
        font-size: 3rem;
        font-weight: 300;
        color: var(--white);
        line-height: 1;
      }

      .health__analytics-card-num em {
        font-style: normal;
        font-size: 1.6rem;
        color: var(--health-light);
      }

      .health__analytics-card-label {
        font-family: var(--font-label);
        font-size: 0.62rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: rgba(152, 162, 179, 0.7);
        margin-top: 0.35rem;
        margin-bottom: 0.6rem;
      }

      .health__analytics-card-desc {
        font-size: 0.82rem;
        line-height: 1.58;
        color: var(--steel);
      }

      /* Measured outcomes */
      .health__outcomes {
        margin-top: clamp(3rem, 5vw, 5rem);
        padding-top: clamp(2.5rem, 4vw, 4rem);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
      }

      .health__outcomes-header {
        margin-bottom: clamp(2rem, 3vw, 3rem);
      }

      .health__outcomes-heading {
        font-family: var(--font-display);
        font-size: clamp(1.6rem, 2.5vw, 2.4rem);
        font-weight: 400;
        color: var(--white);
        margin-top: 0.6rem;
      }

      .health__outcomes-stats {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        margin-bottom: clamp(2.5rem, 4vw, 4rem);
      }

      .health__outcome-stat {
        padding: 1.6rem 1rem 1.6rem 0;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
      }

      .health__outcome-stat:last-child {
        border-right: none;
      }

      .health__outcome-stat:not(:first-child) {
        padding-left: 1rem;
      }

      .health__outcome-num {
        font-family: var(--font-display);
        font-size: clamp(2rem, 3.5vw, 3rem);
        font-weight: 300;
        color: var(--white);
        line-height: 1;
      }

      .health__outcome-num em {
        font-style: normal;
        color: var(--health-light);
      }

      .health__outcome-label {
        font-family: var(--font-label);
        font-size: 0.62rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: rgba(152, 162, 179, 0.7);
        margin-top: 0.35rem;
        margin-bottom: 0.45rem;
      }

      .health__outcome-desc {
        font-size: 0.8rem;
        line-height: 1.55;
        color: rgba(152, 162, 179, 0.55);
      }

      /* Testimonial cards */
      .health__testimonials {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-left: 1px solid rgba(255, 255, 255, 0.08);
      }

      .health__testimonial {
        padding: 2.5rem 2rem;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        position: relative;
        overflow: hidden;
      }

      .health__testimonial::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--health);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
      }

      .health__testimonial:hover::before {
        transform: scaleX(1);
      }

      .health__testimonial-mark {
        font-family: var(--font-display);
        font-size: 3.5rem;
        font-weight: 300;
        color: rgba(16, 185, 129, 0.2);
        line-height: 0.8;
        margin-bottom: 1.2rem;
      }

      .health__testimonial-quote {
        font-family: var(--font-display);
        font-size: 1.05rem;
        font-style: italic;
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.65;
        margin-bottom: 1.8rem;
      }

      .health__testimonial-attr {
        font-family: var(--font-label);
        font-size: 0.65rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: rgba(16, 185, 129, 0.65);
      }

      /* =========================================
       RESPONSIVE
    ========================================= */
      @media (max-width: 1024px) {
        .solutions__grid {
          grid-template-columns: repeat(2, 1fr);
        }

        .footer__top {
          grid-template-columns: 1fr 1fr;
        }

        .IntelliRoute__body {
          grid-template-columns: 1fr;
        }

        .IntelliRoute__product-name {
          font-size: clamp(3.5rem, 9vw, 7rem);
        }

        .custom__process {
          grid-template-columns: repeat(3, 1fr);
        }

        .custom__capabilities {
          grid-template-columns: 1fr;
          gap: 2rem;
        }

        .health__body {
          grid-template-columns: 1fr;
        }

        .health__capabilities {
          grid-template-columns: 1fr;
          gap: 2rem;
        }

        .health__pillars {
          grid-template-columns: repeat(2, 1fr);
        }

        .health__analytics-inner {
          grid-template-columns: 1fr;
        }

        .health__outcomes-stats {
          grid-template-columns: repeat(3, 1fr);
        }
      }

      /* Collapse the primary nav to the burger menu before the links
         crowd into the "Request a Demo" button at medium widths. */
      @media (max-width: 960px) {
        .nav__links,
        .nav__cta {
          display: none;
        }
        .nav__burger {
          display: flex;
        }
      }

      @media (max-width: 768px) {
        .IntelliRoute__product-bar {
          flex-direction: column;
          align-items: flex-start;
        }

        .IntelliRoute__product-meta {
          align-items: flex-start;
        }

        .IntelliRoute__features {
          grid-template-columns: 1fr;
        }

        .IntelliRoute__feature:nth-child(even) {
          padding-left: 0;
          border-left: none;
        }

        .IntelliRoute__feature:nth-child(3),
        .IntelliRoute__feature:nth-child(4) {
          border-bottom: 1px solid var(--rule);
        }

        .IntelliRoute__feature:last-child {
          border-bottom: none;
        }

        .IntelliRoute__stats {
          grid-template-columns: 1fr 1fr;
        }

        .custom__split {
          grid-template-columns: 1fr;
        }

        .custom__top {
          grid-template-columns: 1fr;
        }

        .custom__process {
          grid-template-columns: 1fr 1fr;
        }

        .custom__cap-grid {
          grid-template-columns: 1fr;
        }

        .cap-item:nth-child(even) {
          padding-left: 0;
          border-left: none;
        }

        .health__product-bar {
          flex-direction: column;
          align-items: flex-start;
        }

        .health__product-meta {
          align-items: flex-start;
        }

        .health__features {
          grid-template-columns: 1fr;
        }

        .health__feature:nth-child(even) {
          padding-left: 0;
          border-left: none;
        }

        .health__feature:nth-child(3),
        .health__feature:nth-child(4) {
          border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        }

        .health__feature:last-child {
          border-bottom: none;
        }

        .health__stats {
          grid-template-columns: 1fr 1fr;
        }

        .health__cap-grid {
          grid-template-columns: 1fr;
        }

        .health__cap-item:nth-child(even) {
          padding-left: 0;
          border-left: none;
        }

        .health__pillars {
          grid-template-columns: 1fr;
        }

        .health__pillar {
          border-right: none;
          border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        }

        .health__pillar:last-child {
          border-bottom: none;
        }

        .health__analytics-cards {
          grid-template-columns: 1fr 1fr;
        }

        .health__outcomes-stats {
          grid-template-columns: repeat(2, 1fr);
        }

        .health__outcome-stat {
          border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .health__testimonials {
          grid-template-columns: 1fr;
        }
      }

      @media (max-width: 768px) {
        .nav__links {
          display: none;
        }

        .nav__cta {
          display: none;
        }

        .nav__burger {
          display: flex;
        }

        .hero__body {
          max-width: 100%;
        }

        .intro__inner {
          grid-template-columns: 1fr;
        }

        .intro__divider {
          display: none;
        }

        .intro__col {
          padding: 2rem 0;
          border-top: 1px solid var(--rule);
        }

        .intro__col:first-child {
          border-top: none;
          padding-top: 0;
        }

        .solutions__grid {
          grid-template-columns: 1fr;
        }

        .solutions__header {
          flex-direction: column;
          align-items: flex-start;
        }

        .solutions__desc {
          max-width: 100%;
        }

        .stats__inner {
          grid-template-columns: repeat(2, 1fr);
        }

        .stat {
          border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .about__inner,
        .development__inner,
        .contact__inner {
          grid-template-columns: 1fr;
        }

        .about__image-wrap {
          order: -1;
        }

        .about__image-wrap::before {
          display: none;
        }

        .development__badge {
          right: 0;
        }

        .infrastructure__inner {
          grid-template-columns: 1fr;
        }

        .footer__top {
          grid-template-columns: 1fr;
        }

        .form-row {
          grid-template-columns: 1fr;
        }
      }

      @media (max-width: 480px) {
        .stats__inner {
          grid-template-columns: 1fr;
        }

        .footer__legal {
          flex-wrap: wrap;
          gap: 0.8rem 1.2rem;
        }
      }

      /* =========================================
       SOLUTIONS DROPDOWN (DESKTOP)
    ========================================= */
      .nav__item { list-style: none; }
      .nav__item--dropdown { position: relative; }

      .nav__dropdown-trigger {
        background: none; border: none; cursor: pointer;
        display: flex; align-items: center; gap: 0.4rem;
        padding-bottom: 3px;
      }

      .nav__dropdown-chevron {
        width: 10px; height: 7px; color: var(--gold);
        transition: transform 0.25s ease; flex-shrink: 0;
      }
      .nav__dropdown-trigger[aria-expanded="true"] .nav__dropdown-chevron {
        transform: rotate(180deg);
      }

      .nav__dropdown {
        position: absolute; top: calc(100% + 12px);
        left: 50%; transform: translateX(-50%) translateY(-6px);
        min-width: 280px; background: var(--white);
        border: 1px solid var(--rule); border-top: 2px solid var(--gold);
        box-shadow: 0 8px 32px rgba(67, 56, 202,0.12);
        list-style: none; padding: 0.5rem 0; z-index: 203;
        opacity: 0; visibility: hidden;
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
        pointer-events: none;
      }
      .nav__dropdown.is-open {
        opacity: 1; visibility: visible;
        transform: translateX(-50%) translateY(0);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s;
        pointer-events: auto;
      }
      .nav__dropdown li:nth-child(2) { border-bottom: 1px solid var(--rule); padding-bottom: 0.5rem; margin-bottom: 0.5rem; }

      .nav__dropdown-link {
        display: flex; flex-direction: column; gap: 0.15rem;
        padding: 0.8rem 1.4rem;
        border-left: 2px solid transparent;
        transition: background 0.15s, border-color 0.15s;
      }
      .nav__dropdown-link:hover { background: var(--cream-mid); border-left-color: var(--gold); }
      .nav__dropdown-link-name {
        font-family: var(--font-label); font-size: 0.78rem;
        letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy);
      }
      .nav__dropdown-link-desc { font-family: var(--font-body); font-size: 0.82rem; color: var(--muted); }

      /* =========================================
       MOBILE ACCORDION (SOLUTIONS)
    ========================================= */
      .nav__drawer-item { border-bottom: 1px solid var(--rule); }
      .nav__drawer-item:first-child { border-top: 1px solid var(--rule); }
      .nav__drawer-accordion-trigger {
        background: none; border: none; width: 100%; text-align: left; cursor: pointer;
      }
      .nav__drawer-accordion-chevron {
        width: 18px; height: 18px; color: var(--gold);
        transition: transform 0.3s ease; flex-shrink: 0;
      }
      .nav__drawer-accordion-trigger[aria-expanded="true"] .nav__drawer-accordion-chevron {
        transform: rotate(180deg);
      }
      .nav__drawer-subnav {
        max-height: 0; overflow: hidden; list-style: none;
        transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
      }
      .nav__drawer-subnav.is-open { max-height: 400px; }
      .nav__drawer-sublink {
        display: block; font-family: var(--font-label); font-size: 0.78rem;
        letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
        padding: 0.75rem 0 0.75rem 1.5rem; border-bottom: 1px solid var(--rule);
        transition: color 0.2s;
      }
      .nav__drawer-sublink:last-child { border-bottom: none; }
      .nav__drawer-sublink:hover { color: var(--gold); }

      /* Stagger delays for new 2-item drawer */
      .nav__drawer.is-open .nav__drawer-link:nth-child(1) { transition-delay: 0.08s; }
      .nav__drawer.is-open .nav__drawer-link:nth-child(2) { transition-delay: 0.13s; }
      .nav__drawer.is-open .nav__drawer-link:nth-child(3) { transition-delay: 0; }
      .nav__drawer.is-open .nav__drawer-link:nth-child(4) { transition-delay: 0; }
      .nav__drawer.is-open .nav__drawer-link:nth-child(5) { transition-delay: 0; }
      .nav__drawer.is-open .nav__drawer-link:nth-child(6) { transition-delay: 0; }

      /* Product page hero */
      .product-hero {
        background: var(--navy-deep);
        min-height: 60vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        position: relative;
        overflow: hidden;
        padding-top: 72px;
      }
      .product-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image:
          linear-gradient(rgba(79, 70, 229, 0.04) 1px, transparent 1px),
          linear-gradient(90deg, rgba(79, 70, 229, 0.04) 1px, transparent 1px);
        background-size: 80px 80px;
        pointer-events: none;
      }
      .product-hero__inner {
        position: relative;
        z-index: 1;
        max-width: var(--max-w);
        margin: 0 auto;
        padding: clamp(3rem,6vw,6rem) var(--pad-x);
        width: 100%;
      }
      .product-hero__label {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
      }
      .product-hero__label-line {
        width: 40px;
        height: 1px;
        background: var(--gold);
      }
      .product-hero__heading {
        color: var(--white);
        margin-bottom: 1.5rem;
      }
      .product-hero__tagline {
        color: var(--steel);
        font-size: 1.15rem;
        line-height: 1.7;
        max-width: 560px;
        margin-bottom: 2.5rem;
      }
      .product-hero__actions {
        display: flex;
        align-items: center;
        gap: 2rem;
        flex-wrap: wrap;
      }
      .product-hero__divider {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--gold), transparent);
      }

      /* Contact strip on product pages */
      .contact-strip {
        background: var(--navy);
        padding: clamp(3rem, 5vw, 5rem) 0;
        text-align: center;
      }
      .contact-strip__heading {
        color: var(--white);
        margin-bottom: 1rem;
      }
      .contact-strip__text {
        color: var(--steel);
        font-size: 1.05rem;
        max-width: 500px;
        margin: 0 auto 2rem;
        line-height: 1.7;
      }

      /* =========================================
         LANGUAGE SWITCHER
      ========================================= */
      .nav__lang {
        display: flex;
        align-items: center;
        gap: 0.3rem;
        margin-left: 1.2rem;
      }

      .nav__lang-btn {
        background: none;
        border: 1px solid transparent;
        font-family: var(--font-label);
        font-size: 0.72rem;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--muted);
        cursor: pointer;
        padding: 0.3rem 0.5rem;
        transition: color 0.2s, border-color 0.2s;
        line-height: 1;
      }

      .nav__lang-btn:hover {
        color: var(--navy);
      }

      .nav__lang-btn.is-active {
        color: var(--navy);
        border-color: var(--navy);
      }

      .nav__lang-sep {
        font-family: var(--font-label);
        font-size: 0.65rem;
        color: var(--rule);
        pointer-events: none;
        user-select: none;
      }

      @media (max-width: 768px) {
        .nav__lang {
          margin-left: 0;
        }
      }

      /* ============================================================
         MODERN REDESIGN LAYER — corporate / HD (2026)
         Layered last: re-themes the shape language site-wide while
         preserving the original structure & class names.
         ============================================================ */

      html { font-size: 17px; }
      body {
        letter-spacing: -0.005em;
        -webkit-font-smoothing: antialiased;
        text-rendering: optimizeLegibility;
      }

      /* Typography — Space Grotesk display, tuned for sans */
      h1, h2, h3, h4, h5 { font-family: var(--font-display); letter-spacing: -0.02em; }
      .display-xl { font-weight: 500; letter-spacing: -0.035em; line-height: 1.04; }
      .display-lg { font-weight: 600; letter-spacing: -0.03em; line-height: 1.08; }
      .display-md { font-weight: 600; letter-spacing: -0.025em; line-height: 1.14; }
      .display-sm { font-weight: 600; letter-spacing: -0.02em; }
      .label {
        font-family: var(--font-label);
        font-weight: 600;
        letter-spacing: 0.12em;
        font-size: 0.72rem;
      }
      .IntelliRoute__product-name,
      .health__product-name { font-weight: 600; letter-spacing: -0.035em; }

      /* Buttons — rounded, sentence case, hover lift */
      .btn-primary, .btn-ghost, .form-submit {
        font-family: var(--font-body);
        font-weight: 600;
        font-size: 0.95rem;
        letter-spacing: 0;
        text-transform: none;
        border-radius: 10px;
        padding: 0.85rem 1.7rem;
      }
      .btn-primary {
        box-shadow: var(--shadow-md);
        transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
      }
      .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
        filter: brightness(1.07);
        background: var(--gold);
        color: var(--white);
      }
      .btn-ghost {
        background: var(--white);
        color: var(--ink);
        border: 1px solid var(--rule);
        transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
      }
      .btn-ghost:hover {
        transform: translateY(-2px);
        border-color: var(--navy);
        color: var(--navy);
        box-shadow: var(--shadow-sm);
      }
      .form-submit {
        width: 100%;
        padding: 1rem 2rem;
        box-shadow: var(--shadow-md);
        transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
      }
      .form-submit:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
        filter: brightness(1.07);
        background: var(--navy);
        color: var(--white);
      }

      /* Nav — glassy, modern sans links */
      .nav {
        background: rgba(255, 255, 255, 0.82);
        backdrop-filter: saturate(180%) blur(14px);
        -webkit-backdrop-filter: saturate(180%) blur(14px);
        border-bottom: 1px solid var(--rule);
      }
      .nav.scrolled { box-shadow: var(--shadow-sm); }
      .nav__link {
        font-family: var(--font-body);
        font-weight: 500;
        font-size: 0.95rem;
        letter-spacing: 0;
        text-transform: none;
        color: var(--ink);
      }
      .nav__logo-name { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; }
      .nav__logo-sub { font-family: var(--font-label); letter-spacing: 0.14em; }
      .nav__cta {
        font-family: var(--font-body);
        font-weight: 600;
        font-size: 0.9rem;
        letter-spacing: 0;
        text-transform: none;
        border-radius: 8px;
        padding: 0.6rem 1.2rem;
        transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
      }
      .nav__cta:hover {
        transform: translateY(-1px);
        box-shadow: var(--shadow-sm);
        filter: brightness(1.07);
        background: var(--navy);
        color: var(--white);
      }
      .nav__lang-btn { font-family: var(--font-body); font-weight: 600; }

      /* Inputs — rounded with focus ring */
      .form-input, .form-select, .form-textarea {
        border-radius: 10px;
        padding: 0.85rem 1rem;
        transition: border-color 0.16s ease, box-shadow 0.16s ease;
      }
      .form-input:focus, .form-select:focus, .form-textarea:focus {
        border-color: var(--navy-mid);
        box-shadow: var(--ring);
      }
      .form-label { font-family: var(--font-label); font-weight: 600; letter-spacing: 0.02em; text-transform: none; }

      /* Cards & surfaces — radius, elevation, hover */
      .solution-card {
        border: 1px solid var(--rule);
        border-radius: var(--radius-lg);
        background: var(--white);
        box-shadow: var(--shadow-sm);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
      }
      .solution-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); background: var(--white); }
      .infra-card {
        border-radius: var(--radius);
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.12);
        transition: background 0.2s ease, transform 0.2s ease;
      }
      .infra-card:hover { background: rgba(255, 255, 255, 0.09); transform: translateY(-3px); }
      .process-step { border-radius: var(--radius); }

      /* Feature cells — rounded hover tint */
      .IntelliRoute__feature, .health__feature { transition: background 0.2s ease; border-radius: var(--radius); }
      .IntelliRoute__feature:hover { background: var(--cream-mid); }
      .health__feature:hover { background: rgba(255, 255, 255, 0.05); }

      /* Chips / tags — pills */
      .IntelliRoute__integration-item, .health__integration-item {
        border-radius: var(--radius-pill);
        border: 1px solid var(--rule);
        background: rgba(255, 255, 255, 0.04);
        padding: 0.4rem 0.95rem;
      }

      /* Media — rounded, elevated */
      .about__image, .development__image { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
      .infrastructure__bg img { border-radius: 0; }

      /* Stats — refined number weight */
      .IntelliRoute__stat-num, .health__stat-num, .stat__num,
      .health__outcome-num, .development__badge-num { font-weight: 600; letter-spacing: -0.02em; }

      /* FAQ accordions — card style */
      .faq__item {
        background: var(--white);
        border: 1px solid var(--rule) !important;
        border-radius: var(--radius) !important;
        padding: 1.15rem 1.4rem !important;
        box-shadow: var(--shadow-xs);
        transition: box-shadow 0.2s ease;
      }
      .faq__item:hover { box-shadow: var(--shadow-sm); }
      .faq__item summary { font-weight: 600 !important; }

      /* Product wordmark — enterprise indigo / one emerald accents kept */
      .IntelliRoute__product-tag, .health__product-tag { font-family: var(--font-display); font-weight: 500; font-style: normal; }

      /* ============================================================
         MOTION LAYER — entrances, staggers, micro-interactions
         ============================================================ */

      /* Smoother scroll-reveal easing (refines existing .fade-up) */
      .fade-up {
        transform: translateY(26px);
        transition:
          opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1),
          transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
        will-change: opacity, transform;
      }

      /* Staggered children (applied by JS to grids/rows/lists) */
      .anim-child {
        opacity: 0;
        transform: translateY(22px);
        transition:
          opacity 0.72s cubic-bezier(0.22, 0.61, 0.36, 1),
          transform 0.72s cubic-bezier(0.22, 0.61, 0.36, 1);
        will-change: opacity, transform;
      }
      .anim-in .anim-child { opacity: 1; transform: none; }

      /* Hero entrance sequence (runs on load) */
      @keyframes heroRise {
        from { opacity: 0; transform: translateY(28px); }
        to   { opacity: 1; transform: translateY(0); }
      }
      .hero__eyebrow,
      .hero__heading,
      .hero__body,
      .hero__actions,
      .hero__scroll {
        opacity: 0;
        animation: heroRise 0.95s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
      }
      .hero__eyebrow  { animation-delay: 0.15s; }
      .hero__heading  { animation-delay: 0.30s; }
      .hero__body     { animation-delay: 0.52s; }
      .hero__actions  { animation-delay: 0.70s; }
      .hero__scroll   { animation-delay: 1.0s; }

      /* Accent word in hero — subtle shimmer sweep once revealed */
      @keyframes accentGlow {
        0%, 100% { opacity: 1; }
        50%      { opacity: 0.82; }
      }
      .hero__heading em { animation: accentGlow 4.5s ease-in-out 1.6s infinite; }

      /* Micro-interactions --------------------------------------- */

      /* Feature icons lift on card hover */
      .IntelliRoute__feature-icon,
      .health__feature-icon {
        transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1), color 0.28s ease;
      }
      .IntelliRoute__feature:hover .IntelliRoute__feature-icon,
      .health__feature:hover .health__feature-icon {
        transform: translateY(-4px) scale(1.08);
      }

      /* Chips lift + brand border on hover */
      .IntelliRoute__integration-item,
      .health__integration-item {
        transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
      }
      .IntelliRoute__integration-item:hover,
      .health__integration-item:hover {
        transform: translateY(-2px);
        border-color: var(--navy-mid);
        background: var(--gold-pale);
      }

      /* Capability rows nudge on hover */
      .health__cap-item,
      .cap-item {
        transition: transform 0.2s ease;
      }
      .health__cap-item:hover,
      .cap-item:hover { transform: translateX(4px); }

      /* Arrows / chevrons slide on hover */
      .solution-card__link svg,
      .nav__drawer-link svg {
        transition: transform 0.22s cubic-bezier(0.22, 0.61, 0.36, 1);
      }
      .solution-card__link:hover svg,
      .nav__drawer-link:hover svg { transform: translateX(5px); }

      /* Buttons: gentle press feedback */
      .btn-primary:active,
      .btn-ghost:active,
      .nav__cta:active,
      .form-submit:active { transform: translateY(0) scale(0.985); }

      /* FAQ marker rotate on open */
      .faq__item summary { transition: color 0.2s ease; list-style: none; }
      .faq__item summary::-webkit-details-marker { display: none; }

      /* Nav shadow/scale settle */
      .nav { transition: box-shadow 0.3s ease, background 0.3s ease; }

      /* Respect reduced-motion preference ------------------------ */
      @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
          animation-duration: 0.001ms !important;
          animation-iteration-count: 1 !important;
          transition-duration: 0.001ms !important;
          scroll-behavior: auto !important;
        }
        .fade-up,
        .anim-child,
        .hero__eyebrow,
        .hero__heading,
        .hero__body,
        .hero__actions,
        .hero__scroll {
          opacity: 1 !important;
          transform: none !important;
        }
      }
