
    :root {
      --bg: #08111d;
      --bg-soft: #0d1728;
      --surface: rgba(255, 255, 255, 0.04);
      --surface-strong: rgba(255, 255, 255, 0.08);
      --line: rgba(255, 255, 255, 0.1);
      --line-strong: rgba(255, 255, 255, 0.16);
      --text: #edf3fb;
      --muted: #a6b6cb;
      --heading: #ffffff;
      --accent: #4a90f7;
      --accent-strong: #6aaefb;
      --accent-soft: rgba(74, 144, 247, 0.10);
      --success: #4dd88a;
      --danger: #ff8a8a;
      --shadow: 0 22px 60px rgba(1, 7, 16, 0.36);
      --radius: 24px;
      --radius-md: 18px;
      --radius-sm: 12px;
      --container: 1540px;
      --nav-height: 86px;
      --heading-font: "Aptos Display", "Segoe UI Variable Display", "Trebuchet MS", "Segoe UI", sans-serif;
      --body-font: "Aptos", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: var(--body-font);
      color: var(--text);
      background:
        radial-gradient(circle at top left, rgba(74, 144, 247, 0.07), transparent 34%),
        radial-gradient(circle at top right, rgba(74, 144, 247, 0.08), transparent 28%),
        linear-gradient(180deg, #09111d 0%, #0b1423 34%, #08111d 100%);
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      overflow-x: hidden;
    }

    body.nav-open {
      overflow: hidden;
    }

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

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

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

    /* the picture element only wraps WebP-with-PNG-fallback; keep it transparent to layout */
    picture {
      display: contents;
    }

    .skip-link {
      position: absolute;
      top: -48px;
      left: 16px;
      z-index: 1001;
      padding: 10px 16px;
      border-radius: 999px;
      background: #ffffff;
      color: #08111d;
      transition: top 0.2s ease;
    }

    .skip-link:focus {
      top: 16px;
    }

    .page-shell::before,
    .page-shell::after {
      content: "";
      position: fixed;
      inset: auto;
      width: 30vw;
      height: 30vw;
      border-radius: 50%;
      pointer-events: none;
      filter: blur(70px);
      opacity: 0.26;
      z-index: -1;
    }

    .page-shell::before {
      top: -10vw;
      left: -8vw;
      background: rgba(74, 144, 247, 0.18);
    }

    .page-shell::after {
      right: -8vw;
      bottom: -10vw;
      background: rgba(56, 189, 248, 0.12);
    }

    .container {
      width: min(var(--container), calc(100% - 48px));
      margin: 0 auto;
    }

    .section {
      padding: 92px 0;
    }

    .defer-section {
      content-visibility: auto;
      contain-intrinsic-size: 1px 900px;
    }

    .section-rule {
      width: min(var(--container), calc(100% - 32px));
      margin: 0 auto;
      border: 0;
      border-top: 1px solid var(--line);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 14px;
      border: 1px solid rgba(74, 144, 247, 0.18);
      border-radius: 999px;
      background: rgba(74, 144, 247, 0.06);
      color: #a8c8fc;
      font-size: 0.72rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      font-weight: 700;
    }

    .section-head {
      max-width: 680px;
      margin-bottom: 34px;
    }

    .section-head h2,
    .section-head h3 {
      margin: 14px 0 14px;
      font-family: var(--heading-font);
      font-size: clamp(2rem, 3vw, 3rem);
      line-height: 1.08;
      letter-spacing: -0.04em;
      color: var(--heading);
    }

    .section-head p,
    .section-copy {
      margin: 0;
      color: var(--muted);
      font-size: 1rem;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 1000;
      border-bottom: 1px solid rgba(0, 0, 0, 0.08);
      background: rgba(220, 230, 245, 0.97);
      backdrop-filter: saturate(180%) blur(14px);
      -webkit-backdrop-filter: saturate(180%) blur(14px);
    }

    .nav {
      min-height: var(--nav-height);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 16px;
      min-width: 0;
      text-decoration: none;
    }

    .brand-logo {
      display: block;
      height: 56px;
      width: auto;
      object-fit: contain;
    }

    .brand-tagline-unused {
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
      line-height: 1;
    }

    .brand-divider {
      width: 1px;
      height: 32px;
      background: rgba(255,255,255,0.12);
      flex-shrink: 0;
    }

    .nav-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
      font-size: 0.88rem;
      font-weight: 500;
    }

    .nav-links a {
      position: relative;
      color: rgba(15, 30, 60, 0.70);
      transition: color 0.2s ease;
      padding-bottom: 4px;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 50%;
      width: 0;
      height: 2px;
      background: var(--accent);
      border-radius: 2px;
      transition: width 0.28s ease, left 0.28s ease;
    }

    .nav-links a:hover,
    .nav-links a:focus-visible {
      color: #0d1f45;
    }

    .nav-links a:hover::after,
    .nav-links a:focus-visible::after {
      width: 100%;
      left: 0;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }

    .nav-actions .button-outline {
      border-color: rgba(10, 25, 60, 0.35);
      color: #0a193c;
      background: transparent;
    }

    .nav-actions .button-outline:hover,
    .nav-actions .button-outline:focus-visible {
      background: rgba(10, 25, 60, 0.08);
      border-color: rgba(10, 25, 60, 0.55);
      transform: translateY(-2px);
    }

    /* ── Hamburger button (hidden on desktop) ── */
    .nav-hamburger {
      display: none;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      padding: 0;
      border: 1px solid rgba(15, 30, 60, 0.18);
      border-radius: 12px;
      background: rgba(15, 30, 60, 0.06);
      cursor: pointer;
      color: #0d1f45;
      transition: background 0.2s ease, border-color 0.2s ease;
      flex-shrink: 0;
    }

    .nav-hamburger:hover {
      background: rgba(15, 30, 60, 0.12);
      border-color: rgba(15, 30, 60, 0.28);
    }

    .nav-hamburger svg {
      transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .nav-hamburger .icon-close {
      display: none;
    }

    .nav-hamburger[aria-expanded="true"] .icon-open {
      display: none;
    }

    .nav-hamburger[aria-expanded="true"] .icon-close {
      display: block;
    }

    /* ── Mobile drawer ── */
    .nav-drawer {
      display: none;
      flex-direction: column;
      gap: 0;
      background:
        linear-gradient(180deg, rgba(232, 238, 247, 0.98), rgba(220, 229, 242, 0.97));
      border-top: 1px solid transparent;
      border-bottom: 1px solid transparent;
      overflow: hidden;
      max-height: 0;
      pointer-events: none;
      visibility: hidden;
      box-shadow: none;
      transition:
        max-height 0.36s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.28s ease,
        border-color 0.2s ease,
        box-shadow 0.28s ease,
        visibility 0s linear 0.36s;
      opacity: 0;
    }

    .nav-drawer.is-open {
      max-height: min(640px, calc(100vh - var(--nav-height)));
      border-top-color: rgba(13, 31, 69, 0.10);
      border-bottom-color: rgba(13, 31, 69, 0.12);
      pointer-events: auto;
      visibility: visible;
      box-shadow: 0 22px 50px rgba(10, 18, 35, 0.18);
      transition-delay: 0s;
      opacity: 1;
    }

    .nav-drawer-inner {
      padding: 8px 0 20px;
    }

    .nav-drawer-links {
      display: flex;
      flex-direction: column;
      padding: 0 20px;
    }

    .nav-drawer-links a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 14px 0;
      color: rgba(13, 31, 69, 0.82);
      font-size: 1rem;
      font-weight: 600;
      border-bottom: 1px solid rgba(13, 31, 69, 0.08);
      transition: color 0.2s ease, padding-left 0.2s ease, background 0.2s ease;
      text-decoration: none;
    }

    .nav-drawer-links a:last-child {
      border-bottom: none;
    }

    .nav-drawer-links a:hover {
      color: #0d1f45;
      padding-left: 4px;
    }

    .nav-drawer-links a:focus-visible {
      color: #0d1f45;
      background: rgba(74, 144, 247, 0.08);
      outline: none;
    }

    .nav-drawer-links a::before {
      content: '';
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--accent);
      flex-shrink: 0;
      opacity: 0.6;
    }

    .nav-drawer-actions {
      display: flex;
      gap: 10px;
      padding: 16px 20px 4px;
    }

    .nav-drawer-actions a {
      flex: 1 1 0;
    }

    .nav-drawer-actions .button-outline {
      border-color: rgba(10, 25, 60, 0.22);
      color: #0a193c;
      background: rgba(255, 255, 255, 0.22);
    }

    .nav-drawer-actions .button-outline:hover,
    .nav-drawer-actions .button-outline:focus-visible {
      background: rgba(74, 144, 247, 0.08);
      border-color: rgba(10, 25, 60, 0.38);
    }

    .button,
    .button-outline,
    .button-soft {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 44px;
      padding: 0 20px;
      border-radius: 999px;
      border: 1px solid transparent;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
      cursor: pointer;
      font-weight: 700;
      font-size: 0.88rem;
      white-space: nowrap;
    }

    .button {
      background: linear-gradient(135deg, #4a90f7 0%, #1a6ee0 100%);
      color: #ffffff;
      box-shadow: 0 8px 24px rgba(26, 110, 224, 0.28);
    }

    .button:hover,
    .button:focus-visible {
      transform: translateY(-2px);
      box-shadow: 0 14px 32px rgba(26, 110, 224, 0.40);
    }

    .button-outline {
      background: transparent;
      border-color: rgba(255, 255, 255, 0.15);
      color: var(--heading);
    }

    .button-outline:hover,
    .button-outline:focus-visible {
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(255, 255, 255, 0.28);
      transform: translateY(-2px);
    }

    .button-soft {
      background: rgba(255, 255, 255, 0.06);
      border-color: rgba(255, 255, 255, 0.08);
      color: var(--heading);
    }

    .button-soft:hover,
    .button-soft:focus-visible {
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-2px);
    }

    .hero {
      padding: 46px 0 72px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(
        circle at 85% 50%,
        rgba(74, 144, 247, 0.08),
        transparent 42%
      );
      pointer-events: none;
      z-index: 0;
    }

    .hero .container {
      position: relative;
      z-index: 1;
    }

    .breadcrumb {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 24px;
      color: #c0cede;
      font-size: 0.86rem;
    }

    .breadcrumb span:last-child {
      color: var(--heading);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
      gap: 34px;
      align-items: start;
    }

    .hero-copy-wrap {
      padding-top: 8px;
    }

    .hero h1 {
      margin: 16px 0 14px;
      font-family: var(--heading-font);
      font-size: clamp(2.6rem, 5vw, 5rem);
      line-height: 0.98;
      letter-spacing: -0.055em;
      color: var(--heading);
      max-width: 13ch;
    }

    .hero-subheadline {
      margin: 0 0 18px;
      font-family: var(--heading-font);
      font-size: clamp(1.08rem, 1.8vw, 1.34rem);
      line-height: 1.4;
      letter-spacing: -0.03em;
      color: #a8c8fc;
      max-width: 28ch;
    }

    .hero-copy {
      margin: 0;
      max-width: 62ch;
      color: var(--muted);
      font-size: 1rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin: 28px 0 28px;
    }

    .hero-meta {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      margin-top: 32px;
    }

    .hero-stat {
      padding: 18px 18px 16px;
      border-radius: var(--radius-md);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
      border: 1px solid var(--line);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }

    .hero-stat strong {
      display: block;
      margin-bottom: 6px;
      font-family: var(--heading-font);
      font-size: 1.9rem;
      line-height: 1;
      color: var(--heading);
    }

    .hero-stat span {
      display: block;
      font-size: 0.88rem;
      color: var(--muted);
    }

    .hero-form-card {
      position: relative;
      padding: 28px;
      border-radius: var(--radius);
      border: 1px solid rgba(74, 144, 247, 0.18);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
        linear-gradient(160deg, rgba(74, 144, 247, 0.08), rgba(74, 144, 247, 0.02));
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .hero-form-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), transparent 40%);
      pointer-events: none;
    }

    .card-kicker {
      display: inline-flex;
      gap: 8px;
      align-items: center;
      color: #c8dffe;
      font-size: 0.74rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .hero-form-card h2 {
      margin: 0 0 10px;
      font-family: var(--heading-font);
      font-size: 1.7rem;
      line-height: 1.08;
      letter-spacing: -0.04em;
      color: var(--heading);
    }

    .hero-form-card > p {
      margin: 0 0 20px;
      color: #d0dceb;
      font-size: 0.95rem;
    }

    .trust-points {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 18px;
    }

    .trust-points span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      color: var(--muted);
      font-size: 0.81rem;
    }

    .ticker {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 20px;
      padding: 14px 16px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.06);
      color: #d6e4f4;
      font-size: 0.86rem;
    }

    .ticker::before {
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--success);
      box-shadow: 0 0 0 6px rgba(77, 216, 138, 0.12);
      flex: 0 0 auto;
    }

    .section-bands {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 20px;
    }

    .band {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 40px;
      padding: 0 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--line);
      color: var(--muted);
      font-size: 0.84rem;
    }

    .partner-strip {
      padding: 24px 0;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.02);
    }

    .partner-strip strong {
      display: block;
      text-align: center;
      margin-bottom: 12px;
      color: var(--muted);
      font-size: 0.78rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .partner-marquee {
      overflow: hidden;
      white-space: nowrap;
      position: relative;
      -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
      mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
      padding: 4px 0;
    }

    .partner-track {
      display: inline-flex;
      gap: 20px;
      min-width: max-content;
      padding: 0 16px;
      animation: marquee 38s linear infinite;
      align-items: center;
    }

    .partner-logo-capsule {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 160px;
      height: 56px;
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.95);
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
      flex-shrink: 0;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .partner-logo-capsule:hover {
      transform: scale(1.06);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255,255,255,0.1);
    }

    .partner-logo-capsule img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      display: block;
    }

    @keyframes marquee {
      from { transform: translateX(0); }
      to { transform: translateX(calc(-50% - 8px)); }
    }

    @keyframes marquee-reverse {
      from { transform: translateX(calc(-50% - 8px)); }
      to { transform: translateX(0); }
    }

    .client-marquee-wrap {
      display: flex;
      flex-direction: column;
      gap: 14px;
      overflow: hidden;
      -webkit-mask-image: linear-gradient(to right, transparent, #000 120px, #000 calc(100% - 120px), transparent);
      mask-image: linear-gradient(to right, transparent, #000 120px, #000 calc(100% - 120px), transparent);
    }

    .client-marquee-row {
      display: flex;
      width: max-content;
      gap: 16px;
      animation: marquee 90s linear infinite;
    }

    .client-marquee-row.reverse {
      animation-name: marquee-reverse;
    }

    .client-marquee-row.slow {
      animation-duration: 110s;
    }

    .client-marquee-wrap:hover .client-marquee-row {
      animation-play-state: paused;
    }

    .client-marquee-row .partner-logo-capsule {
      width: 140px;
      height: 50px;
      flex-shrink: 0;
    }

    .partner-marquee-row {
      display: flex;
      width: max-content;
      gap: 16px;
      animation: marquee 60s linear infinite;
    }

    .partner-marquee-row.reverse {
      animation-name: marquee-reverse;
    }

    .partner-marquee-row .partner-logo-capsule {
      width: 160px;
      height: 56px;
      flex-shrink: 0;
    }

    .client-marquee-wrap:hover .partner-marquee-row {
      animation-play-state: paused;
    }

    .grid-4,
    .grid-3,
    .grid-2 {
      display: grid;
      gap: 18px;
    }

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

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

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

    .card {
      padding: 24px;
      border-radius: var(--radius-md);
      border: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }

    .card:hover {
      border-color: rgba(74, 144, 247, 0.14);
    }

    .card h3,
    .card h4 {
      margin: 0 0 10px;
      font-family: var(--heading-font);
      font-size: 1.08rem;
      letter-spacing: -0.03em;
      color: var(--heading);
    }

    .card p {
      margin: 0;
      color: var(--muted);
      font-size: 0.92rem;
    }

    .icon-badge {
      width: 42px;
      height: 42px;
      margin-bottom: 16px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(74, 144, 247, 0.18);
      background: rgba(74, 144, 247, 0.06);
      color: #c8dffe;
      font-size: 0.84rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    #who .icon-badge {
      width: 76px;
      height: 76px;
      margin-bottom: 20px;
      border-radius: 22px;
    }

    #who .icon-badge svg {
      width: 36px;
      height: 36px;
    }

    .split {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
      gap: 30px;
      align-items: start;
    }

    .list,
    .bullet-list,
    .chips,
    .project-list {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .list {
      display: grid;
      gap: 10px;
    }

    .list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: var(--muted);
      font-size: 0.94rem;
    }

    .list li::before {
      content: "";
      width: 9px;
      height: 9px;
      margin-top: 8px;
      border-radius: 50%;
      background: var(--accent);
      flex: 0 0 auto;
      box-shadow: 0 0 0 4px rgba(74, 144, 247, 0.08);
    }

    .impact-card {
      padding: 28px;
      border-radius: var(--radius);
      border: 1px solid rgba(255, 138, 138, 0.22);
      background: linear-gradient(180deg, rgba(255, 138, 138, 0.08), rgba(255, 255, 255, 0.03));
      box-shadow: var(--shadow);
    }

    .impact-card h3 {
      margin: 0 0 12px;
      font-family: var(--heading-font);
      font-size: 1.35rem;
      letter-spacing: -0.04em;
    }

    .impact-pills,
    .chips {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 16px;
    }

    .impact-pills span,
    .chips span {
      display: inline-flex;
      align-items: center;
      min-height: 38px;
      padding: 0 14px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.04);
      color: var(--muted);
      font-size: 0.84rem;
    }

    .stats {
      padding: 34px 0;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.02);
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 18px;
    }

    .stats-grid article {
      text-align: center;
      padding: 12px;
    }

    .stats-grid strong {
      display: block;
      margin-bottom: 8px;
      font-family: var(--heading-font);
      font-size: clamp(2rem, 3vw, 2.9rem);
      letter-spacing: -0.05em;
      color: var(--accent-strong);
    }

    .stats-grid span {
      color: var(--muted);
      font-size: 0.86rem;
    }

    .hero-stats .stats-grid article {
      padding: 8px 4px;
    }

    .hero-stats .stats-grid strong {
      font-size: clamp(1.5rem, 2.2vw, 2rem);
      margin-bottom: 4px;
    }

    .hero-stats .stats-grid span {
      font-size: 0.78rem;
    }

    .compare-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 20px;
    }

    .compare-card {
      padding: 24px;
      border-radius: var(--radius-md);
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.04);
    }

    .compare-card.accent {
      border-color: rgba(74, 144, 247, 0.18);
      background: linear-gradient(180deg, rgba(74, 144, 247, 0.06), rgba(255, 255, 255, 0.03));
    }

    .compare-title {
      margin-bottom: 16px;
      font-size: 0.76rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--muted);
      font-weight: 700;
    }

    .compare-note {
      margin-top: 18px;
      padding: 14px 16px;
      border-radius: 14px;
      font-size: 0.9rem;
    }

    .compare-note.bad {
      background: rgba(255, 138, 138, 0.08);
      border: 1px solid rgba(255, 138, 138, 0.16);
      color: #ffc1c1;
    }

    .compare-note.good {
      background: rgba(77, 216, 138, 0.08);
      border: 1px solid rgba(77, 216, 138, 0.16);
      color: #c7ffd7;
    }

    .solution-card .card-label,
    .caps-card .card-label {
      display: inline-block;
      margin-bottom: 12px;
      font-size: 0.76rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #a8c8fc;
    }

    .solution-card ul,
    .caps-card ul {
      display: grid;
      gap: 9px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .solution-card li,
    .caps-card li,
    .project-list li {
      color: var(--muted);
      font-size: 0.9rem;
      padding-bottom: 9px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .solution-card li:last-child,
    .caps-card li:last-child,
    .project-list li:last-child {
      border-bottom: 0;
      padding-bottom: 0;
    }

    .timeline {
      display: grid;
      gap: 16px;
    }

    .timeline-item {
      display: grid;
      grid-template-columns: 72px 1fr;
      gap: 16px;
      align-items: start;
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .timeline-item:last-child {
      border-bottom: 0;
      padding-bottom: 0;
    }

    .timeline-step {
      font-family: var(--heading-font);
      font-size: 2.4rem;
      line-height: 1;
      letter-spacing: -0.06em;
      color: rgba(74, 144, 247, 0.22);
    }

    .timeline-item h3 {
      margin: 0 0 6px;
      font-family: var(--heading-font);
      font-size: 1.02rem;
      letter-spacing: -0.03em;
    }

    .timeline-item p {
      margin: 0;
      color: var(--muted);
      font-size: 0.9rem;
    }

    .project-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px 18px;
    }

    .project-list li {
      padding: 16px 18px;
      border-radius: 16px;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.04);
    }

    .faq-list {
      display: grid;
      gap: 12px;
    }

    .faq-list details {
      border-radius: var(--radius-md);
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.04);
      overflow: hidden;
    }

    .faq-list summary {
      list-style: none;
      cursor: pointer;
      padding: 20px 22px;
      font-weight: 700;
      color: var(--heading);
      position: relative;
      padding-right: 56px;
    }

    .faq-list summary::-webkit-details-marker {
      display: none;
    }

    .faq-list summary::after {
      content: "+";
      position: absolute;
      right: 22px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 1.3rem;
      color: var(--muted);
    }

    .faq-list details[open] summary::after {
      content: "-";
    }

    .faq-list p {
      margin: 0;
      padding: 0 22px 20px;
      color: var(--muted);
      font-size: 0.93rem;
    }

    .cta-panel {
      padding: 36px;
      border-radius: 32px;
      border: 1px solid rgba(74, 144, 247, 0.14);
      background:
        radial-gradient(circle at top right, rgba(74, 144, 247, 0.10), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
      text-align: center;
      box-shadow: var(--shadow);
    }

    .cta-panel h2 {
      margin: 10px 0 12px;
      font-family: var(--heading-font);
      font-size: clamp(2rem, 3vw, 2.9rem);
      line-height: 1.05;
      letter-spacing: -0.05em;
    }

    .cta-panel p {
      margin: 0 auto 24px;
      max-width: 56ch;
      color: var(--muted);
    }

    .contact-panel {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
      gap: 28px;
      align-items: start;
    }

    .contact-details {
      display: grid;
      gap: 18px;
    }

    .contact-box {
      padding: 22px;
      border-radius: var(--radius-md);
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.04);
    }

    .contact-box h3 {
      margin: 0 0 12px;
      font-family: var(--heading-font);
      font-size: 1.12rem;
      letter-spacing: -0.03em;
    }

    .contact-box p,
    .contact-box a {
      margin: 0;
      color: var(--muted);
      font-size: 0.93rem;
    }

    .contact-box a:hover,
    .contact-box a:focus-visible {
      color: var(--heading);
    }

    .contact-links-list {
      list-style: none;
      margin: 14px 0 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .contact-links-list li {
      display: block;
    }

    .contact-link-item {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      color: var(--muted);
      transition: color 0.22s ease, transform 0.22s ease;
      width: fit-content;
    }

    .contact-link-item:hover,
    .contact-link-item:focus-visible {
      color: var(--heading);
      transform: translateX(4px);
    }

    .contact-icon-wrapper {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      display: grid;
      place-items: center;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      color: var(--muted);
      transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
      flex-shrink: 0;
    }

    .contact-link-item:hover .contact-icon-wrapper,
    .contact-link-item:focus-visible .contact-icon-wrapper {
      background: var(--accent-soft);
      border-color: rgba(74, 144, 247, 0.25);
      color: var(--accent-strong);
    }

    .contact-link-item.whatsapp-link:hover .contact-icon-wrapper,
    .contact-link-item.whatsapp-link:focus-visible .contact-icon-wrapper {
      background: rgba(31, 164, 99, 0.14);
      border-color: rgba(31, 164, 99, 0.3);
      color: #24d366;
    }

    .form-card {
      padding: 28px;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
      box-shadow: var(--shadow);
    }

    .form-card h3 {
      margin: 0 0 10px;
      font-family: var(--heading-font);
      font-size: 1.55rem;
      letter-spacing: -0.04em;
    }

    .form-card > p {
      margin: 0 0 18px;
      color: var(--muted);
      font-size: 0.95rem;
    }

    .rfq-form {
      display: grid;
      gap: 14px;
    }

    .field-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .field {
      display: grid;
      gap: 8px;
    }

    .field.full {
      grid-column: 1 / -1;
    }

    label {
      font-size: 0.83rem;
      color: #dce7f5;
      font-weight: 700;
    }

    input,
    select,
    textarea {
      width: 100%;
      min-height: 50px;
      padding: 0 14px;
      border-radius: 14px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(7, 12, 22, 0.6);
      color: var(--heading);
      outline: none;
      transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
    }

    input::placeholder,
    textarea::placeholder {
      color: rgba(166, 182, 203, 0.72);
    }

    textarea {
      min-height: 130px;
      padding: 14px;
      resize: vertical;
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: rgba(74, 144, 247, 0.55);
      box-shadow: 0 0 0 4px rgba(74, 144, 247, 0.08);
      background: rgba(7, 12, 22, 0.78);
    }

    input.error,
    select.error,
    textarea.error {
      border-color: #ff6b6b;
      background: rgba(255, 107, 107, 0.08);
      box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.18);
    }

    input.error:focus,
    select.error:focus,
    textarea.error:focus {
      border-color: #ff4d4d;
      box-shadow: 0 0 0 4px rgba(255, 77, 77, 0.22);
    }

    /* The field wrapper gets a red left-border accent when any child has .error */
    .field:has(.error),
    .checkbox-row:has(.error) {
      position: relative;
      padding-left: 10px;
    }

    .field:has(.error)::before,
    .checkbox-row:has(.error)::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      border-radius: 3px;
      background: #ff6b6b;
    }

    /* The field label turns red when its sibling field has an error */
    .field:has(.error) label {
      color: #ffaaaa;
    }

    option {
      background: var(--bg-soft);
      color: var(--text);
    }

    .field:has([required]) label::after,
    .checkbox-row:has([required]) label::after {
      content: " *";
      color: #ffc1c1;
    }

    .file-drop {
      position: relative;
      padding: 18px;
      border: 1px dashed rgba(255, 255, 255, 0.18);
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.03);
    }

    .file-drop input[type="file"] {
      min-height: auto;
      padding: 0;
      border: 0;
      background: transparent;
      box-shadow: none;
    }

    .file-drop p {
      margin: 0 0 8px;
      color: #dce7f5;
      font-size: 0.9rem;
      font-weight: 700;
    }

    .file-drop small,
    .form-helper,
    .submit-meta {
      color: var(--muted);
      font-size: 0.82rem;
    }

    .checkbox-row {
      display: flex;
      gap: 10px;
      align-items: flex-start;
    }

    .checkbox-row input[type="checkbox"] {
      width: 18px;
      height: 18px;
      min-height: auto;
      margin-top: 3px;
      accent-color: var(--accent);
    }

    .checkbox-row label {
      font-weight: 600;
      line-height: 1.5;
      color: var(--muted);
    }

    .form-feedback {
      display: none;
      padding: 14px 16px;
      border-radius: 14px;
      font-size: 0.9rem;
    }

    .form-feedback.error {
      display: block;
      background: rgba(255, 138, 138, 0.08);
      border: 1px solid rgba(255, 138, 138, 0.16);
      color: #ffc1c1;
    }

    .form-feedback.success {
      display: block;
      background: rgba(77, 216, 138, 0.08);
      border: 1px solid rgba(77, 216, 138, 0.16);
      color: #d4ffe1;
    }

    .seo-copy {
      max-width: 880px;
      margin: 0 auto;
      padding: 0 2px;
    }

    .seo-copy h3 {
      margin: 0 0 12px;
      font-family: var(--heading-font);
      font-size: 1.35rem;
      letter-spacing: -0.04em;
    }

    .seo-copy p {
      margin: 0;
      color: var(--muted);
      font-size: 0.95rem;
    }

    footer {
      padding: 28px 0 42px;
      border-top: 1px solid var(--line);
      color: var(--muted);
      font-size: 0.86rem;
    }

    .footer-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 18px;
    }

    .footer-grid strong {
      color: var(--heading);
      display: block;
      margin-bottom: 6px;
      font-family: var(--heading-font);
      letter-spacing: -0.03em;
    }

    .floating-stack {
      position: fixed;
      right: 20px;
      bottom: 20px;
      z-index: 980;
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: flex-end;
    }

    .floating-button {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 56px;
      padding: 0 20px;
      border-radius: 999px;
      border: 1px solid transparent;
      box-shadow: var(--shadow);
      color: #ffffff;
      font-weight: 700;
    }

    .floating-button svg {
      flex: 0 0 auto;
    }

    .sticky-rfq {
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
    }

    .whatsapp-button {
      background: linear-gradient(135deg, #1fa463 0%, #24d366 100%);
    }

    .mobile-action-bar {
      display: none;
      position: fixed;
      left: 12px;
      right: 12px;
      bottom: 12px;
      z-index: 990;
      gap: 8px;
      padding: 10px;
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(8, 17, 29, 0.94);
      box-shadow: var(--shadow);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }

    .mobile-action-bar a {
      flex: 1 1 0;
      min-height: 48px;
    }

    /* WhatsApp icon-only button inside action bar on mobile */
    .mobile-wa-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      min-height: 48px;
      flex-shrink: 0;
      border-radius: 14px;
      background: linear-gradient(135deg, #1fa463 0%, #24d366 100%);
      color: #ffffff;
      box-shadow: 0 4px 14px rgba(31, 164, 99, 0.30);
      border: none;
    }

    /* Phone icon-only button — mirrors WA button shape, blue accent */
    .mobile-call-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      min-height: 48px;
      flex-shrink: 0;
      border-radius: 14px;
      background: linear-gradient(135deg, #1a6ee0 0%, #4a90f7 100%);
      color: #ffffff;
      box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
      border: none;
    }

    .modal-backdrop {
      position: fixed;
      inset: 0;
      z-index: 1100;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
      background: rgba(4, 8, 15, 0.78);
    }

    .modal-backdrop.is-open {
      display: flex;
    }

    .modal {
      width: min(680px, 100%);
      max-height: min(90vh, 860px);
      overflow: auto;
      padding: 26px;
      border-radius: 28px;
      border: 1px solid rgba(74, 144, 247, 0.14);
      background: linear-gradient(180deg, #0d182a, #09111d);
      box-shadow: var(--shadow);
    }

    .modal-header {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: start;
      margin-bottom: 16px;
    }

    .modal-header h3 {
      margin: 0 0 8px;
      font-family: var(--heading-font);
      font-size: 1.55rem;
      line-height: 1.1;
      letter-spacing: -0.04em;
    }

    .modal-close {
      width: 42px;
      height: 42px;
      flex-shrink: 0;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.05);
      color: var(--heading);
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s ease, transform 0.2s ease;
    }

    .modal-close:hover {
      background: rgba(255, 255, 255, 0.12);
      transform: scale(1.05);
    }

    .hidden {
      display: none !important;
    }

    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 0.45s ease, transform 0.45s ease;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 1400px) {
      .hero-grid,
      .contact-panel,
      .split {
        grid-template-columns: 1fr;
      }

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

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

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

    @media (max-width: 860px) {
      body {
        padding-bottom: 96px;
      }

      .nav {
        min-height: auto;
        padding: 14px 0;
        gap: 12px;
      }

      /* Hide desktop nav links and actions on mobile */
      .nav-links,
      .nav-actions {
        display: none;
      }

      /* Show hamburger */
      .nav-hamburger {
        display: inline-flex;
      }

      /* Show mobile drawer */
      .nav-drawer {
        display: flex;
      }

      .hero {
        padding-top: 32px;
      }

      .hero h1 {
        max-width: none;
      }

      .grid-4,
      .grid-3,
      .grid-2,
      .compare-grid,
      .project-list,
      .field-grid {
        grid-template-columns: 1fr;
      }

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

      .timeline-item {
        grid-template-columns: 1fr;
      }

      .timeline-step {
        font-size: 2rem;
      }

      .floating-stack {
        right: 12px;
        /* action bar height ≈ 68px + 12px bottom offset + 12px gap */
        bottom: 100px;
      }

      /* Hide floating WhatsApp on mobile — it lives in the action bar instead */
      .whatsapp-button {
        display: none;
      }

      .sticky-rfq {
        display: none;
      }

      .mobile-action-bar {
        display: flex;
      }

      .client-marquee-wrap,
      .partner-marquee {
        -webkit-mask-image: linear-gradient(to right, transparent, #000 16px, #000 calc(100% - 16px), transparent);
        mask-image: linear-gradient(to right, transparent, #000 16px, #000 calc(100% - 16px), transparent);
      }

      .client-marquee-row .partner-logo-capsule {
        width: 110px;
        height: 42px;
      }

      .partner-marquee-row .partner-logo-capsule {
        width: 120px;
        height: 46px;
      }
    }

    @media (max-width: 640px) {
      .section {
        padding: 76px 0;
      }

      .hero-form-card,
      .form-card,
      .impact-card,
      .cta-panel,
      .modal {
        padding: 22px;
      }

      .hero-actions {
        width: 100%;
      }

      .hero-meta,
      .stats-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        flex-direction: column;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      .partner-track,
      .reveal,
      .button,
      .button-outline,
      .button-soft {
        animation: none !important;
        transition: none !important;
        transform: none !important;
      }
    }

    /* ── Gallery Section ── */
    .gallery-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 28px;
    }

    .gallery-tab {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 38px;
      padding: 0 16px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.04);
      color: var(--muted);
      font-size: 0.84rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    }

    .gallery-tab:hover {
      background: rgba(74, 144, 247, 0.08);
      border-color: rgba(74, 144, 247, 0.22);
      color: var(--heading);
    }

    .gallery-tab.is-active {
      background: rgba(74, 144, 247, 0.12);
      border-color: rgba(74, 144, 247, 0.35);
      color: #c8dffe;
    }

    .gallery-category {
      display: none;
      gap: 14px;
    }

    .gallery-category.is-active {
      display: grid;
    }

    .gallery-category.layout-4 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    .gallery-category.layout-3 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .gallery-category.layout-2 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

    .gallery-item {
      height: 220px;
      border-radius: var(--radius-sm);
      border: 1px solid rgba(255,255,255,0.07);
      background: rgba(13, 23, 40, 0.6);
      overflow: hidden;
      cursor: zoom-in;
      transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      box-sizing: border-box;
    }

    .gallery-item:hover {
      border-color: rgba(74, 144, 247, 0.3);
      transform: translateY(-3px);
      box-shadow: 0 12px 32px rgba(0,0,0,0.28);
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
      background: transparent;
      border-radius: 0;
      padding: 0;
      box-sizing: border-box;
    }

    /* Lightbox */
    .gallery-lightbox {
      position: fixed;
      inset: 0;
      z-index: 1200;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
      background: rgba(4, 8, 15, 0.90);
      backdrop-filter: blur(8px);
    }

    .gallery-lightbox.is-open {
      display: flex;
    }

    .gallery-lightbox img {
      max-width: min(900px, 94vw);
      max-height: 88vh;
      object-fit: contain;
      border-radius: 16px;
      box-shadow: 0 32px 80px rgba(0,0,0,0.6);
    }

    .gallery-lightbox-close {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.18);
      background: rgba(255,255,255,0.08);
      color: #fff;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s ease;
    }

    .gallery-lightbox-close:hover {
      background: rgba(255,255,255,0.18);
    }

    @media (max-width: 1100px) {
      .gallery-category.layout-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
      .gallery-category.layout-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .gallery-category.layout-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media (max-width: 860px) {
      .gallery-category.layout-4,
      .gallery-category.layout-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .gallery-category.layout-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media (max-width: 560px) {
      .gallery-category.layout-4,
      .gallery-category.layout-3,
      .gallery-category.layout-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .gallery-item {
        height: 160px;
      }
      .gallery-item img {
        transform: scale(1.12);
      }
    }

    @media (max-width: 860px) {
      .client-marquee-wrap,
      .partner-marquee {
        -webkit-mask-image: linear-gradient(to right, transparent, #000 48px, #000 calc(100% - 48px), transparent);
        mask-image: linear-gradient(to right, transparent, #000 48px, #000 calc(100% - 48px), transparent);
      }

      .client-marquee-row .partner-logo-capsule {
        width: 110px;
        height: 42px;
      }

      .partner-marquee-row .partner-logo-capsule {
        width: 120px;
        height: 46px;
      }
    }
  
