/* Bainzy Distribution Home page styles. Extracted from HomeF.html. */

/* ============ DESIGN TOKENS ============ */
    :root {
      --navy-950: #020812;
      --navy-900: #050d18;
      --navy-850: #071421;
      --navy-800: #0a1828;
      --navy-700: #102437;
      --navy-600: #18324a;
      --gold-700: #b77822;
      --gold-600: #c98b34;
      --gold-500: #d79b3f;
      --gold-400: #e8b45b;
      --gold-300: #f4ca75;
      --cream-100: #faf7f1;
      --cream-200: #f5f0e7;
      --cream-300: #ece4d7;
      --white: #ffffff;
      --text-dark: #121927;
      --text-mid: #526073;
      --text-light: #dbe3ed;
      --text-muted: #98a8ba;
      --border-light: rgba(18, 25, 39, 0.10);
      --border-dark: rgba(232, 180, 91, 0.20);
      --shadow-soft: 0 22px 70px rgba(8, 17, 30, 0.10);
      --shadow-card: 0 16px 48px rgba(8, 17, 30, 0.09);
      --radius-xs: 8px;
      --radius-sm: 12px;
      --radius-md: 18px;
      --radius-lg: 28px;
      --container: 1240px;
      --section-space: clamp(56px, 6vw, 92px);
      --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
      --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
      --font-display: var(--bd-font-display);
      --font-body: var(--bd-font-body);
    }

    /* ============ GOOGLE FONTS LOADED BY WORDPRESS ============ */

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    body {
      font-family: var(--font-body);
      background: var(--cream-100);
      color: var(--text-dark);
      line-height: 1.55;
      overflow-x: hidden;
    }

    img, svg {
      display: block;
      max-width: 100%;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button, input, textarea, select {
      font: inherit;
    }

    /* ============ ANIMATION KEYFRAMES ============ */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes slideInLeft {
      from { opacity: 0; transform: translateX(-30px); }
      to { opacity: 1; transform: translateX(0); }
    }

    @keyframes slideInRight {
      from { opacity: 0; transform: translateX(30px); }
      to { opacity: 1; transform: translateX(0); }
    }

    @keyframes scaleIn {
      from { opacity: 0; transform: scale(0.92); }
      to { opacity: 1; transform: scale(1); }
    }

    @keyframes shimmer {
      0% { background-position: -200% center; }
      100% { background-position: 200% center; }
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }

    @keyframes pulse-glow {
      0%, 100% { box-shadow: 0 0 0 0 rgba(232, 180, 91, 0.4); }
      50% { box-shadow: 0 0 20px 8px rgba(232, 180, 91, 0); }
    }

    @keyframes draw-line {
      from { stroke-dashoffset: 1000; }
      to { stroke-dashoffset: 0; }
    }

    @keyframes rotate-slow {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    @keyframes count-up {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes border-glow {
      0%, 100% { border-color: rgba(232, 180, 91, 0.2); }
      50% { border-color: rgba(232, 180, 91, 0.5); }
    }

    @keyframes hero-bg-shift {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    @keyframes grain {
      0%, 100% { transform: translate(0, 0); }
      10% { transform: translate(-5%, -10%); }
      30% { transform: translate(3%, -15%); }
      50% { transform: translate(12%, 9%); }
      70% { transform: translate(9%, 4%); }
      90% { transform: translate(-1%, 7%); }
    }

    @keyframes hero-grid-drift {
      from { background-position: 0 0, 0 0; }
      to { background-position: 64px 64px, 64px 64px; }
    }

    /* ============ REVEAL SYSTEM ============ */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-left {
      opacity: 0;
      transform: translateX(-40px);
      transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
    }

    .reveal-left.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .reveal-right {
      opacity: 0;
      transform: translateX(40px);
      transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
    }

    .reveal-right.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .reveal-scale {
      opacity: 0;
      transform: scale(0.9);
      transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-spring);
    }

    .reveal-scale.visible {
      opacity: 1;
      transform: scale(1);
    }

    .stagger-1 { transition-delay: 0.08s; }
    .stagger-2 { transition-delay: 0.16s; }
    .stagger-3 { transition-delay: 0.24s; }
    .stagger-4 { transition-delay: 0.32s; }
    .stagger-5 { transition-delay: 0.40s; }
    .stagger-6 { transition-delay: 0.48s; }

    /* ============ TYPOGRAPHY SCALE ============ */
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--gold-400);
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin-bottom: 16px;
      opacity: 0;
      animation: fadeInUp 0.6s var(--ease-out) forwards;
    }

    .eyebrow::before {
      content: "";
      width: 32px;
      height: 1.5px;
      background: linear-gradient(90deg, var(--gold-400), transparent);
      opacity: 0.9;
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(1.7rem, 2.8vw, 2.6rem);
      line-height: 1.08;
      letter-spacing: -0.02em;
      font-weight: 400;
      color: var(--text-dark);
      max-width: 760px;
      opacity: 0;
      animation: fadeInUp 0.7s 0.1s var(--ease-out) forwards;
    }

    .section-title .accent,
    .hero-title .accent,
    .cta-title .accent {
      color: var(--gold-400);
      position: relative;
      display: inline;
    }

    .section-title .accent::after {
      content: '';
      position: absolute;
      bottom: 4px;
      left: 0;
      right: 0;
      height: 8px;
      background: linear-gradient(90deg, rgba(232,180,91,0.25), transparent);
      z-index: -1;
      border-radius: 2px;
    }

    .section-lead {
      margin-top: 16px;
      color: var(--text-mid);
      font-size: clamp(0.95rem, 1vw, 1.05rem);
      max-width: 640px;
      line-height: 1.65;
      opacity: 0;
      animation: fadeInUp 0.7s 0.2s var(--ease-out) forwards;
    }

    .dark-section .section-title,
    .dark-section .section-lead {
      color: var(--white);
    }

    .dark-section .section-lead {
      color: var(--text-light);
    }

    /* ============ BUTTONS WITH EFFECTS ============ */
    .btn {
      --btn-bg: transparent;
      --btn-border: transparent;
      --btn-text: currentColor;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 52px;
      padding: 0 26px;
      border: 1px solid var(--btn-border);
      border-radius: var(--radius-xs);
      background: var(--btn-bg);
      color: var(--btn-text);
      font-size: 0.82rem;
      font-weight: 700;
      line-height: 1;
      white-space: nowrap;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s var(--ease-spring), border-color 0.3s, background 0.3s, color 0.3s, box-shadow 0.3s;
    }

    .btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
      transform: translateX(-100%);
      transition: transform 0.5s;
    }

    .btn:hover::before {
      transform: translateX(100%);
    }

    .btn svg {
      width: 16px;
      height: 16px;
      transition: transform 0.3s var(--ease-spring);
    }

    .btn:hover {
      transform: translateY(-3px);
    }

    .btn:hover svg {
      transform: translateX(4px);
    }

    .btn:active {
      transform: translateY(-1px) scale(0.98);
    }

    .btn-primary {
      --btn-bg: linear-gradient(135deg, var(--gold-300), var(--gold-500));
      --btn-border: rgba(255, 214, 143, 0.35);
      --btn-text: #071421;
      box-shadow: 0 12px 32px rgba(215, 155, 63, 0.22);
    }

    .btn-primary:hover {
      box-shadow: 0 18px 44px rgba(215, 155, 63, 0.32);
      animation: pulse-glow 2s infinite;
    }

    .btn-secondary-dark {
      --btn-bg: rgba(8, 20, 34, 0.70);
      --btn-border: rgba(215, 155, 63, 0.55);
      --btn-text: var(--cream-100);
      backdrop-filter: blur(8px);
    }

    .btn-secondary-dark:hover {
      --btn-bg: rgba(8, 20, 34, 0.90);
      border-color: var(--gold-400);
      box-shadow: 0 0 30px rgba(232, 180, 91, 0.15);
    }

    .btn-secondary-light {
      --btn-bg: transparent;
      --btn-border: rgba(215, 155, 63, 0.55);
      --btn-text: var(--gold-700);
    }

    .btn-secondary-light:hover {
      background: rgba(215, 155, 63, 0.08);
      border-color: var(--gold-500);
      color: var(--gold-600);
    }

    /* ============ CONTAINER ============ */
    .container {
      width: min(var(--container), calc(100% - 48px));
      margin-inline: auto;
    }

    /* ============ HERO SECTION ============ */
    .hero {
      position: relative;
      min-height: 700px;
      overflow: hidden;
      background:
        radial-gradient(circle at 73% 30%, rgba(215, 155, 63, 0.16), transparent 32%),
        radial-gradient(circle at 18% 22%, rgba(46, 101, 147, 0.28), transparent 36%),
        linear-gradient(135deg, var(--navy-950), var(--navy-850) 48%, #03101f);
      color: var(--white);
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.052) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.052) 1px, transparent 1px);
      background-size: 64px 64px;
      mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent 78%);
      -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent 78%);
      pointer-events: none;
      will-change: background-position;
      animation: hero-grid-drift 28s linear infinite;
    }

    .hero::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(232, 180, 91, 0.45), transparent);
    }

    .hero-grid {
      position: relative;
      z-index: 1;
      min-height: 700px;
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
      align-items: stretch;
      gap: clamp(44px, 6vw, 76px);
      padding: 116px 0 56px;
    }

    .hero-content {
      align-self: start;
      max-width: 700px;
    }

    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(2.65rem, 4vw, 3.6rem);
      line-height: 1.06;
      letter-spacing: -0.02em;
      font-weight: 400;
      max-width: 700px;
      opacity: 0;
      animation: fadeInUp 1s 0.2s var(--ease-out) forwards;
    }

    .hero-title .accent {
      display: inline-block;
      background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-copy {
      margin-top: 20px;
      width: min(100%, 620px);
      min-height: 5.2em;
      color: var(--text-light);
      font-size: clamp(0.92rem, 1vw, 1.05rem);
      line-height: 1.65;
      font-weight: 400;
      opacity: 0;
      animation: fadeInUp 1s 0.4s var(--ease-out) forwards;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-top: 32px;
      opacity: 0;
      animation: fadeInUp 1s 0.6s var(--ease-out) forwards;
    }

    .hero-proof-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0;
      margin-top: 30px;
      max-width: 700px;
      border-top: 1px solid rgba(255, 255, 255, 0.10);
      border-bottom: 1px solid rgba(255, 255, 255, 0.10);
      opacity: 0;
      animation: fadeInUp 1s 0.8s var(--ease-out) forwards;
    }

    .proof-item {
      display: grid;
      grid-template-columns: 40px minmax(0, 1fr);
      align-items: center;
      column-gap: 10px;
      min-height: 0;
      padding: 14px;
      border: 0;
      border-right: 1px solid rgba(255, 255, 255, 0.10);
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      text-align: left;
      transition: padding 0.35s var(--ease-out), background 0.35s ease;
    }

    .proof-item:hover {
      padding-left: 20px;
      background: linear-gradient(90deg, rgba(232, 180, 91, 0.09), transparent 80%);
      transform: none;
      box-shadow: none;
    }

    .proof-item:last-child {
      border-right: 0;
    }

    .proof-icon,
    .service-icon,
    .process-icon,
    .industry-icon,
    .stat-icon {
      color: var(--gold-400);
    }

    .proof-icon svg,
    .service-icon svg,
    .process-icon svg,
    .industry-icon svg,
    .stat-icon svg {
      width: 100%;
      height: 100%;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .proof-icon {
      align-self: stretch;
      width: 40px;
      min-height: 46px;
      height: auto;
      display: grid;
      place-items: center;
      padding: 8px;
      border: 0;
      border-right: 1px solid rgba(232, 180, 91, 0.35);
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      position: relative;
      transition: border-color 0.35s ease, transform 0.35s var(--ease-out);
      flex-shrink: 0;
    }

    .proof-icon::before {
      display: none;
    }

    .proof-icon svg {
      width: 25px;
      height: 25px;
    }

    .proof-item:hover .proof-icon {
      background: transparent;
      border-color: var(--gold-400);
      transform: translateX(4px);
      box-shadow: none;
    }

    .proof-item strong {
      display: block;
      font-family: var(--font-display);
      color: var(--gold-300);
      font-size: 1rem;
      font-weight: 400;
      letter-spacing: normal;
      text-transform: none;
      line-height: 1.08;
    }

    .proof-content {
      display: block;
      min-width: 0;
    }

    .proof-content > span {
      display: block;
      max-width: 430px;
      margin-top: 4px;
      color: var(--text-muted);
      font-size: 0.76rem;
      line-height: 1.4;
    }

    .hero-visual-space {
      min-height: 0;
      align-self: stretch;
      position: relative;
      overflow: visible;
      isolation: isolate;
    }

    .hero-visual-space::before,
    .hero-visual-space::after { display: none; }

    .network-globe {
      --network-globe-center-x: 56%;
      --network-loader-x: var(--network-globe-center-x);
      position: absolute;
      inset: 0;
      z-index: 1;
      overflow: visible;
      contain: layout;
    }

    .network-globe__canvas {
      position: absolute;
      inset: 0;
      z-index: 1;
      display: block;
      width: 100%;
      height: 100%;
      pointer-events: none;
      opacity: 0;
      transform: scale(0.985);
      transform-origin: var(--network-loader-x) 50%;
      transition: opacity 0.34s ease, transform 0.48s var(--ease-out);
    }

    .network-globe__loader {
      position: absolute;
      left: var(--network-loader-x);
      top: 50%;
      z-index: 2;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--gold-400);
      box-shadow: 0 0 16px rgba(232, 180, 91, 0.7);
      opacity: 0.72;
      transform: translate(-50%, -50%);
      animation: network-globe-loader-pulse 1.15s ease-in-out infinite;
      transition: opacity 0.18s ease, visibility 0s linear 0s;
    }

    .network-globe__loader::after {
      content: '';
      position: absolute;
      inset: -9px;
      border: 1px solid rgba(232, 180, 91, 0.38);
      border-radius: 50%;
      animation: network-globe-loader-ring 1.15s ease-out infinite;
    }

    .network-globe.is-webgl-ready .network-globe__canvas {
      opacity: 1;
      transform: scale(1);
    }

    .network-globe.is-webgl-ready .network-globe__loader,
    .network-globe.is-fallback .network-globe__loader {
      opacity: 0;
      visibility: hidden;
      animation-play-state: paused;
      transition-delay: 0s, 0.18s;
    }

    .network-globe.is-fallback .network-globe__canvas {
      opacity: 0;
    }

    .network-globe__overlay {
      position: absolute;
      inset: 0;
      z-index: 3;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.24s ease;
    }

    .network-globe.is-webgl-ready .network-globe__overlay {
      opacity: 1;
    }

    .network-globe__destinations {
      position: absolute;
      left: var(--network-globe-center-x);
      bottom: 18%;
      width: clamp(128px, 11vw, 150px);
      display: grid;
      transform: translateX(-50%);
    }

    .network-globe__destination {
      grid-area: 1 / 1;
      display: none;
      align-items: center;
      gap: 8px;
      width: 100%;
      padding: 10px 12px;
      border: 1px solid rgba(255, 255, 255, 0.09);
      border-radius: 999px;
      background: rgba(2, 8, 18, 0.64);
      box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
      color: rgba(219, 227, 237, 0.72);
      font-size: 0.58rem;
      font-weight: 750;
      letter-spacing: 0.09em;
      line-height: 1;
      text-transform: uppercase;
      backdrop-filter: blur(9px);
      opacity: 0;
      transform: translateY(7px) scale(0.96);
      transition:
        opacity 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        background-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s var(--ease-out);
    }

    .network-globe__destination-icon {
      position: relative;
      display: grid;
      place-items: center;
      width: 18px;
      height: 18px;
      flex: 0 0 auto;
      border-radius: 50%;
      color: var(--gold-400);
      background: rgba(232, 180, 91, 0.1);
      box-shadow: 0 0 0 1px rgba(232, 180, 91, 0.12);
      opacity: 0;
      transform: scale(0.35);
      transition: opacity 0.22s ease, transform 0.34s var(--ease-out), box-shadow 0.3s ease;
    }

    .network-globe__destination-symbol {
      position: absolute;
      width: 11px;
      height: 11px;
      opacity: 0;
      transform: scale(0.6);
      transition: opacity 0.18s ease, transform 0.3s var(--ease-out);
    }

    .network-globe__destination.is-active,
    .network-globe__destination.is-leaving {
      display: inline-flex;
      color: #f4ca75;
      border-color: rgba(232, 180, 91, 0.52);
      background: rgba(7, 20, 33, 0.92);
      box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28), 0 0 24px rgba(232, 180, 91, 0.10);
    }

    .network-globe__destination.is-active {
      opacity: 1;
      transform: translateY(0) scale(1);
      animation: network-pill-in 0.46s var(--ease-out) both;
    }

    .network-globe__destination.is-leaving {
      pointer-events: none;
      animation: network-pill-out 0.36s ease-in both;
    }

    .network-globe__destination:is(.is-active, .is-leaving) .network-globe__destination-icon {
      opacity: 1;
      transform: scale(1);
      box-shadow: 0 0 0 3px rgba(232, 180, 91, 0.08), 0 0 15px rgba(232, 180, 91, 0.62);
    }

    .network-globe__destination[data-network-direction="outbound"]:is(.is-active, .is-leaving) .network-globe__destination-symbol--supply,
    .network-globe__destination[data-network-direction="inbound"]:is(.is-active, .is-leaving) .network-globe__destination-symbol--market {
      opacity: 1;
      transform: scale(1);
    }

    .network-globe__destination:is(.is-active, .is-leaving) .network-globe__destination-icon::after {
      content: '';
      position: absolute;
      inset: -5px;
      border: 1px solid rgba(232, 180, 91, 0.24);
      border-radius: 50%;
      animation: network-icon-glow 2.6s ease-out infinite;
    }

    .network-globe__label {
      --label-x: 50%;
      --label-y: 50%;
      position: absolute;
      left: 0;
      top: 0;
      padding: 6px 9px;
      border: 1px solid rgba(232, 180, 91, 0.2);
      border-radius: 7px;
      background: rgba(2, 8, 18, 0.82);
      box-shadow: 0 9px 28px rgba(0, 0, 0, 0.28);
      color: #dbe3ed;
      font-size: 0.61rem;
      font-weight: 700;
      letter-spacing: 0.07em;
      line-height: 1;
      text-transform: uppercase;
      white-space: nowrap;
      opacity: 0;
      transform: translate3d(var(--label-x), var(--label-y), 0) translate(-50%, calc(-100% - 10px));
      transition: opacity 0.24s ease, border-color 0.24s ease;
    }

    .network-globe.is-webgl-ready .network-globe__label.is-active {
      opacity: 1;
    }

    .network-globe__label.network-globe__label--origin {
      width: clamp(36px, 3.4vw, 48px);
      height: clamp(36px, 3.4vw, 48px);
      padding: 0;
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      transform: translate3d(var(--label-x), var(--label-y), 0) translate(-50%, -50%);
    }

    .network-globe__origin-mark {
      position: relative;
      display: block;
      width: 100%;
      height: 100%;
      isolation: isolate;
      transform-origin: center;
    }

    .network-globe__origin-icon,
    .network-globe__origin-flag {
      position: absolute;
      inset: 0;
      display: block;
      width: 100%;
      height: 100%;
      object-fit: contain;
      transform-origin: center;
    }

    .network-globe__origin-icon {
      z-index: 2;
    }

    .network-globe__origin-flag {
      z-index: 1;
      opacity: 0;
      transform: scale(0.82);
      filter: drop-shadow(0 0 8px rgba(232, 180, 91, 0.32));
    }

    .network-globe__origin-mark.is-switching .network-globe__origin-icon {
      animation: network-origin-icon-swap 1.6s ease-in-out both;
    }

    .network-globe__origin-mark.is-switching .network-globe__origin-flag {
      animation: network-origin-flag-swap 1.6s ease-in-out both;
    }

    @keyframes network-icon-glow {
      0% { opacity: 0.75; transform: scale(0.72); }
      100% { opacity: 0; transform: scale(1.45); }
    }

    @keyframes network-pill-in {
      from { opacity: 0; transform: translateY(6px) scale(0.97); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }

    @keyframes network-pill-out {
      from { opacity: 1; transform: translateY(0) scale(1); }
      to { opacity: 0; transform: translateY(-5px) scale(0.97); }
    }

    @keyframes network-globe-loader-pulse {
      0%, 100% { opacity: 0.52; box-shadow: 0 0 9px rgba(232, 180, 91, 0.42); }
      50% { opacity: 1; box-shadow: 0 0 22px rgba(232, 180, 91, 0.82); }
    }

    @keyframes network-globe-loader-ring {
      0% { opacity: 0; transform: scale(0.45); }
      28% { opacity: 0.68; }
      100% { opacity: 0; transform: scale(1.35); }
    }

    @keyframes network-origin-icon-swap {
      0%, 24%, 100% { opacity: 1; transform: scale(1); filter: drop-shadow(0 0 4px rgba(232, 180, 91, 0.28)); }
      42%, 66% { opacity: 0; transform: scale(0.18); filter: drop-shadow(0 0 0 rgba(232, 180, 91, 0)); }
      78% { opacity: 1; transform: scale(1.04); filter: drop-shadow(0 0 10px rgba(232, 180, 91, 0.50)); }
    }

    @keyframes network-origin-flag-swap {
      0%, 31%, 76%, 100% { opacity: 0; transform: scale(0.84); }
      42%, 66% { opacity: 1; transform: scale(1); }
    }

    /* ============ LIGHT SECTIONS ============ */
    .light-section {
      background:
        radial-gradient(circle at 20% 15%, rgba(215, 155, 63, 0.08), transparent 32%),
        linear-gradient(180deg, var(--cream-100), #fff);
    }

    .who {
      padding: var(--section-space) 0;
    }

    .who-grid {
      display: grid;
      grid-template-columns: 0.78fr 1.22fr;
      gap: clamp(28px, 4vw, 56px);
      align-items: center;
    }

    .service-cards {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .service-card,
    .industry-card,
    .value-card,
    .insight-card {
      background: rgba(255, 255, 255, 0.86);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-card);
      transition: transform 0.5s var(--ease-out), box-shadow 0.5s, border-color 0.4s;
      position: relative;
      overflow: hidden;
    }

    .service-card::before,
    .industry-card::before,
    .insight-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold-400), var(--gold-600), var(--gold-400));
      background-size: 200% 100%;
      opacity: 0;
      transition: opacity 0.4s;
    }

    .service-card:hover::before,
    .industry-card:hover::before,
    .insight-card:hover::before {
      opacity: 1;
      animation: shimmer 2s infinite;
    }

    .service-card:hover,
    .industry-card:hover,
    .value-card:hover,
    .insight-card:hover {
      transform: translateY(-8px);
      border-color: rgba(215, 155, 63, 0.34);
      box-shadow: 0 28px 80px rgba(8, 17, 30, 0.14);
    }

    .service-card {
      min-height: 380px;
      padding: 32px 28px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .service-icon {
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      background: linear-gradient(145deg, rgba(215, 155, 63, 0.18), rgba(232, 180, 91, 0.10));
      box-shadow: 0 8px 24px rgba(215, 155, 63, 0.15);
      padding: 12px;
      margin-bottom: 20px;
      color: var(--navy-700);
      transition: all 0.5s var(--ease-spring);
    }

    .service-icon svg {
      width: 100%;
      height: 100%;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .service-card:hover .service-icon {
      background: linear-gradient(145deg, var(--navy-950), var(--navy-700));
      box-shadow: 0 18px 36px rgba(7, 20, 33, 0.25);
      color: var(--gold-400);
      transform: scale(1.08) rotate(-3deg);
    }

    .service-card h3 {
      font-family: var(--font-display);
      color: var(--text-dark);
      font-size: clamp(1.35rem, 1.8vw, 1.7rem);
      line-height: 1.08;
      letter-spacing: -0.02em;
      font-weight: 400;
      margin-bottom: 12px;
    }

    .service-card p {
      color: var(--text-mid);
      font-size: 1rem;
      line-height: 1.7;
      margin-bottom: 12px;
    }

    .check-list {
      list-style: none;
      display: grid;
      gap: 8px;
      margin: 0 0 24px;
    }

    .check-list li {
      position: relative;
      padding-left: 28px;
      color: var(--text-dark);
      font-size: 0.85rem;
      font-weight: 500;
      transition: transform 0.3s;
    }

    .check-list li:hover {
      transform: translateX(4px);
    }

    .check-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 0;
      color: var(--gold-600);
      font-weight: 900;
      transition: transform 0.3s var(--ease-spring);
    }

    .service-card:hover .check-list li::before {
      transform: scale(1.2);
    }

    .text-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--gold-700);
      font-weight: 850;
      font-size: 0.82rem;
      transition: gap 0.3s var(--ease-spring), color 0.3s;
      position: relative;
    }

    .text-link::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 1.5px;
      background: var(--gold-400);
      transition: width 0.4s var(--ease-out);
    }

    .text-link:hover {
      gap: 15px;
      color: var(--gold-600);
    }

    .text-link:hover::after {
      width: 100%;
    }

    /* ============ AUDIENCE DEPTH ============ */
    .audience-depth {
      padding: var(--section-space) 0;
      background:
        radial-gradient(circle at 84% 12%, rgba(215, 155, 63, 0.08), transparent 30%),
        linear-gradient(180deg, #fff, var(--cream-100));
    }

    .audience-depth-head {
      display: grid;
      grid-template-columns: 0.92fr 1fr;
      gap: 48px;
      align-items: end;
      margin-bottom: 32px;
    }

    .audience-routes {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .route-card {
      position: relative;
      overflow: hidden;
      min-height: 400px;
      padding: 32px 28px;
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-light);
      background: #fff;
      box-shadow: var(--shadow-card);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: transform 0.5s var(--ease-out), border-color 0.4s, box-shadow 0.5s;
    }

    .route-card:hover {
      transform: translateY(-8px);
      border-color: rgba(215, 155, 63, 0.34);
      box-shadow: 0 32px 88px rgba(8, 17, 30, 0.15);
    }

    .route-card::before {
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 5px;
      background: linear-gradient(90deg, var(--gold-700), var(--gold-300));
      background-size: 200% 100%;
      animation: shimmer 3s infinite;
    }

    .route-label {
      display: inline-flex;
      width: fit-content;
      align-items: center;
      gap: 10px;
      margin-bottom: 22px;
      color: var(--gold-700);
      font-size: 0.76rem;
      font-weight: 900;
      letter-spacing: 0.13em;
      text-transform: uppercase;
    }

    .route-label::before {
      content: "";
      width: 24px;
      height: 1px;
      background: currentColor;
    }

    .route-card h3 {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 2.2vw, 2.2rem);
      line-height: 1.08;
      letter-spacing: -0.02em;
      font-weight: 400;
      color: var(--text-dark);
      margin-bottom: 12px;
    }

    .route-card p {
      color: var(--text-mid);
      font-size: 1rem;
      line-height: 1.72;
      max-width: 590px;
      margin-bottom: 12px;
    }

    .route-points {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      margin: 18px 0 24px;
      list-style: none;
    }

    .route-points li {
      min-height: 58px;
      display: flex;
      align-items: center;
      gap: 11px;
      padding: 14px 15px;
      border-radius: 12px;
      background: rgba(215, 155, 63, 0.08);
      color: var(--text-dark);
      font-weight: 750;
      font-size: 0.82rem;
      transition: all 0.3s var(--ease-out);
      border: 1px solid transparent;
    }

    .route-points li:hover {
      background: rgba(215, 155, 63, 0.12);
      border-color: rgba(215, 155, 63, 0.2);
      transform: translateX(4px);
    }

    .route-points li::before {
      content: "✓";
      color: var(--gold-600);
      font-weight: 950;
      transition: transform 0.3s var(--ease-spring);
    }

    .route-card:hover .route-points li::before {
      transform: scale(1.3);
    }

    /* ============ BRAND OVERVIEW ============ */
    .brand-overview {
      position: relative;
      overflow: hidden;
      padding: var(--section-space) 0;
      background:
        radial-gradient(circle at 14% 18%, rgba(215, 155, 63, 0.12), transparent 30%),
        radial-gradient(circle at 92% 60%, rgba(54, 105, 148, 0.22), transparent 36%),
        linear-gradient(135deg, var(--navy-950), var(--navy-850));
      color: var(--white);
    }

    .brand-overview::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: linear-gradient(90deg, rgba(232,180,91,0.06) 1px, transparent 1px), linear-gradient(rgba(232,180,91,0.045) 1px, transparent 1px);
      background-size: 72px 72px;
      opacity: 0.28;
      pointer-events: none;
      animation: grain 12s steps(10) infinite;
    }

    .brand-overview-grid,
    .wholesale-overview-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 0.88fr 1.12fr;
      gap: clamp(28px, 4vw, 56px);
      align-items: center;
    }

    .detail-stack {
      display: grid;
      gap: 18px;
    }

    .detail-item {
      padding: 20px;
      border-radius: var(--radius-md);
      border: 1px solid rgba(255,255,255,0.11);
      background: rgba(255,255,255,0.045);
      box-shadow: 0 20px 60px rgba(0,0,0,0.12);
      backdrop-filter: blur(12px);
      transition: all 0.4s var(--ease-out);
      position: relative;
      overflow: hidden;
    }

    .detail-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 3px;
      height: 100%;
      background: linear-gradient(180deg, var(--gold-400), transparent);
      opacity: 0;
      transition: opacity 0.4s;
    }

    .detail-item:hover {
      transform: translateX(6px);
      background: rgba(255,255,255,0.07);
      border-color: rgba(232, 180, 91, 0.2);
      box-shadow: 0 24px 70px rgba(0,0,0,0.18);
    }

    .detail-item:hover::before {
      opacity: 1;
    }

    .detail-item h3 {
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: var(--font-display);
      color: var(--white);
      font-size: 0.78rem;
      line-height: 1.08;
      letter-spacing: -0.02em;
      font-weight: 400;
      margin-bottom: 9px;
    }

    .detail-item h3::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--gold-400);
      box-shadow: 0 0 0 6px rgba(232, 180, 91, 0.12);
      transition: box-shadow 0.4s var(--ease-spring);
    }

    .detail-item:hover h3::before {
      box-shadow: 0 0 0 10px rgba(232, 180, 91, 0.18);
    }

    .detail-item p {
      color: var(--text-muted);
      font-size: 0.85rem;
      line-height: 1.55;
    }

    .overview-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-top: 34px;
    }

    /* ============ WHOLESALE OVERVIEW ============ */
    .wholesale-overview {
      padding: var(--section-space) 0;
      background:
        radial-gradient(circle at 85% 20%, rgba(215, 155, 63, 0.09), transparent 30%),
        linear-gradient(180deg, var(--cream-100), #fff);
    }

    .wholesale-overview-grid {
      grid-template-columns: 1.12fr 0.88fr;
    }

    .supply-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .supply-card {
      min-height: 190px;
      padding: 22px;
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      background: #fff;
      box-shadow: var(--shadow-card);
      transition: transform 0.5s var(--ease-out), border-color 0.4s, box-shadow 0.5s;
      position: relative;
      overflow: hidden;
    }

    .supply-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--gold-400), var(--gold-600));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.5s var(--ease-out);
    }

    .supply-card:hover {
      transform: translateY(-6px);
      border-color: rgba(215, 155, 63, 0.34);
      box-shadow: 0 24px 70px rgba(8, 17, 30, 0.13);
    }

    .supply-card:hover::after {
      transform: scaleX(1);
    }

    .supply-card span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      margin-bottom: 20px;
      background: rgba(215, 155, 63, 0.12);
      color: var(--gold-700);
      font-weight: 950;
      font-size: 0.9rem;
      transition: all 0.4s var(--ease-spring);
    }

    .supply-card:hover span {
      background: var(--gold-400);
      color: var(--navy-950);
      transform: scale(1.1);
      box-shadow: 0 8px 24px rgba(215, 155, 63, 0.3);
    }

    .supply-card h3 {
      font-family: var(--font-display);
      font-size: 1.2rem;
      line-height: 1.08;
      letter-spacing: -0.02em;
      font-weight: 400;
      color: var(--text-dark);
      margin-bottom: 8px;
    }

    .supply-card p {
      color: var(--text-mid);
      font-size: 0.82rem;
      line-height: 1.55;
    }

    /* ============ PROCESS SECTION ============ */
    .process {
      position: relative;
      overflow: hidden;
      padding: 88px 0 82px;
      background:
        radial-gradient(circle at 15% 20%, rgba(215, 155, 63, 0.11), transparent 30%),
        radial-gradient(circle at 88% 30%, rgba(54, 105, 148, 0.24), transparent 34%),
        linear-gradient(135deg, var(--navy-950), var(--navy-850));
      color: var(--white);
    }

    .process::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(232, 180, 91, 0.18) 1px, transparent 1px);
      background-size: 32px 32px;
      opacity: 0.12;
      pointer-events: none;
    }

    .process-head {
      position: relative;
      z-index: 1;
      text-align: center;
      display: grid;
      justify-items: center;
      margin-bottom: 56px;
    }

    .process-head .eyebrow::before {
      display: none;
    }

    .process-head h2 {
      color: var(--white);
      max-width: none;
    }

    .process-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 32px;
    }

    .process-step {
      position: relative;
      text-align: center;
      display: grid;
      justify-items: center;
      align-content: start;
      min-height: 210px;
      transition: transform 0.4s var(--ease-out);
    }

    .process-step:hover {
      transform: translateY(-6px);
    }

    .process-step:not(:last-child)::after {
      content: "";
      position: absolute;
      top: 47px;
      left: calc(50% + 58px);
      width: calc(100% - 82px);
      border-top: 2px dashed rgba(232, 180, 91, 0.40);
      animation: border-glow 3s ease-in-out infinite;
    }

    .process-icon {
      width: 94px;
      height: 94px;
      display: grid;
      place-items: center;
      border: 1.5px solid rgba(232, 180, 91, 0.45);
      border-radius: 50%;
      background: rgba(255,255,255,0.04);
      padding: 25px;
      margin-bottom: 24px;
      color: var(--gold-400);
      transition: all 0.5s var(--ease-spring);
      position: relative;
    }

    .process-icon::before {
      content: '';
      position: absolute;
      inset: -5px;
      border-radius: 50%;
      border: 1px solid rgba(232, 180, 91, 0.15);
      opacity: 0;
      transition: all 0.5s;
    }

    .process-icon svg {
      width: 100%;
      height: 100%;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.6;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .process-step:hover .process-icon {
      background: rgba(232, 180, 91, 0.08);
      border-color: var(--gold-400);
      transform: scale(1.1);
      box-shadow: 0 0 40px rgba(232, 180, 91, 0.12);
    }

    .process-step:hover .process-icon::before {
      opacity: 1;
      inset: -10px;
    }

    .process-step h3 {
      font-family: var(--font-display);
      color: var(--white);
      font-size: clamp(1.05rem, 1.45vw, 1.3rem);
      line-height: 1.08;
      letter-spacing: -0.02em;
      font-weight: 400;
      margin-bottom: 9px;
    }

    .process-step p {
      color: var(--text-muted);
      font-size: 0.82rem;
      line-height: 1.6;
      max-width: 190px;
    }

    /* ============ INDUSTRIES ============ */
    .industries {
      padding: 56px 0 72px;
      background: var(--white);
    }

    .industries-top {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 28px;
    }

    .industries-top .section-title {
      font-size: clamp(1.5rem, 2.2vw, 2.1rem);
      max-width: 640px;
    }

    .industry-grid {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 14px;
    }

    .industry-card {
      min-height: 150px;
      display: grid;
      place-items: center;
      text-align: center;
      padding: 18px 14px;
      box-shadow: none;
      background: #fff;
      cursor: pointer;
    }

    .industry-icon {
      width: 48px;
      height: 48px;
      margin-bottom: 8px;
      transition: transform 0.5s var(--ease-spring);
    }

    .industry-card:hover .industry-icon {
      transform: scale(1.15) rotate(-5deg);
    }

    .industry-card h3 {
      font-family: var(--font-display);
      font-size: 1rem;
      line-height: 1.08;
      letter-spacing: -0.02em;
      color: var(--text-dark);
      font-weight: 400;
      transition: color 0.3s;
    }

    .industry-card:hover h3 {
      color: var(--gold-700);
    }

    /* Route Card Icons */
    .route-icon {
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      background: linear-gradient(145deg, rgba(215, 155, 63, 0.18), rgba(232, 180, 91, 0.10));
      box-shadow: 0 8px 24px rgba(215, 155, 63, 0.15);
      padding: 12px;
      margin-bottom: 20px;
      color: var(--navy-700);
      transition: all 0.5s var(--ease-spring);
    }

    .route-icon svg {
      width: 100%;
      height: 100%;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .route-card:hover .route-icon {
      background: linear-gradient(145deg, var(--navy-950), var(--navy-700));
      box-shadow: 0 18px 36px rgba(7, 20, 33, 0.25);
      color: var(--gold-400);
      transform: scale(1.08) rotate(-3deg);
    }

    /* Supply Card Icons */
    .supply-icon {
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      background: linear-gradient(145deg, rgba(215, 155, 63, 0.18), rgba(232, 180, 91, 0.10));
      box-shadow: 0 8px 24px rgba(215, 155, 63, 0.15);
      padding: 12px;
      margin-bottom: 20px;
      color: var(--navy-700);
      transition: all 0.5s var(--ease-spring);
    }

    .supply-icon svg {
      width: 100%;
      height: 100%;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .supply-card:hover .supply-icon {
      background: linear-gradient(145deg, var(--navy-950), var(--navy-700));
      box-shadow: 0 18px 36px rgba(7, 20, 33, 0.25);
      color: var(--gold-400);
      transform: scale(1.08) rotate(-3deg);
    }

    /* Insight Card Icons */
    .insight-icon {
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      background: linear-gradient(145deg, rgba(215, 155, 63, 0.18), rgba(232, 180, 91, 0.10));
      box-shadow: 0 8px 24px rgba(215, 155, 63, 0.15);
      padding: 12px;
      margin-bottom: 20px;
      color: var(--navy-700);
      transition: all 0.5s var(--ease-spring);
    }

    .insight-icon svg {
      width: 100%;
      height: 100%;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .insight-card:hover .insight-icon {
      background: linear-gradient(145deg, var(--navy-950), var(--navy-700));
      box-shadow: 0 18px 36px rgba(7, 20, 33, 0.25);
      color: var(--gold-400);
      transform: scale(1.08) rotate(-3deg);
    }

    /* ============ WHY / STATS ============ */
    .why {
      padding: var(--section-space) 0 0;
      background:
        radial-gradient(circle at 12% 12%, rgba(215, 155, 63, 0.12), transparent 28%),
        linear-gradient(135deg, var(--navy-950), var(--navy-850) 60%, #041324);
      color: var(--white);
    }

    .why-grid {
      display: grid;
      grid-template-columns: 0.76fr 1.24fr;
      gap: clamp(28px, 4vw, 56px);
      align-items: stretch;
      padding-bottom: 92px;
    }

    .why-copy {
      padding-right: 28px;
      border-right: 1px solid rgba(232, 180, 91, 0.20);
    }

    .why-copy .section-title {
      color: var(--white);
      font-size: clamp(1.6rem, 2.4vw, 2.4rem);
      line-height: 1.08;
      letter-spacing: -0.02em;
      font-weight: 400;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0;
      border-block: 1px solid rgba(255, 255, 255, 0.06);
    }

    .stat-card {
      padding: 14px 20px 20px;
      text-align: center;
      border-right: 1px solid rgba(255, 255, 255, 0.10);
      display: grid;
      justify-items: center;
      align-content: center;
      min-height: 200px;
      transition: all 0.4s var(--ease-out);
      position: relative;
      overflow: hidden;
    }

    .stat-card:last-child {
      border-right: 0;
    }

    .stat-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at center, rgba(232,180,91,0.08), transparent 70%);
      opacity: 0;
      transition: opacity 0.5s;
    }

    .stat-card:hover::before {
      opacity: 1;
    }

    .stat-card:hover {
      transform: translateY(-4px);
    }

    .stat-icon {
      width: 40px;
      height: 40px;
      margin-bottom: 8px;
      transition: transform 0.5s var(--ease-spring);
    }

    .stat-card:hover .stat-icon {
      transform: scale(1.15) rotate(-8deg);
    }

    .stat-number {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      line-height: 1;
      color: var(--gold-400);
      font-weight: 800;
      letter-spacing: -0.05em;
      margin-bottom: 8px;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
    }

    .stat-card.visible .stat-number {
      opacity: 1;
      transform: translateY(0);
    }

    .stat-card h3 {
      font-family: var(--font-display);
      color: var(--white);
      font-size: 0.85rem;
      line-height: 1.08;
      letter-spacing: -0.02em;
      font-weight: 400;
      margin-bottom: 6px;
    }

    .stat-card p {
      color: var(--text-muted);
      font-size: 0.82rem;
      line-height: 1.55;
    }

    /* ============ INSIGHTS ============ */
    .insights {
      padding: var(--section-space) 0;
      background: var(--cream-100);
    }

    .insights-head {
      display: grid;
      grid-template-columns: 0.88fr 1fr;
      gap: 48px;
      align-items: end;
      margin-bottom: 32px;
    }

    .insight-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .insight-card {
      padding: 26px;
      background: #fff;
    }

    .insight-card .small-number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: rgba(215, 155, 63, 0.12);
      color: var(--gold-700);
      font-weight: 900;
      margin-bottom: 22px;
      font-size: 0.9rem;
      transition: all 0.4s var(--ease-spring);
    }

    .insight-card:hover .small-number {
      background: var(--gold-400);
      color: var(--navy-950);
      transform: scale(1.1);
      box-shadow: 0 8px 24px rgba(215, 155, 63, 0.25);
    }

    .insight-card h3 {
      font-family: var(--font-display);
      font-size: 1.25rem;
      line-height: 1.08;
      letter-spacing: -0.02em;
      font-weight: 400;
      margin-bottom: 14px;
      color: var(--text-dark);
    }

    .insight-card p {
      color: var(--text-mid);
      font-size: 0.98rem;
      line-height: 1.55;
    }

    /* ============ CTA BAND ============ */
    .cta-band {
      position: relative;
      overflow: hidden;
      padding: 110px 0 100px;
      background:
        linear-gradient(rgba(2,8,18,0.70), rgba(2,8,18,0.88)),
        radial-gradient(circle at 50% 20%, rgba(215, 155, 63, 0.24), transparent 36%),
        linear-gradient(135deg, #071421, #020812);
      color: var(--white);
      text-align: center;
    }

    .cta-band::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 58%;
      background:
        linear-gradient(180deg, transparent, rgba(0,0,0,0.28)),
        repeating-linear-gradient(90deg, rgba(232,180,91,0.10) 0 1px, transparent 1px 72px);
      opacity: 0.55;
      pointer-events: none;
    }

    .cta-content {
      position: relative;
      z-index: 1;
      display: grid;
      justify-items: center;
    }

    .cta-title {
      font-family: var(--font-display);
      font-size: clamp(2.4rem, 4.2vw, 3.6rem);
      line-height: 1.08;
      letter-spacing: -0.02em;
      font-weight: 400;
      max-width: 900px;
      opacity: 1;
      transform: translateY(0);
    }

    .cta-content p {
      margin-top: 18px;
      color: var(--text-light);
      font-size: 1rem;
      max-width: 680px;
      opacity: 1;
      transform: translateY(0);
    }

    .cta-content .btn {
      margin-top: 32px;
      opacity: 1;
      transform: translateY(0);
    }

    /* ============ SCROLLBAR ============ */
    ::-webkit-scrollbar {
      width: 8px;
    }

    ::-webkit-scrollbar-track {
      background: var(--navy-950);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--navy-600);
      border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: var(--gold-600);
    }

    /* ============ RESPONSIVE ============ */
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
      }
      .reveal, .reveal-left, .reveal-right, .reveal-scale,
      .cta-title, .cta-content p, .cta-content .btn,
      .stat-number {
        opacity: 1;
        transform: none;
      }
    }

    @media (max-width: 1120px) {
      .nav-links,
      .nav-actions .btn {
        display: none;
      }

      .nav-toggle {
        display: block;
      }

      .nav-links {
        position: absolute;
        left: 24px;
        right: 24px;
        top: 92px;
        display: grid;
        gap: 0;
        padding: 16px;
        border: 1px solid rgba(232, 180, 91, 0.22);
        border-radius: 18px;
        background: rgba(2, 8, 18, 0.98);
        box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
      }

      .nav-links.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
      }

      .nav-links a {
        padding: 16px 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
      }

      .nav-links a:last-child {
        border-bottom: 0;
      }

      .nav-links a::after {
        display: none;
      }

      .hero,
      .hero-grid {
        min-height: auto;
      }

      .hero-grid {
        grid-template-columns: 1fr;
        padding: 58px 0 160px;
      }

      .hero-visual-space {
        min-height: 590px;
      }

      .network-globe {
        --network-globe-center-x: 50%;
        --network-loader-x: var(--network-globe-center-x);
      }

      .who-grid,
      .audience-depth-head,
      .brand-overview-grid,
      .wholesale-overview-grid,
      .why-grid,
      .insights-head {
        grid-template-columns: 1fr;
      }

      .wholesale-overview-grid > .reveal:last-child {
        order: -1;
      }

      .audience-routes {
        grid-template-columns: 1fr;
      }

      .why-copy {
        padding-right: 0;
        border-right: 0;
      }

      .process-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .process-step:not(:last-child)::after {
        display: none;
      }

      .industry-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .stat-card:nth-child(2) {
        border-right: 0;
      }

      .stat-card:nth-child(1),
      .stat-card:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
      }

      .insight-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 720px) {
      .container {
        width: min(100% - 32px, var(--container));
      }

      .nav-wrap {
        min-height: 78px;
      }

      .brand {
        min-width: 0;
      }

      .brand-mark {
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
      }

      .brand-text strong {
        font-size: 1rem;
      }

      .brand-text small {
        font-size: 0.46rem;
        letter-spacing: 0.14em;
      }

      .nav-links {
        top: 78px;
        left: 16px;
        right: 16px;
      }

      .hero-grid {
        padding: 58px 0 64px;
        gap: clamp(44px, 6vw, 76px);
      }

      .hero-actions {
        display: grid;
      }

      .hero-actions .btn {
        width: 100%;
      }

      .hero-proof-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 30px;
        max-width: 570px;
      }

      .proof-item {
        padding: 14px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
      }

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

      .proof-item:hover {
        padding-left: 10px;
      }

      .proof-icon {
        width: 46px;
        min-height: 46px;
        height: auto;
        padding: 10px;
      }

      .proof-item strong {
        font-size: 1rem;
      }

      .hero-visual-space {
        min-height: 590px;
      }

      .network-globe {
        inset: 50% 0 auto;
        height: min(420px, 92vw);
        transform: translateY(-50%);
      }

      .network-globe__destinations {
        right: auto;
        bottom: 18%;
        width: 128px;
      }

      .network-globe__destination {
        gap: 6px;
        padding: 8px 9px;
        font-size: 0.48rem;
      }

      .network-globe__destination-icon {
        width: 16px;
        height: 16px;
      }

      .network-globe__destination-symbol {
        width: 10px;
        height: 10px;
      }

      .network-globe__label {
        padding: 5px 7px;
        font-size: 0.51rem;
        transform: translate3d(var(--label-x), var(--label-y), 0) translate(-50%, calc(-100% - 7px));
      }

      .service-cards {
        grid-template-columns: 1fr;
      }

      .service-card {
        min-height: auto;
        padding: 32px 26px;
      }

      .route-card {
        min-height: auto;
        padding: 32px 26px;
      }

      .route-points,
      .supply-grid {
        grid-template-columns: 1fr;
      }

      .overview-actions {
        display: grid;
      }

      .overview-actions .btn {
        width: 100%;
      }

      .process-grid,
      .industry-grid,
      .stats-grid {
        grid-template-columns: 1fr;
      }

      .stat-card,
      .stat-card:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
        min-height: 230px;
      }

      .stat-card:last-child {
        border-bottom: 0;
      }

      .industries-top {
        display: grid;
      }

      .industries-top .btn {
        width: 100%;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .footer-bottom {
        display: grid;
      }

      .footer-legal {
        flex-wrap: wrap;
      }
    }

    /* ============ HOMEPAGE FLAT LAYOUT REFRESH ============
       These overrides are intentionally limited to the five requested homepage
       sections. Content, colour tokens, header, hero and footer remain unchanged. */

    /* Two Commercial Routes: editorial split */
    .audience-depth-head {
      grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
      gap: clamp(40px, 7vw, 104px);
      margin-bottom: clamp(42px, 5vw, 68px);
      padding-top: 28px;
      border-top: 1px solid rgba(8, 17, 30, 0.14);
    }

    .audience-routes {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0;
      border-block: 1px solid rgba(8, 17, 30, 0.16);
    }

    .route-card {
      min-height: 460px;
      padding: 52px clamp(34px, 4vw, 64px) 46px;
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      overflow: visible;
      isolation: isolate;
    }

    .route-card:nth-child(2) {
      padding-right: 0;
      padding-left: clamp(34px, 4vw, 64px);
      border-left: 1px solid rgba(8, 17, 30, 0.16);
    }

    .route-card::before {
      content: "01";
      inset: 38px 28px auto auto;
      width: auto;
      height: auto;
      background: none;
      color: rgba(8, 17, 30, 0.07);
      font-family: var(--font-display);
      font-size: clamp(4rem, 7vw, 7rem);
      line-height: 1;
      animation: none;
      z-index: -1;
    }

    .route-card:nth-child(2)::before {
      content: "02";
      right: 0;
    }

    .route-card:hover {
      transform: none;
      border-color: rgba(8, 17, 30, 0.16);
      box-shadow: none;
    }

    .route-icon {
      width: 50px;
      height: 50px;
      margin-bottom: 26px;
      padding: 8px;
      border-radius: 0;
      border-bottom: 2px solid var(--gold-500);
      background: transparent;
      box-shadow: none;
      color: var(--navy-700);
    }

    .route-card:hover .route-icon {
      color: var(--gold-700);
      background: transparent;
      box-shadow: none;
      transform: translateX(5px);
    }

    .route-label {
      margin-bottom: 18px;
    }

    .route-card h3 {
      max-width: 560px;
    }

    .route-points {
      grid-template-columns: 1fr;
      gap: 0;
      margin: 22px 0 30px;
      border-top: 1px solid rgba(8, 17, 30, 0.10);
    }

    .route-points li {
      min-height: 0;
      padding: 11px 0;
      border: 0;
      border-bottom: 1px solid rgba(8, 17, 30, 0.10);
      border-radius: 0;
      background: transparent;
    }

    .route-points li:hover {
      border-color: rgba(8, 17, 30, 0.10);
      background: transparent;
      transform: translateX(5px);
    }

    .route-card .text-link {
      margin-left: -14px;
      width: max-content;
      padding: 10px 14px;
      border: 1px solid transparent;
      border-radius: 8px;
      background: transparent;
      transition:
        transform 0.35s var(--ease-out),
        gap 0.3s var(--ease-out),
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
    }

    .route-card .text-link::after {
      display: none;
    }

    /* For Brands & Suppliers: progression rail */
    .brand-overview-grid {
      grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
      gap: clamp(52px, 8vw, 118px);
      align-items: start;
    }

    .brand-overview-copy {
      align-self: stretch;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .detail-stack {
      position: relative;
      display: grid;
      gap: 0;
      padding-left: clamp(30px, 4vw, 52px);
      border-left: 1px solid rgba(232, 180, 91, 0.34);
    }

    .detail-item {
      position: relative;
      overflow: visible;
      padding: 2px 0 30px;
      border: 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.10);
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      backdrop-filter: none;
    }

    .detail-item + .detail-item {
      padding-top: 30px;
    }

    .detail-item:last-child {
      padding-bottom: 2px;
      border-bottom: 0;
    }

    .detail-item::before {
      content: "";
      top: 8px;
      left: calc(clamp(30px, 4vw, 52px) * -1 - 6px);
      width: 11px;
      height: 11px;
      border: 2px solid var(--gold-400);
      border-radius: 50%;
      background: var(--navy-900);
      opacity: 1;
    }

    .detail-item + .detail-item::before {
      top: 37px;
    }

    .detail-item:hover {
      transform: none;
      border-color: rgba(255, 255, 255, 0.18);
      background: transparent;
      box-shadow: none;
    }

    .detail-item h3 {
      display: block;
      margin-bottom: 10px;
      color: var(--white);
      font-size: clamp(1.12rem, 1.7vw, 1.48rem);
    }

    .detail-item h3::before {
      display: none;
    }

    .detail-item p {
      max-width: 620px;
      font-size: 0.94rem;
      line-height: 1.68;
    }

    /* Wholesale & Trade Customers: service ledger */
    .wholesale-overview-grid {
      grid-template-columns: minmax(0, 1.22fr) minmax(0, 0.78fr);
      gap: clamp(52px, 8vw, 112px);
      align-items: start;
    }

    .supply-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0;
      border-top: 1px solid rgba(8, 17, 30, 0.16);
    }

    .supply-card {
      min-height: 0;
      padding: 25px 0;
      display: grid;
      grid-template-columns: 64px minmax(180px, 0.75fr) minmax(240px, 1.25fr);
      gap: clamp(18px, 3vw, 36px);
      align-items: center;
      border: 0;
      border-bottom: 1px solid rgba(8, 17, 30, 0.16);
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      overflow: visible;
    }

    .supply-card::after {
      display: none;
    }

    .supply-card:hover {
      transform: none;
      border-color: rgba(8, 17, 30, 0.28);
      box-shadow: none;
    }

    .supply-icon {
      width: 48px;
      height: 48px;
      margin: 0;
      padding: 9px;
      border-radius: 0;
      border-left: 2px solid var(--gold-500);
      background: transparent;
      box-shadow: none;
    }

    .supply-card:hover .supply-icon {
      color: var(--gold-700);
      background: transparent;
      box-shadow: none;
      transform: translateX(5px);
    }

    .supply-card h3,
    .supply-card p {
      margin: 0;
    }

    .supply-card h3 {
      font-size: clamp(1.05rem, 1.45vw, 1.3rem);
    }

    .supply-card p {
      font-size: 0.9rem;
      line-height: 1.65;
    }

    /* Industries We Serve: indexed directory */
    .industries {
      padding: clamp(72px, 8vw, 110px) 0;
    }

    .industries-top {
      align-items: end;
      margin-bottom: clamp(38px, 5vw, 62px);
      padding-bottom: 28px;
      border-bottom: 1px solid rgba(8, 17, 30, 0.16);
    }

    .industry-grid {
      counter-reset: industry;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0 clamp(34px, 6vw, 86px);
    }

    .industry-card {
      counter-increment: industry;
      min-height: 118px;
      display: grid;
      grid-template-columns: 46px minmax(0, 1fr);
      align-items: center;
      justify-items: stretch;
      gap: 14px;
      padding: 24px 0;
      border: 0;
      border-bottom: 1px solid rgba(8, 17, 30, 0.14);
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      text-align: left;
      cursor: default;
      overflow: visible;
    }

    .industry-card::before {
      content: counter(industry, decimal-leading-zero);
      position: static;
      width: auto;
      height: auto;
      background: none;
      color: var(--gold-700);
      font-size: 0.72rem;
      font-weight: 900;
      letter-spacing: 0.12em;
      opacity: 1;
    }

    .industry-card:hover {
      transform: none;
      border-color: rgba(8, 17, 30, 0.26);
      box-shadow: none;
    }

    .industry-card:hover::before {
      animation: none;
    }

    .industry-card > div {
      display: grid;
      grid-template-columns: 54px minmax(0, 1fr);
      align-items: center;
      gap: 20px;
      width: 100%;
      min-width: 0;
    }

    .industry-icon {
      width: 48px;
      height: 48px;
      margin: 0;
      display: grid;
      place-items: center;
    }

    .industry-icon svg {
      width: 30px;
      height: 30px;
    }

    .industry-card h3 {
      font-size: clamp(1.08rem, 1.55vw, 1.35rem);
    }

    .industry-card:hover .industry-icon {
      transform: translateX(5px);
    }

    /* Built for B2B Buyers: editorial information rows */
    .insights-head {
      grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
      gap: clamp(40px, 7vw, 104px);
      margin-bottom: clamp(38px, 5vw, 60px);
      padding-top: 28px;
      border-top: 1px solid rgba(8, 17, 30, 0.14);
    }

    .insight-grid {
      grid-template-columns: 1fr;
      gap: 0;
      border-top: 1px solid rgba(8, 17, 30, 0.16);
    }

    .insight-card {
      display: grid;
      grid-template-columns: 68px minmax(220px, 0.78fr) minmax(0, 1.22fr);
      align-items: center;
      gap: clamp(22px, 4vw, 56px);
      padding: 28px 0;
      border: 0;
      border-bottom: 1px solid rgba(8, 17, 30, 0.16);
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      overflow: visible;
    }

    .insight-card::before {
      display: none;
    }

    .insight-card:hover {
      transform: none;
      border-color: rgba(8, 17, 30, 0.28);
      box-shadow: none;
    }

    .insight-icon {
      width: 52px;
      height: 52px;
      margin: 0;
      padding: 9px;
      border-radius: 50%;
      border: 1px solid rgba(215, 155, 63, 0.42);
      background: transparent;
      box-shadow: none;
    }

    .insight-card:hover .insight-icon {
      color: var(--gold-700);
      border-color: var(--gold-600);
      background: transparent;
      box-shadow: none;
      transform: rotate(6deg);
    }

    .insight-card h3,
    .insight-card p {
      margin: 0;
    }

    .insight-card h3 {
      font-size: clamp(1.18rem, 1.7vw, 1.5rem);
    }

    .insight-card p {
      line-height: 1.7;
    }

    @media (max-width: 1120px) {
      .audience-depth-head,
      .brand-overview-grid,
      .wholesale-overview-grid,
      .insights-head {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .audience-routes {
        grid-template-columns: 1fr;
      }

      .route-card,
      .route-card:nth-child(2) {
        padding: 42px 0;
      }

      .route-card .text-link {
        margin-left: 0;
      }

      .route-card:nth-child(2) {
        border-top: 1px solid rgba(8, 17, 30, 0.16);
        border-left: 0;
      }

      .route-card:nth-child(2)::before {
        right: 28px;
      }

      .brand-overview-grid,
      .wholesale-overview-grid {
        gap: 54px;
      }

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

    @media (max-width: 720px) {
      .audience-depth-head,
      .insights-head {
        padding-top: 22px;
      }

      .route-card,
      .route-card:nth-child(2) {
        min-height: 0;
        padding: 34px 0;
      }

      .route-card::before,
      .route-card:nth-child(2)::before {
        top: 26px;
        right: 0;
        font-size: 4.5rem;
      }

      .detail-stack {
        padding-left: 28px;
      }

      .detail-item::before {
        left: -34px;
      }

      .supply-card {
        grid-template-columns: 50px minmax(0, 1fr);
        gap: 10px 16px;
        padding: 22px 0;
      }

      .supply-card p {
        grid-column: 2;
      }

      .supply-icon {
        width: 42px;
        height: 42px;
      }

      .industries-top {
        gap: 28px;
      }

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

      .industry-card {
        min-height: 96px;
        padding: 18px 0;
      }

      .insight-card {
        grid-template-columns: 54px minmax(0, 1fr);
        gap: 12px 18px;
        padding: 24px 0;
      }

      .insight-card p {
        grid-column: 2;
      }

      .insight-icon {
        width: 46px;
        height: 46px;
      }
    }

    /* Who We Work With: flat partner pathways */
    .who-grid {
      grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
      gap: clamp(52px, 8vw, 112px);
      align-items: start;
    }

    .who-copy {
      align-self: stretch;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding-top: 28px;
      border-top: 1px solid rgba(8, 17, 30, 0.14);
    }

    .who-route-pills {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0;
      margin-top: 30px;
      border-top: 1px solid rgba(8, 17, 30, 0.16);
      border-bottom: 1px solid rgba(8, 17, 30, 0.16);
    }

    .who-route-pills a {
      min-height: 118px;
      display: grid;
      grid-template-columns: 38px minmax(0, 1fr);
      align-items: center;
      gap: 12px;
      padding: 18px 16px 18px 0;
      border: 0;
      border-right: 1px solid rgba(8, 17, 30, 0.14);
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      text-align: left;
      transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.35s var(--ease-out), box-shadow 0.35s ease;
    }

    .who-route-pills a:last-child {
      padding-right: 0;
      padding-left: 16px;
      border-right: 0;
    }

    .who-route-icon {
      width: 38px;
      min-height: 58px;
      display: grid;
      place-items: center;
      padding-right: 11px;
      color: var(--gold-600);
      border-right: 1px solid rgba(215, 155, 63, 0.55);
      transition: color 0.3s ease, transform 0.35s var(--ease-out);
    }

    .who-route-icon svg {
      width: 23px;
      height: 23px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .who-route-copy {
      display: block;
      min-width: 0;
    }

    .who-route-copy strong {
      display: block;
      color: var(--gold-700);
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 400;
      line-height: 1.1;
    }

    .who-route-copy > span {
      display: block;
      margin-top: 7px;
      color: var(--text-mid);
      font-size: 0.73rem;
      line-height: 1.48;
    }

    @media (hover: hover) and (pointer: fine) {
      .who-route-pills a:hover {
        border-color: rgba(8, 17, 30, 0.14);
        background: linear-gradient(90deg, rgba(232, 180, 91, 0.12), rgba(232, 180, 91, 0.025));
        box-shadow: none;
        transform: none;
      }

      .who-route-pills a:hover .who-route-icon {
        color: var(--gold-700);
        transform: translateX(3px);
      }
    }

    .service-cards {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0;
      border-block: 1px solid rgba(8, 17, 30, 0.16);
    }

    .service-card {
      min-height: 0;
      display: block;
      padding: 34px clamp(24px, 2.5vw, 38px) 32px;
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      overflow: visible;
    }

    .service-card:nth-child(2) {
      padding-right: 0;
      padding-left: clamp(24px, 2.5vw, 38px);
      border-left: 1px solid rgba(8, 17, 30, 0.16);
    }

    .service-card::before {
      display: none;
    }

    .service-card:hover {
      transform: none;
      border-color: rgba(8, 17, 30, 0.26);
      box-shadow: none;
    }

    .service-card > div {
      display: block;
    }

    .service-icon {
      width: 48px;
      height: 48px;
      margin: 0 0 24px;
      padding: 9px;
      border-left: 2px solid var(--gold-500);
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      color: var(--navy-700);
    }

    .service-card:hover .service-icon {
      color: var(--gold-700);
      background: transparent;
      box-shadow: none;
      transform: translateX(5px);
    }

    .service-card h3 {
      margin: 0 0 14px;
      font-size: clamp(1.18rem, 1.7vw, 1.5rem);
    }

    .service-card p {
      margin: 0 0 20px;
      font-size: 0.94rem;
      line-height: 1.68;
    }

    .service-card .check-list {
      grid-template-columns: 1fr;
      gap: 0;
      margin: 0;
      border-top: 1px solid rgba(8, 17, 30, 0.10);
    }

    .service-card .check-list li {
      padding: 12px 10px 12px 22px;
      border-bottom: 1px solid rgba(8, 17, 30, 0.10);
      font-size: 0.78rem;
    }

    .service-card .check-list li::before {
      top: 12px;
    }

    .service-card .text-link {
      margin-top: 32px;
      margin-left: -14px;
      width: max-content;
      padding: 10px 14px;
      border: 1px solid transparent;
      border-radius: 8px;
      background: transparent;
      transition:
        transform 0.35s var(--ease-out),
        gap 0.3s var(--ease-out),
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
    }

    .service-card .text-link::after {
      display: none;
    }

    @media (max-width: 1120px) {
      .who-grid {
        grid-template-columns: 1fr;
        gap: 48px;
      }

    }

    @media (max-width: 720px) {
      .who-copy {
        padding-top: 22px;
      }

      .who-route-pills {
        grid-template-columns: 1fr;
      }

      .who-route-pills a,
      .who-route-pills a:last-child {
        min-height: 104px;
        padding: 16px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(8, 17, 30, 0.14);
      }

      .who-route-pills a:last-child {
        border-bottom: 0;
      }

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

      .service-card,
      .service-card:nth-child(2) {
        padding: 28px 0;
      }

      .service-card:nth-child(2) {
        border-top: 1px solid rgba(8, 17, 30, 0.16);
        border-left: 0;
      }

      .service-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 20px;
      }

      .service-card .check-list {
        grid-template-columns: 1fr;
        margin-top: 4px;
      }

      .service-card .text-link {
        margin-left: 0;
      }
    }

    @media (max-width: 640px) {
      .hero-grid {
        padding: 40px 0 54px;
        gap: 38px;
      }

      .hero-title {
        font-size: clamp(2.55rem, 12vw, 3.65rem);
      }

      .hero-copy {
        min-height: 0;
      }
    }

    /* ============ COMMERCIAL HOVER SYSTEM ============
       Contact-directory inspired movement with a restrained gold wash. */
    @media (hover: hover) and (pointer: fine) {
      .service-card,
      .route-card,
      .supply-card,
      .industry-card,
      .insight-card {
        transition:
          padding 0.35s var(--ease-out),
          background-color 0.35s ease,
          border-color 0.35s ease,
          box-shadow 0.35s ease;
      }

      .service-card:hover,
      .route-card:hover,
      .supply-card:hover,
      .industry-card:hover,
      .insight-card:hover {
        transform: none;
        border-color: rgba(8, 17, 30, 0.24);
        background-color: rgba(232, 180, 91, 0.045);
        box-shadow: inset 2px 0 0 rgba(215, 155, 63, 0.52);
      }

      .service-card > div,
      .service-card > .text-link,
      .route-card > div,
      .route-card > .text-link {
        transition: transform 0.35s var(--ease-out), color 0.3s ease, gap 0.3s var(--ease-out);
      }

      .service-card:hover > div,
      .service-card:hover > .text-link,
      .route-card:hover > div,
      .route-card:hover > .text-link {
        transform: translateX(8px);
      }

      .service-card:hover > .text-link,
      .route-card:hover > .text-link {
        gap: 14px;
        color: var(--gold-700);
      }

      .service-card:hover .service-icon,
      .route-card:hover .route-icon,
      .supply-card:hover .supply-icon {
        color: var(--gold-700);
        border-color: var(--gold-500);
        background: rgba(232, 180, 91, 0.055);
        box-shadow: none;
        transform: translateX(4px);
      }

      .route-card::before {
        transition: color 0.35s ease, transform 0.35s var(--ease-out);
      }

      .route-card:hover::before {
        color: rgba(176, 112, 24, 0.13);
        transform: translateY(-3px);
      }

      .detail-item {
        transition:
          padding 0.35s var(--ease-out),
          background-color 0.35s ease,
          border-color 0.35s ease,
          box-shadow 0.35s ease;
      }

      .detail-item:hover {
        padding-left: 12px;
        padding-right: 12px;
        border-color: rgba(232, 180, 91, 0.24);
        background-color: rgba(232, 180, 91, 0.07);
        box-shadow: inset 2px 0 0 rgba(232, 180, 91, 0.58);
      }

      .detail-item:hover::before {
        background: var(--gold-400);
        box-shadow: 0 0 0 6px rgba(232, 180, 91, 0.12), 0 0 18px rgba(232, 180, 91, 0.28);
      }

      .supply-card:hover,
      .industry-card:hover,
      .insight-card:hover {
        padding-left: 12px;
        padding-right: 12px;
      }

      .industry-card:hover::before {
        color: var(--gold-600);
      }

      .industry-card:hover .industry-icon {
        color: var(--gold-700);
        transform: translateX(4px);
      }

      .insight-card:hover .insight-icon {
        color: var(--gold-700);
        border-color: var(--gold-600);
        background: rgba(232, 180, 91, 0.055);
        box-shadow: 0 0 0 4px rgba(232, 180, 91, 0.07);
        transform: translateX(4px) rotate(0);
      }

      .stat-card {
        transition: background-color 0.35s ease, box-shadow 0.35s ease;
      }

      .stat-card::before {
        background: linear-gradient(90deg, rgba(232, 180, 91, 0.10), transparent 82%);
        transition: opacity 0.4s ease;
      }

      .stat-card:hover {
        transform: none;
        background-color: rgba(232, 180, 91, 0.045);
        box-shadow: inset 0 2px 0 rgba(232, 180, 91, 0.55);
      }

      .stat-card:hover .stat-icon {
        color: #f4ca75;
        transform: translateY(-3px) scale(1.06);
      }

      .stat-number {
        transition:
          opacity 0.8s var(--ease-out),
          transform 0.8s var(--ease-out),
          color 0.35s ease;
      }

      .stat-card:hover .stat-number {
        color: #f7d58f;
      }

      /* Who We Work With: clear CTA response on the dark brand colour. */
      .who .service-card .text-link:hover,
      .who .btn-secondary-light:hover,
      .audience-depth .route-card .text-link:hover {
        color: var(--white);
        border-color: var(--navy-950);
        background-color: var(--navy-950);
        box-shadow: 0 12px 28px rgba(2, 8, 18, 0.18);
      }

      .who .service-card .text-link:hover,
      .audience-depth .route-card .text-link:hover {
        gap: 14px;
      }
    }

    /* Who We Work With: keep the polished gold state visible by default. */
    .who .service-card {
      border-color: rgba(8, 17, 30, 0.22);
      background-color: rgba(232, 180, 91, 0.045);
      box-shadow: inset 2px 0 0 rgba(215, 155, 63, 0.52);
    }

    .who .service-card > div,
    .who .service-card > .text-link {
      transform: translateX(8px);
    }

    .who .service-card .service-icon {
      color: var(--gold-700);
      border-color: var(--gold-500);
      background: rgba(232, 180, 91, 0.055);
      box-shadow: none;
      transform: translateX(4px);
    }

    .who .service-card .text-link {
      min-height: 52px;
      padding: 0 22px;
      border-color: rgba(215, 155, 63, 0.55);
      border-radius: 10px;
      background-color: transparent;
      color: var(--gold-700);
      justify-content: center;
    }

    @media (hover: hover) and (pointer: fine) {
      .who .service-card:hover {
        border-color: rgba(215, 155, 63, 0.30);
        background-color: rgba(215, 155, 63, 0.11);
        background-image: linear-gradient(105deg, rgba(176, 112, 24, 0.09), rgba(232, 180, 91, 0.10));
        box-shadow: inset 3px 0 0 var(--gold-500);
      }

      .who .service-card:hover > .text-link {
        gap: 14px;
        color: var(--white);
        border-color: var(--navy-950);
        background-color: var(--navy-950);
        box-shadow: 0 12px 28px rgba(2, 8, 18, 0.18);
      }
    }

    @media (max-width: 720px) {
      .who .service-card,
      .who .service-card:nth-child(2) {
        padding-right: 16px;
        padding-left: 16px;
      }
    }

    /* Matching permanent gold state for the remaining commercial card sections. */
    .audience-depth .route-card,
    .wholesale-overview .supply-card,
    .industries .industry-card,
    .insights .insight-card {
      border-color: rgba(8, 17, 30, 0.22);
      background-color: rgba(232, 180, 91, 0.045);
      box-shadow: inset 2px 0 0 rgba(215, 155, 63, 0.52);
    }

    .wholesale-overview .supply-card,
    .industries .industry-card,
    .insights .insight-card {
      padding-right: 12px;
      padding-left: 12px;
    }

    .audience-depth .route-card > div,
    .audience-depth .route-card > .text-link {
      transform: translateX(8px);
    }

    .audience-depth .route-card .route-icon,
    .wholesale-overview .supply-card .supply-icon {
      color: var(--gold-700);
      border-color: var(--gold-500);
      background: rgba(232, 180, 91, 0.055);
      box-shadow: none;
      transform: translateX(4px);
    }

    .industries .industry-card .industry-icon {
      color: var(--gold-700);
      transform: translateX(4px);
    }

    .insights .insight-card .insight-icon {
      color: var(--gold-700);
      border-color: var(--gold-600);
      background: rgba(232, 180, 91, 0.055);
      box-shadow: 0 0 0 4px rgba(232, 180, 91, 0.07);
      transform: translateX(4px) rotate(0);
    }

    .audience-depth .route-card .text-link {
      min-height: 52px;
      padding: 0 22px;
      border-color: rgba(215, 155, 63, 0.55);
      border-radius: 10px;
      background-color: transparent;
      color: var(--gold-700);
      justify-content: center;
    }

    @media (hover: hover) and (pointer: fine) {
      .audience-depth .route-card:hover,
      .wholesale-overview .supply-card:hover,
      .industries .industry-card:hover,
      .insights .insight-card:hover {
        border-color: rgba(215, 155, 63, 0.30);
        background-color: rgba(215, 155, 63, 0.11);
        background-image: linear-gradient(105deg, rgba(176, 112, 24, 0.09), rgba(232, 180, 91, 0.10));
        box-shadow: inset 3px 0 0 var(--gold-500);
      }

      .audience-depth .route-card:hover > .text-link {
        gap: 14px;
        color: var(--white);
        border-color: var(--navy-950);
        background-color: var(--navy-950);
        box-shadow: 0 12px 28px rgba(2, 8, 18, 0.18);
      }
    }

    /* Wholesale ledger: contact-hero-inspired interactive response. */
    .wholesale-overview .supply-card {
      position: relative;
      isolation: isolate;
      transition:
        padding 0.38s var(--ease-out),
        background-color 0.35s ease,
        background-image 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
    }

    .wholesale-overview .supply-card::before {
      content: "";
      position: absolute;
      top: 50%;
      right: 18px;
      width: 7px;
      height: 7px;
      border: 1px solid var(--gold-500);
      border-radius: 50%;
      background: transparent;
      opacity: 0;
      transform: translate(-8px, -50%);
      transition: opacity 0.3s ease, transform 0.4s var(--ease-out), background-color 0.3s ease, box-shadow 0.35s ease;
      pointer-events: none;
    }

    .wholesale-overview .supply-card .supply-icon,
    .wholesale-overview .supply-card h3,
    .wholesale-overview .supply-card p {
      transition: color 0.3s ease, transform 0.38s var(--ease-out), background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.35s ease;
    }

    @media (hover: hover) and (pointer: fine) {
      .wholesale-overview .supply-card:hover {
        padding-right: 38px;
        padding-left: 20px;
        border-color: rgba(215, 155, 63, 0.42);
        background-color: rgba(215, 155, 63, 0.13);
        background-image: linear-gradient(90deg, rgba(176, 112, 24, 0.13), rgba(244, 202, 117, 0.055) 72%, transparent);
        box-shadow: inset 4px 0 0 var(--gold-500), 0 16px 40px rgba(8, 17, 30, 0.08);
      }

      .wholesale-overview .supply-card:hover .supply-icon {
        color: var(--gold-700);
        border-color: var(--gold-500);
        background-color: rgba(232, 180, 91, 0.10);
        box-shadow: 0 0 0 6px rgba(232, 180, 91, 0.08), 0 10px 24px rgba(176, 112, 24, 0.14);
        transform: translateX(9px) scale(1.04);
      }

      .wholesale-overview .supply-card:hover h3,
      .wholesale-overview .supply-card:hover p {
        transform: translateX(7px);
      }

      .wholesale-overview .supply-card:hover h3 {
        color: var(--gold-700);
      }

      .wholesale-overview .supply-card:hover::before {
        opacity: 1;
        background: var(--gold-400);
        box-shadow: 0 0 0 6px rgba(232, 180, 91, 0.10), 0 0 18px rgba(215, 155, 63, 0.30);
        transform: translate(0, -50%);
      }
    }

    @media (max-width: 720px) {
      .wholesale-overview .supply-card:hover {
        padding-right: 20px;
        padding-left: 20px;
      }

      .wholesale-overview .supply-card::before {
        display: none;
      }
    }

    /* Exact-size wholesale interaction: motion only, with no card growth. */
    .wholesale-overview .supply-card {
      box-shadow: none;
    }

    @media (hover: hover) and (pointer: fine) {
      .wholesale-overview .supply-card:hover {
        padding-right: 12px;
        padding-left: 12px;
        border-color: rgba(215, 155, 63, 0.34);
        background-color: rgba(215, 155, 63, 0.11);
        background-image: linear-gradient(90deg, rgba(176, 112, 24, 0.11), rgba(244, 202, 117, 0.045) 76%, transparent);
        box-shadow: none;
      }

      .wholesale-overview .supply-card:hover .supply-icon {
        background-color: rgba(232, 180, 91, 0.08);
        box-shadow: none;
        transform: translateX(9px);
      }

      .wholesale-overview .overview-actions .btn-secondary-light:hover {
        color: var(--white);
        border-color: var(--navy-950);
        background: var(--navy-950);
        box-shadow: 0 12px 28px rgba(2, 8, 18, 0.18);
        transform: translateY(-2px);
      }
    }

    /* Industries: icon-led rows with fixed-size wholesale-style motion. */
    .industries .industries-top {
      display: grid;
      grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.62fr);
      gap: clamp(44px, 8vw, 112px);
      align-items: end;
    }

    .industries .industries-lead {
      max-width: 520px;
      margin: 0;
      color: var(--text-mid);
      font-size: clamp(0.94rem, 1vw, 1.04rem);
      line-height: 1.72;
    }

    .industries .industry-grid {
      counter-reset: none;
    }

    .industries .industry-card {
      position: relative;
      isolation: isolate;
      grid-template-columns: 1fr;
      padding-right: 12px;
      padding-left: 12px;
      background-color: rgba(232, 180, 91, 0.045);
      box-shadow: none;
      transition: background-color 0.35s ease, background-image 0.35s ease, border-color 0.35s ease;
    }

    .industries .industry-card::before {
      content: "";
      position: absolute;
      top: 50%;
      right: 18px;
      width: 7px;
      height: 7px;
      border: 1px solid var(--gold-500);
      border-radius: 50%;
      background: transparent;
      opacity: 0;
      transform: translate(-8px, -50%);
      transition: opacity 0.3s ease, transform 0.4s var(--ease-out), background-color 0.3s ease, box-shadow 0.35s ease;
      pointer-events: none;
    }

    .industries .industry-card > div {
      grid-template-columns: 58px minmax(0, 1fr);
      transition: transform 0.38s var(--ease-out);
    }

    .industries .industry-icon {
      width: 48px;
      height: 48px;
      border: 0;
      border-left: 2px solid var(--gold-500);
      border-radius: 0;
      background: rgba(232, 180, 91, 0.10);
      color: var(--gold-700);
      transition: color 0.3s ease, transform 0.38s var(--ease-out), background-color 0.3s ease, border-color 0.3s ease;
    }

    .industries .industry-card h3 {
      transition: color 0.3s ease, transform 0.38s var(--ease-out);
    }

    @media (hover: hover) and (pointer: fine) {
      .industries .industry-card:hover {
        padding-right: 12px;
        padding-left: 12px;
        border-color: rgba(215, 155, 63, 0.34);
        background-color: rgba(215, 155, 63, 0.11);
        background-image: linear-gradient(90deg, rgba(176, 112, 24, 0.11), rgba(244, 202, 117, 0.045) 76%, transparent);
        box-shadow: none;
      }

      .industries .industry-card:hover > div {
        transform: translateX(7px);
      }

      .industries .industry-card:hover .industry-icon {
        color: var(--gold-700);
        border-color: var(--gold-500);
        background-color: rgba(232, 180, 91, 0.16);
        box-shadow: none;
        transform: translateX(2px);
      }

      .industries .industry-card:hover h3 {
        color: var(--gold-700);
      }

      .industries .industry-card:hover::before {
        opacity: 1;
        background: var(--gold-400);
        box-shadow: 0 0 0 6px rgba(232, 180, 91, 0.10), 0 0 18px rgba(215, 155, 63, 0.30);
        transform: translate(0, -50%);
      }
    }

    @media (max-width: 720px) {
      .industries .industries-top {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .industries .industry-card::before {
        display: none;
      }
    }

    /* Why Choose Bainzy: clearer proof icons and unified commercial motion. */
    .why .why-copy {
      align-self: stretch;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding-right: 0;
      border-right: 0;
    }

    .why .why-copy .btn-secondary-dark {
      color: var(--navy-950);
      border-color: var(--gold-400);
      background: var(--gold-400);
      box-shadow: 0 12px 30px rgba(176, 112, 24, 0.20);
    }

    .why .stat-icon {
      width: 50px;
      height: 50px;
      display: grid;
      place-items: center;
      padding: 11px;
      border: 1px solid rgba(232, 180, 91, 0.26);
      border-left: 2px solid var(--gold-400);
      border-radius: 0;
      background: rgba(232, 180, 91, 0.08);
      color: var(--gold-300);
      transition: color 0.3s ease, transform 0.38s var(--ease-out), background-color 0.3s ease, border-color 0.3s ease;
    }

    .why .stat-card h3 {
      font-size: clamp(1.05rem, 1.4vw, 1.28rem);
      transition: color 0.3s ease, transform 0.38s var(--ease-out);
    }

    .why .stat-card p {
      transition: transform 0.38s var(--ease-out);
    }

    .why .stat-card {
      transition: background-color 0.35s ease, background-image 0.35s ease, border-color 0.35s ease;
    }

    @media (hover: hover) and (pointer: fine) {
      .why .why-copy .btn-secondary-dark:hover {
        color: var(--navy-950);
        border-color: var(--gold-300);
        background: var(--gold-300);
        box-shadow: 0 16px 34px rgba(176, 112, 24, 0.28);
        transform: translateY(-2px);
      }

      .why .stat-card:hover {
        background-color: rgba(232, 180, 91, 0.075);
        background-image: linear-gradient(90deg, rgba(232, 180, 91, 0.10), transparent 84%);
        box-shadow: none;
        transform: none;
      }

      .why .stat-card:hover .stat-icon {
        color: var(--gold-300);
        border-color: var(--gold-400);
        background-color: rgba(232, 180, 91, 0.14);
        box-shadow: none;
        transform: translateX(5px);
      }

      .why .stat-card:hover h3,
      .why .stat-card:hover p {
        transform: translateX(5px);
      }

      .why .stat-card:hover h3 {
        color: var(--gold-300);
      }
    }

    /* Built for B2B Buyers: match the wholesale service-led interaction. */
    .insights .insight-card {
      position: relative;
      isolation: isolate;
      padding-right: 12px;
      padding-left: 12px;
      background-color: rgba(232, 180, 91, 0.045);
      box-shadow: none;
      transition: background-color 0.35s ease, background-image 0.35s ease, border-color 0.35s ease;
    }

    .insights .insight-card::before {
      content: "";
      display: block;
      position: absolute;
      top: 50%;
      right: 18px;
      width: 7px;
      height: 7px;
      border: 1px solid var(--gold-500);
      border-radius: 50%;
      background: transparent;
      opacity: 0;
      transform: translate(-8px, -50%);
      transition: opacity 0.3s ease, transform 0.4s var(--ease-out), background-color 0.3s ease, box-shadow 0.35s ease;
      pointer-events: none;
    }

    .insights .insight-icon {
      width: 52px;
      height: 52px;
      margin: 0;
      padding: 10px;
      border: 0;
      border-left: 2px solid var(--gold-500);
      border-radius: 0;
      background: rgba(232, 180, 91, 0.10);
      color: var(--gold-700);
      box-shadow: none;
      transform: none;
      transition: color 0.3s ease, transform 0.38s var(--ease-out), background-color 0.3s ease, border-color 0.3s ease;
    }

    .insights .insight-card h3,
    .insights .insight-card p {
      transition: color 0.3s ease, transform 0.38s var(--ease-out);
    }

    @media (hover: hover) and (pointer: fine) {
      .insights .insight-card:hover {
        padding-right: 12px;
        padding-left: 12px;
        border-color: rgba(215, 155, 63, 0.34);
        background-color: rgba(215, 155, 63, 0.11);
        background-image: linear-gradient(90deg, rgba(176, 112, 24, 0.11), rgba(244, 202, 117, 0.045) 76%, transparent);
        box-shadow: none;
        transform: none;
      }

      .insights .insight-card:hover .insight-icon {
        color: var(--gold-700);
        border-color: var(--gold-500);
        background-color: rgba(232, 180, 91, 0.16);
        box-shadow: none;
        transform: translateX(9px);
      }

      .insights .insight-card:hover h3,
      .insights .insight-card:hover p {
        transform: translateX(7px);
      }

      .insights .insight-card:hover h3 {
        color: var(--gold-700);
      }

      .insights .insight-card:hover::before {
        opacity: 1;
        background: var(--gold-400);
        box-shadow: 0 0 0 6px rgba(232, 180, 91, 0.10), 0 0 18px rgba(215, 155, 63, 0.30);
        transform: translate(0, -50%);
      }
    }

    @media (max-width: 720px) {
      .insights .insight-card::before {
        display: none;
      }
    }

    /* Home CTA: two clear commercial routes in a compact split layout. */
    .cta-band {
      padding: 72px 0;
      text-align: left;
    }

    .cta-band .cta-content {
      grid-template-columns: minmax(0, 1fr) minmax(250px, 310px);
      gap: clamp(42px, 7vw, 100px);
      align-items: center;
      justify-items: stretch;
    }

    .cta-band .cta-copy {
      max-width: 760px;
    }

    .cta-band .cta-title {
      max-width: 760px;
      font-size: clamp(2.25rem, 3.6vw, 3.25rem);
    }

    .cta-band .cta-copy p {
      max-width: 680px;
      margin-top: 16px;
      line-height: 1.65;
    }

    .cta-band .cta-actions {
      display: grid;
      gap: 12px;
      width: 100%;
    }

    .cta-band .cta-actions .btn {
      width: 100%;
      min-height: 52px;
      margin-top: 0;
      padding-inline: 24px;
      justify-content: space-between;
    }

    @media (max-width: 860px) {
      .cta-band .cta-content {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .cta-band .cta-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 650px;
      }
    }

    @media (max-width: 600px) {
      .cta-band {
        padding: 58px 0;
      }

      .cta-band .cta-actions {
        grid-template-columns: 1fr;
      }
    }

    /* Mobile Our Process: shared heading language with a compact two-up journey. */
    @media (max-width: 720px) {
      .process {
        padding: 68px 0 64px;
      }

      .process-head {
        justify-items: start;
        margin-bottom: 34px;
        text-align: left;
      }

      .process-head .eyebrow {
        min-height: 32px;
        margin-bottom: 14px;
        padding: 7px 13px;
        border: 1px solid rgba(232, 180, 91, 0.42);
        border-radius: 999px;
        background: rgba(232, 180, 91, 0.08);
        color: var(--gold-400);
        font-size: 0.7rem;
        line-height: 1;
        letter-spacing: 0.13em;
      }

      .process-head .eyebrow::before {
        display: block;
        width: 18px;
        height: 1px;
        background: var(--gold-400);
      }

      .process-head .section-title {
        width: 100%;
        max-width: 100%;
        font-family: var(--font-display);
        font-size: clamp(1.7rem, 7.4vw, 2.15rem);
        line-height: 1.08;
        letter-spacing: -0.02em;
        text-align: left;
      }

      .process-head .section-lead {
        max-width: 100%;
        margin-top: 14px;
        font-size: 0.94rem;
        line-height: 1.65;
        text-align: left;
      }

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

      .process-step {
        min-width: 0;
        min-height: 0;
        padding: 0 4px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
        text-align: left;
        justify-items: start;
        align-content: start;
      }

      .process-step:hover {
        transform: none;
      }

      .process-step:not(:last-child)::after {
        display: none;
      }

      .process-icon {
        width: 66px;
        height: 66px;
        margin-bottom: 15px;
        padding: 17px;
      }

      .process-step:hover .process-icon {
        transform: none;
      }

      .process-step h3 {
        width: 100%;
        margin-bottom: 7px;
        font-family: var(--font-display);
        font-size: 1.08rem;
        line-height: 1.12;
        text-align: left;
      }

      .process-step p {
        max-width: 100%;
        font-size: 0.76rem;
        line-height: 1.55;
        text-align: left;
      }
    }

    /* Mobile Why Choose Bainzy: four proof points in a compact 2 x 2 grid. */
    @media (max-width: 720px) {
      .why .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .why .stat-card,
      .why .stat-card:nth-child(2) {
        min-width: 0;
        min-height: 184px;
        padding: 18px 10px;
        border-right: 0;
        border-bottom: 0;
      }

      .why .stat-card:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.10);
      }

      .why .stat-card:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
      }

      .why .stat-icon {
        width: 46px;
        height: 46px;
        margin-bottom: 8px;
        padding: 10px;
      }

      .why .stat-number {
        margin-bottom: 7px;
        font-size: clamp(1.75rem, 8vw, 2.15rem);
      }

      .why .stat-card h3 {
        font-size: 1rem;
      }

      .why .stat-card p {
        font-size: 0.74rem;
        line-height: 1.45;
      }
    }

    /* Mobile hero: remove the animated globe and its reserved canvas space. */
    @media (max-width: 720px) {
      .hero-grid {
        padding-bottom: 64px;
      }

      .hero-visual-space {
        display: none !important;
        min-height: 0;
      }
    }
