      /* =========================================
       TOKENS & RESET
    ========================================= */
      :root {
        --navy: #1b2a4a;
        --navy-deep: #111c34;
        --navy-mid: #243558;
        --gold: #9b7d3a;
        --gold-light: #c4a35a;
        --gold-pale: #e8d9b5;
        --cream: #f4f0e8;
        --cream-dark: #eae5d8;
        --cream-mid: #f0ece3;
        --charcoal: #1e1e1e;
        --ink: #2c2c2c;
        --muted: #6a6560;
        --steel: #8c9aaf;
        --rule: #d0cabb;
        --white: #fafaf6;
        --health: #2a6f6a;
        --health-light: #48a99a;
        --health-pale: #d2eae8;

        --font-display: "Cormorant Garamond", "Georgia", serif;
        --font-body: "Crimson Pro", "Georgia", serif;
        --font-label: "EB Garamond", "Georgia", serif;

        --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(27, 42, 74, 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(155, 125, 58, 0.04) 1px, transparent 1px),
          linear-gradient(90deg, rgba(155, 125, 58, 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(140, 154, 175, 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(27, 42, 74, 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(140, 154, 175, 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(140, 154, 175, 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(140, 154, 175, 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(140, 154, 175, 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(155, 125, 58, 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(155, 125, 58, 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(140, 154, 175, 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(4.5rem, 11vw, 11rem);
        font-weight: 300;
        color: var(--navy);
        line-height: 0.88;
        letter-spacing: -0.02em;
      }

      .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: 2.6rem;
        font-weight: 300;
        color: var(--navy);
        line-height: 1;
      }

      .IntelliRoute__stat-num em {
        font-style: normal;
        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(72, 169, 154, 0.04) 1px, transparent 1px),
          linear-gradient(90deg, rgba(72, 169, 154, 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(140, 154, 175, 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(140, 154, 175, 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(140, 154, 175, 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(140, 154, 175, 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(72, 169, 154, 0.06);
        padding: 1.8rem 1.5rem;
        transition: background 0.3s;
      }

      .health__analytics-card:hover {
        background: rgba(72, 169, 154, 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(140, 154, 175, 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(140, 154, 175, 0.7);
        margin-top: 0.35rem;
        margin-bottom: 0.45rem;
      }

      .health__outcome-desc {
        font-size: 0.8rem;
        line-height: 1.55;
        color: rgba(140, 154, 175, 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(72, 169, 154, 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(250, 250, 246, 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(72, 169, 154, 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);
        }
      }

      @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(27,42,74,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(155, 125, 58, 0.04) 1px, transparent 1px),
          linear-gradient(90deg, rgba(155, 125, 58, 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;
      }
