/* ============================================================
   HOME · HERO + GLOBAL HOME PAGE STYLES
   ============================================================ */
  /* ═══════════════════════════════════════════════════
     HERO PROOF STRIP — Above-the-fold quantified trust
     ═══════════════════════════════════════════════════ */
  .hero__proof {
    margin-top: clamp(1.4rem, 2vw, 1.9rem);
    margin-bottom: clamp(1.4rem, 2vw, 1.9rem);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(0.75rem, 1.5vw, 1.6rem);
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(37,99,235,0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow:
      0 1px 2px rgba(15,23,42,0.04),
      0 8px 24px rgba(37,99,235,0.06);
    max-width: 600px;
  }
  .hero__proof-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
  }
  .hero__proof-num {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: clamp(1.35rem, 1rem + 0.7vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #6d28d9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero__proof-plus {
    color: #2563eb;
    -webkit-text-fill-color: #2563eb;
    font-weight: 700;
    margin-left: 1px;
  }
  .hero__proof-label {
    margin-top: 4px;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #475569;
    line-height: 1.25;
    text-transform: none;
  }
  .hero__proof-divider {
    width: 1px;
    height: 36px;
    background: linear-gradient(180deg, transparent, rgba(37,99,235,0.18), transparent);
    flex-shrink: 0;
  }

  /* Intent layers — secondary CTA row */
  .hero__intents {
    margin-top: 0.95rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.85rem;
    font-size: 0.88rem;
  }
  .hero__intent {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1e40af;
    font-weight: 600;
    text-decoration: none;
    padding: 4px 0;
    border-bottom: 1px dashed transparent;
    transition: color .18s, border-color .18s, transform .18s;
  }
  .hero__intent:hover {
    color: #6d28d9;
    border-bottom-color: rgba(109,40,217,0.4);
    transform: translateY(-1px);
  }
  .hero__intent-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #cbd5e1;
    flex-shrink: 0;
  }

  @media (max-width: 900px) {
    .hero__proof { justify-content: center; max-width: 100%; }
    .hero__intents { justify-content: center; }
  }
  @media (max-width: 520px) {
    .hero__proof { gap: 0.6rem; padding: 0.85rem 1rem; }
    .hero__proof-divider { height: 30px; }
    .hero__proof-num { font-size: 1.2rem; }
    .hero__proof-label { font-size: 0.68rem; }
  }

  [data-theme="dark"] .hero__proof {
    background: rgba(15,23,42,0.55);
    border-color: rgba(255,255,255,0.08);
  }
  [data-theme="dark"] .hero__proof-label { color: rgba(255,255,255,0.65); }
  [data-theme="dark"] .hero__proof-num {
    background: linear-gradient(135deg, #60a5fa 0%, #818cf8 50%, #a78bfa 100%);
    -webkit-background-clip: text; background-clip: text;
  }
  [data-theme="dark"] .hero__intent { color: #93c5fd; }

  /* ═══════════════════════════════════════════════════
     HERO VIDEO MODAL
     ═══════════════════════════════════════════════════ */
  .hero-video-modal {
    position: fixed; inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: clamp(1rem, 3vw, 2rem);
  }
  .hero-video-modal.is-open { display: flex; }
  .hero-video-modal__backdrop {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(15,23,42,0.78) 0%, rgba(2,6,23,0.92) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    animation: heroVidFade .25s ease-out;
  }
  .hero-video-modal__panel {
    position: relative;
    width: 100%;
    max-width: 920px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    animation: heroVidPop .35s cubic-bezier(.18,.89,.32,1.28);
  }
  .hero-video-modal__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.4rem 0.85rem;
    border-bottom: 1px solid #f1f5f9;
  }
  .hero-video-modal__eyebrow {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #2563eb;
    text-transform: uppercase;
    margin-bottom: 4px;
  }
  .hero-video-modal__title {
    font-size: clamp(1rem, 0.9rem + 0.4vw, 1.25rem);
    font-weight: 700;
    color: #0c1a2e;
    margin: 0;
    letter-spacing: -0.01em;
  }
  .hero-video-modal__close {
    background: #f1f5f9;
    border: none;
    width: 36px; height: 36px;
    border-radius: 50%;
    color: #475569;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .15s, color .15s;
    flex-shrink: 0;
  }
  .hero-video-modal__close:hover { background: #ef4444; color: #fff; }
  .hero-video-modal__frame {
    position: relative;
    aspect-ratio: 16/9;
    background: #0f172a;
  }
  .hero-video-modal__placeholder {
    position: absolute; inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
  }
  .hero-video-modal__placeholder svg { color: rgba(255,255,255,0.85); }
  .hero-video-modal__frame iframe {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    border: 0;
    display: none;
  }
  .hero-video-modal.is-open .hero-video-modal__frame iframe { display: block; }
  .hero-video-modal.is-open .hero-video-modal__placeholder { display: none; }
  .hero-video-modal__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1.4rem;
    background: #f8fafc;
    border-top: 1px solid #f1f5f9;
    flex-wrap: wrap;
  }
  .hero-video-modal__foot-text {
    font-size: 0.88rem;
    color: #475569;
    font-weight: 500;
  }
  @keyframes heroVidFade { from { opacity: 0; } to { opacity: 1; } }
  @keyframes heroVidPop {
    from { opacity: 0; transform: translateY(20px) scale(.96); }
    to   { opacity: 1; transform: translateY(0)    scale(1); }
  }
  body.hero-video-locked { overflow: hidden; }

  /* ═══════════════════════════════════════════════════
     HERO SVG SLIDER — Soft crossfade slideshow
     ═══════════════════════════════════════════════════ */
  .hero-slider {
    position: relative;
    width: 100%;
    max-width: 560px;
  }
  .hero-slider__slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 20px 48px rgba(37,99,235,0.12));
    object-fit: cover;
    opacity: 0;
    transform: translateX(60px) scale(0.97);
    transition: opacity 1s cubic-bezier(0.4,0,0.2,1), transform 1s cubic-bezier(0.4,0,0.2,1);
    pointer-events: none;
  }
  picture.hero-slider__slide > img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: inherit;
    object-fit: cover;
  }
  .hero-slider__slide--active {
    position: relative;
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
  }

  /* ═══════════════════════════════════════════════════
     HERO 2026 — Light premium layered background
     ═══════════════════════════════════════════════════ */

  .hero--2026 {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    padding: clamp(7.5rem, 12vw, 10.5rem) 0 clamp(4.5rem, 9vw, 7rem);
    min-height: auto;
    display: flex;
    align-items: center;
  }

  /* Hero content — enhanced visibility */
  .hero--2026 .hero__badge {
    background: rgba(37,99,235,0.08);
    border: 1.5px solid rgba(37,99,235,0.18);
    color: #1e3a6e;
    font-weight: 600;
    letter-spacing: 0.03em;
  }
  .hero--2026 .hero__badge-pulse {
    background: #2563eb;
    box-shadow: 0 0 8px rgba(37,99,235,0.5);
  }
  .hero--2026 .hero__title {
    color: #0c1a2e;
    text-shadow: 0 1px 2px rgba(0,0,0,0.04);
  }
  .hero--2026 .text-gradient-shimmer {
    background: linear-gradient(135deg, #1e40af 0%, #6d28d9 30%, #2563eb 60%, #1e40af 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroShimmer 4s ease-in-out infinite;
  }
  .hero--2026 .hero__subtitle {
    color: #334155;
    font-size: clamp(1rem, 0.9rem + 0.3vw, 1.15rem);
    line-height: 1.7;
  }
  .hero--2026 .hero__chip {
    background: rgba(255,255,255,0.8);
    border: 1px solid rgba(37,99,235,0.12);
    box-shadow: 0 1px 4px rgba(37,99,235,0.06);
    color: #1e3a5f;
    font-weight: 500;
  }

  /* ── Split layout ── */
  .hero__split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: clamp(2.5rem, 5vw, 5rem);
  }
  .hero__split-left {
    text-align: left;
  }
  .hero__split-left .hero__subtitle {
    max-width: 540px;
  }
  .hero__split-left .hero__actions {
    justify-content: flex-start;
  }
  .hero__split-right {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero__split-right img {
    animation: heroIllustFloat 5s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(37,99,235,0.12));
  }
  @keyframes heroIllustFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-8px) rotate(0.5deg); }
    50% { transform: translateY(-14px) rotate(0deg); }
    75% { transform: translateY(-6px) rotate(-0.5deg); }
  }

  @media (max-width: 900px) {
    .hero__split {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 2rem;
    }
    .hero__split-left {
      text-align: center;
      order: 2;
    }
    .hero__split-left .hero__subtitle {
      margin-left: auto;
      margin-right: auto;
    }
    .hero__split-left .hero__actions {
      justify-content: center;
    }
    .hero__split-left .hero__chips {
      justify-content: center;
    }
    .hero__split-right {
      order: 1;
      max-width: 420px;
      margin: 0 auto;
    }
  }
  @media (max-width: 600px) {
    .hero__split { gap: 1.5rem; }
    .hero__split-right { max-width: 320px; }
  }
  @media (max-width: 480px) {
    .hero__split-right { max-width: 260px; }
  }

  @keyframes heroShimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 200% center; }
  }

  /* ── Animated dot grid — more visible ── */
  .hero-grid-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(37,99,235,0.12) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: radial-gradient(ellipse 85% 75% at 50% 40%, black 25%, transparent 72%);
    -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 40%, black 25%, transparent 72%);
    animation: gridDrift 16s linear infinite;
  }
  @keyframes gridDrift {
    0% { background-position: 0 0; }
    100% { background-position: 40px 40px; }
  }

  /* ── Radiant glow orbs — vibrant & visible ── */
  .hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(70px);
    z-index: 1;
    will-change: transform, opacity;
  }
  .hero-glow--1 {
    width: clamp(450px, 55vw, 900px);
    height: clamp(450px, 55vw, 900px);
    background: radial-gradient(circle, rgba(59,130,246,0.22) 0%, rgba(37,99,235,0.08) 40%, transparent 70%);
    top: -20%;
    left: -12%;
    animation: glowOrbit1 20s ease-in-out infinite;
  }
  .hero-glow--2 {
    width: clamp(400px, 45vw, 750px);
    height: clamp(400px, 45vw, 750px);
    background: radial-gradient(circle, rgba(139,92,246,0.18) 0%, rgba(124,58,237,0.06) 45%, transparent 70%);
    bottom: -15%;
    right: -10%;
    animation: glowOrbit2 26s ease-in-out infinite;
  }
  .hero-glow--3 {
    width: clamp(300px, 35vw, 600px);
    height: clamp(300px, 35vw, 600px);
    background: radial-gradient(circle, rgba(96,165,250,0.20) 0%, rgba(59,130,246,0.06) 50%, transparent 70%);
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    animation: glowOrbit3 18s ease-in-out infinite;
  }

  @keyframes glowOrbit1 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.85; }
    25% { transform: translate(6%, 8%) scale(1.08); opacity: 1; }
    50% { transform: translate(10%, 15%) scale(1.15); opacity: 0.9; }
    75% { transform: translate(-3%, 6%) scale(0.97); opacity: 0.75; }
  }
  @keyframes glowOrbit2 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
    30% { transform: translate(-8%, -6%) scale(1.12); opacity: 1; }
    60% { transform: translate(-12%, -10%) scale(1.18); opacity: 0.85; }
    80% { transform: translate(4%, -2%) scale(0.95); opacity: 0.7; }
  }
  @keyframes glowOrbit3 {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.6; }
    35% { transform: translateX(-50%) translateY(-10%) scale(1.15); opacity: 0.9; }
    70% { transform: translateX(-50%) translateY(-18%) scale(1.25); opacity: 0.7; }
  }

  /* ── Accent light beams — more prominent ── */
  .hero-beam {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    animation: beamPulse 7s ease-in-out infinite;
  }
  .hero-beam--1 {
    width: 2px;
    height: 50%;
    top: 0;
    left: 22%;
    background: linear-gradient(180deg, rgba(37,99,235,0.25), rgba(99,102,241,0.08), transparent);
    animation-delay: 0s;
  }
  .hero-beam--2 {
    width: 2px;
    height: 45%;
    top: 0;
    right: 28%;
    background: linear-gradient(180deg, rgba(124,58,237,0.20), rgba(139,92,246,0.06), transparent);
    animation-delay: 3.5s;
  }
  @keyframes beamPulse {
    0%, 100% { opacity: 0; transform: scaleY(0.7) translateY(-5%); }
    12% { opacity: 1; transform: scaleY(1) translateY(0); }
    35% { opacity: 0.6; transform: scaleY(1.05) translateY(2%); }
    50% { opacity: 0; transform: scaleY(1.1) translateY(5%); }
  }

  /* ── Floating light motes — soft blue specks ── */
  .hero-motes {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
  }
  .hero-motes span {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: moteDrift linear infinite;
  }
  /* Blue motes */
  .hero-motes span:nth-child(1)  { width:3px; height:3px; left:7%;   background:rgba(37,99,235,0.5);  animation-duration:14s; animation-delay:0s; }
  .hero-motes span:nth-child(2)  { width:4px; height:4px; left:15%;  background:rgba(99,102,241,0.45); animation-duration:18s; animation-delay:-3s; }
  .hero-motes span:nth-child(3)  { width:3px; height:3px; left:25%;  background:rgba(37,99,235,0.4);  animation-duration:12s; animation-delay:-6s; }
  /* Purple motes */
  .hero-motes span:nth-child(4)  { width:5px; height:5px; left:35%;  background:rgba(124,58,237,0.35); animation-duration:20s; animation-delay:-1s; }
  .hero-motes span:nth-child(5)  { width:3px; height:3px; left:45%;  background:rgba(37,99,235,0.45); animation-duration:16s; animation-delay:-8s; }
  .hero-motes span:nth-child(6)  { width:4px; height:4px; left:55%;  background:rgba(139,92,246,0.4); animation-duration:22s; animation-delay:-4s; }
  .hero-motes span:nth-child(7)  { width:3px; height:3px; left:65%;  background:rgba(59,130,246,0.5); animation-duration:13s; animation-delay:-10s; }
  /* Sky blue motes */
  .hero-motes span:nth-child(8)  { width:4px; height:4px; left:72%;  background:rgba(96,165,250,0.45); animation-duration:17s; animation-delay:-7s; }
  .hero-motes span:nth-child(9)  { width:3px; height:3px; left:82%;  background:rgba(37,99,235,0.4);  animation-duration:15s; animation-delay:-12s; }
  .hero-motes span:nth-child(10) { width:5px; height:5px; left:90%;  background:rgba(99,102,241,0.35); animation-duration:19s; animation-delay:-2s; }
  .hero-motes span:nth-child(11) { width:3px; height:3px; left:10%;  background:rgba(124,58,237,0.4); animation-duration:21s; animation-delay:-14s; }
  .hero-motes span:nth-child(12) { width:4px; height:4px; left:50%;  background:rgba(59,130,246,0.45); animation-duration:24s; animation-delay:-5s; }
  .hero-motes span:nth-child(13) { width:3px; height:3px; left:60%;  background:rgba(37,99,235,0.5);  animation-duration:11s; animation-delay:-9s; }
  .hero-motes span:nth-child(14) { width:4px; height:4px; left:30%;  background:rgba(139,92,246,0.4); animation-duration:23s; animation-delay:-11s; }
  .hero-motes span:nth-child(15) { width:3px; height:3px; left:78%;  background:rgba(96,165,250,0.5); animation-duration:14s; animation-delay:-15s; }

  @keyframes moteDrift {
    0%   { transform: translateY(110vh) scale(0); opacity: 0; }
    8%   { opacity: 0.7; transform: translateY(92vh) scale(1); }
    30%  { opacity: 0.4; transform: translateY(65vh) scale(1.1); }
    60%  { opacity: 0.5; transform: translateY(35vh) scale(0.9); }
    85%  { opacity: 0.6; transform: translateY(10vh) scale(1.05); }
    100% { transform: translateY(-10vh) scale(0.6); opacity: 0; }
  }

  /* ── Subtle grain texture ── */
  .hero-grain {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
  }

  /* ── Bottom fade ── */
  .hero-fade-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    z-index: 4;
    background: linear-gradient(to bottom, transparent, #ffffff);
    pointer-events: none;
  }

  /* ── Canvas layers ── */
  .hero--2026 .hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
  }
  .hero--2026 .hero-canvas--particles {
    z-index: 2;
    opacity: 0.65;
  }

  /* ── Responsive ── */
  @media (max-width: 768px) {
    .hero--2026 {
      min-height: auto;
      padding: clamp(4.5rem, 9vw, 6rem) 0 clamp(3.5rem, 7vw, 5rem);
    }
    .hero-beam { display: none; }
    .hero-grid-overlay { background-size: 30px 30px; }
  }

  /* ── Reduced motion ── */
  @media (prefers-reduced-motion: reduce) {
    .hero-glow,
    .hero-beam,
    .hero-motes span,
    .hero-grid-overlay {
      animation: none !important;
    }
    .hero-motes span { display: none; }
  }

  /* ── Dark theme — flip to dark ── */
  [data-theme="dark"] .hero--2026 {
    background: linear-gradient(165deg, #050a14 0%, #0a1628 30%, #0d1f3c 60%, #091525 100%);
  }
  [data-theme="dark"] .hero--2026 .hero__title { color: #fff; }
  [data-theme="dark"] .hero--2026 .hero__subtitle { color: rgba(255,255,255,0.7); }
  [data-theme="dark"] .hero--2026 .hero__badge { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
  [data-theme="dark"] .hero--2026 .text-gradient-shimmer { background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 35%, #818cf8 65%, #60a5fa 100%); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; }
  [data-theme="dark"] .hero--2026 .btn--secondary { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.9); }
  [data-theme="dark"] .hero-grid-overlay { background-image: radial-gradient(circle, rgba(96,165,250,0.12) 1px, transparent 1px); }
  [data-theme="dark"] .hero-glow--1 { background: radial-gradient(circle, rgba(37,99,235,0.25) 0%, rgba(37,99,235,0.08) 40%, transparent 70%); }
  [data-theme="dark"] .hero-glow--2 { background: radial-gradient(circle, rgba(124,58,237,0.2) 0%, rgba(99,102,241,0.06) 45%, transparent 70%); }
  [data-theme="dark"] .hero-glow--3 { background: radial-gradient(circle, rgba(96,165,250,0.18) 0%, rgba(59,130,246,0.05) 50%, transparent 70%); }
  [data-theme="dark"] .hero-motes span { background: rgba(255,255,255,0.6); }
  [data-theme="dark"] .hero-fade-bottom { background: linear-gradient(to bottom, transparent, var(--color-bg, #0f172a)); }

/* ============================================================
   HOME · SUPPLIERS VISUAL
   ============================================================ */
      .suppliers-visual:hover .suppliers-visual__card {
        transform: perspective(1000px) rotateY(0deg) translateY(-6px);
        box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
      }
      @keyframes supplierSpin {
        from { transform: rotate(0deg); }
        to   { transform: rotate(360deg); }
      }
      @media (max-width: 768px) {
        .suppliers-visual { margin: var(--space-6) var(--space-3) 0; }
      }

/* ============================================================
   HOME · CAROUSELS, MODULES, COVERAGE MAP
   ============================================================ */
/* ══════ CAROUSEL ══════ */
.carousel-track {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--space-2);
  margin: 0 calc(-1 * var(--space-2));
  padding-left: var(--space-2);
  padding-right: var(--space-2);
}
.carousel-track::-webkit-scrollbar { height: 6px; }
.carousel-track::-webkit-scrollbar-track { background: transparent; }
.carousel-track::-webkit-scrollbar-thumb { background: var(--color-border, #e2e8f0); border-radius: 3px; }

.carousel-card {
  flex: 0 0 calc(33.333% - 1rem);
  scroll-snap-align: start;
  min-width: 280px;
}
@media (max-width: 1024px) {
  .carousel-card { flex: 0 0 calc(50% - .75rem); }
}
@media (max-width: 640px) {
  .carousel-card { flex: 0 0 calc(100% - 1rem); min-width: 260px; }
}

.carousel-card__thumb {
  border-radius: 12px;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: var(--space-4);
}
.carousel-card__thumb--blue   { background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 50%, #93c5fd 100%); }
.carousel-card__thumb--green  { background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 50%, #86efac 100%); }
.carousel-card__thumb--purple { background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 50%, #d8b4fe 100%); }
.carousel-card__thumb--teal   { background: linear-gradient(135deg, #ccfbf1 0%, #99f6e4 50%, #5eead4 100%); }
.carousel-card__thumb--orange { background: linear-gradient(135deg, #ffedd5 0%, #fed7aa 50%, #fdba74 100%); }

.carousel-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--color-border, #e2e8f0);
  background: var(--color-bg-white, #fff);
  color: var(--color-text, #0f172a);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .15s;
}
.carousel-btn:hover {
  background: var(--color-primary, #2563eb);
  border-color: var(--color-primary, #2563eb);
  color: #fff;
  box-shadow: 0 4px 12px rgba(37,99,235,.25);
}

/* ════════════════════════════════════════════════════════════
   COVERAGE MAP — 2027 EDITORIAL / FLOATING HUD
   ════════════════════════════════════════════════════════════ */
.cov-map-section {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(4rem, 7vw, 6rem);
  overflow: hidden;
  background: #f7f9fc;
  isolation: isolate;
}

/* ── Ambient layer ─────────────────────────────────── */
.cov-map-ambient { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.cov-map-ambient__mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 8% 10%,  rgba(37,99,235,.08)  0%, transparent 60%),
    radial-gradient(700px 500px at 92% 18%, rgba(139,92,246,.07) 0%, transparent 60%),
    radial-gradient(900px 600px at 50% 100%, rgba(14,165,233,.06) 0%, transparent 55%),
    linear-gradient(180deg, #f7f9fc 0%, #eef2f9 100%);
}
.cov-map-ambient__grid {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(15,23,42,.05) 1px, transparent 1.5px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 40%, transparent 85%);
  opacity: .6;
}
.cov-map-ambient__orb {
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .45;
  animation: cov-float 16s ease-in-out infinite;
}
.cov-map-ambient__orb--a { top: -120px; left: -80px;  background: radial-gradient(circle, #2563eb 0%, transparent 70%); }
.cov-map-ambient__orb--b { top: 20%; right: -120px;   background: radial-gradient(circle, #8b5cf6 0%, transparent 70%); animation-delay: -5s; }
.cov-map-ambient__orb--c { bottom: -140px; left: 35%; background: radial-gradient(circle, #06b6d4 0%, transparent 70%); animation-delay: -10s; opacity: .3; }
@keyframes cov-float {
  0%, 100% { transform: translate3d(0,0,0); }
  33%      { transform: translate3d(40px, -20px, 0); }
  66%      { transform: translate3d(-30px, 30px, 0); }
}

/* ── Editorial header (left-anchored, asymmetric) ─── */
.cov-map-header {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 0 clamp(2rem, 4vw, 3rem);
}
.cov-map-header__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .45rem .85rem;
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(15,23,42,.08);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: #334155;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  box-shadow: 0 2px 6px -2px rgba(15,23,42,.05);
}
.cov-map-ping {
  position: relative;
  display: inline-block;
  width: 8px; height: 8px;
}
.cov-map-ping span {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 2px rgba(16,185,129,.2);
}
.cov-map-ping::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  background: #10b981;
  opacity: .6;
  animation: cov-ping 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes cov-ping {
  0%   { transform: scale(1);   opacity: .6; }
  80%, 100% { transform: scale(3); opacity: 0; }
}
.cov-map-header__title {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.03em;
  font-weight: 800;
  color: #0b1220;
  margin: 0 0 .85rem;
}
.cov-map-header__gradient {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 55%, #06b6d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.cov-map-header__lead {
  font-size: clamp(1rem, 1.1vw, 1.08rem);
  line-height: 1.65;
  color: #475569;
  max-width: 620px;
  margin: 0;
}

/* ── The canvas — full-bleed card with floating HUD ── */
.cov-map-canvas {
  position: relative;
  z-index: 1;
  border-radius: clamp(20px, 2vw, 28px);
  background:
    linear-gradient(140deg, rgba(255,255,255,.75) 0%, rgba(255,255,255,.55) 100%);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border: 1px solid rgba(255,255,255,.85);
  padding: clamp(14px, 1.5vw, 22px);
  box-shadow:
    0 1px 1px rgba(15,23,42,.04),
    0 30px 60px -24px rgba(37,99,235,.25),
    0 10px 30px -12px rgba(15,23,42,.08),
    inset 0 1px 0 rgba(255,255,255,.9);
}

/* Corner tick marks — geographic instrumentation feel */
.cov-map-corner {
  position: absolute;
  width: 22px; height: 22px;
  z-index: 3;
  pointer-events: none;
}
.cov-map-corner::before,
.cov-map-corner::after {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  border-radius: 2px;
}
.cov-map-corner::before { width: 22px; height: 2px; }
.cov-map-corner::after  { width: 2px;  height: 22px; }
.cov-map-corner--tl { top: -1px;    left: -1px;   }
.cov-map-corner--tl::before { top: 0;    left: 0; }
.cov-map-corner--tl::after  { top: 0;    left: 0; }
.cov-map-corner--tr { top: -1px;    right: -1px;  }
.cov-map-corner--tr::before { top: 0;    right: 0; }
.cov-map-corner--tr::after  { top: 0;    right: 0; }
.cov-map-corner--bl { bottom: -1px; left: -1px;   }
.cov-map-corner--bl::before { bottom: 0; left: 0; }
.cov-map-corner--bl::after  { bottom: 0; left: 0; }
.cov-map-corner--br { bottom: -1px; right: -1px;  }
.cov-map-corner--br::before { bottom: 0; right: 0; }
.cov-map-corner--br::after  { bottom: 0; right: 0; }

/* ── Map frame & the map itself ─────────────────────── */
.cov-map-frame {
  position: relative;
  border-radius: clamp(14px, 1.5vw, 20px);
  overflow: hidden;
  background: #dfe6f0;
  isolation: isolate;
}
#client-coverage-map {
  width: 100%;
  height: clamp(460px, 62vh, 640px);
  background: linear-gradient(180deg, #e9eff6 0%, #dfe6f0 100%);
}

/* Soft vignette over map edges — helps HUD panels pop */
.cov-map-vignette {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 2;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 55%, rgba(15,23,42,.10) 100%),
    linear-gradient(180deg, rgba(255,255,255,.08) 0%, transparent 30%, transparent 70%, rgba(15,23,42,.06) 100%);
}

/* Radar sweep — slow rotating conic gradient */
.cov-map-sweep {
  position: absolute;
  top: 50%; left: 50%;
  width: 130%; aspect-ratio: 1;
  transform: translate(-50%, -50%);
  pointer-events: none; z-index: 2;
  background: conic-gradient(from 0deg at 50% 50%,
    rgba(37,99,235,0) 0%,
    rgba(37,99,235,0) 75%,
    rgba(37,99,235,.08) 85%,
    rgba(124,58,237,.12) 95%,
    rgba(37,99,235,0) 100%);
  mix-blend-mode: multiply;
  animation: cov-sweep 9s linear infinite;
  opacity: .9;
}
@keyframes cov-sweep { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* Subtle scanlines texture */
.cov-map-scanlines {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 2;
  background: repeating-linear-gradient(
    180deg,
    transparent 0,
    transparent 3px,
    rgba(15,23,42,.025) 3px,
    rgba(15,23,42,.025) 4px
  );
  mix-blend-mode: multiply;
  opacity: .35;
}

/* ── Floating HUD panels ────────────────────────────── */
.cov-map-hud {
  position: absolute;
  z-index: 500;
  pointer-events: auto;
}
.cov-map-hud--tl { top: 18px;    left: 18px;   }
.cov-map-hud--tr { top: 18px;    right: 18px;  }
.cov-map-hud--bl { bottom: 18px; left: 18px;   max-width: calc(100% - 36px); }
.cov-map-hud--br { bottom: 18px; right: 18px;  }

/* Live pill (top-right) */
.cov-hud-live {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .85rem;
  border-radius: 999px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 8px 24px -10px rgba(15,23,42,.25);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: #0b1220;
  text-transform: uppercase;
}
.cov-hud-live__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,.25);
  animation: cov-live-pulse 1.6s ease-in-out infinite;
}
@keyframes cov-live-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(239,68,68,.25); }
  50%      { box-shadow: 0 0 0 6px rgba(239,68,68,.0); }
}

/* Hero metric panel (top-left) — editorial card */
.cov-hud-hero {
  position: relative;
  padding: 1rem 1.15rem 1.05rem;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.78) 100%);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow:
    0 20px 45px -20px rgba(37,99,235,.4),
    0 4px 12px rgba(15,23,42,.08),
    inset 0 1px 0 rgba(255,255,255,1);
  min-width: 220px;
}
.cov-hud-hero::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(37,99,235,.35), rgba(124,58,237,.25), rgba(6,182,212,.2));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: .9;
}
.cov-hud-hero__eyebrow {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #64748b;
}
.cov-hud-hero__row {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  margin-top: .35rem;
}
.cov-hud-hero__number {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: clamp(2.2rem, 3.4vw, 2.9rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.035em;
  background: linear-gradient(135deg, #1d4ed8 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
}
.cov-hud-hero__trend {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .25rem .55rem;
  border-radius: 999px;
  background: rgba(16,185,129,.12);
  border: 1px solid rgba(16,185,129,.28);
  color: #059669;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.cov-hud-hero__sub {
  display: block;
  margin-top: .35rem;
  font-size: .78rem;
  color: #64748b;
  font-weight: 500;
}

/* Mini chips row (bottom-left) */
.cov-hud-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.cov-hud-chip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem .85rem .55rem .7rem;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: 0 6px 18px -10px rgba(15,23,42,.2);
  transition: transform .2s ease, box-shadow .2s ease;
}
.cov-hud-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -10px rgba(37,99,235,.35);
}
.cov-hud-chip__icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dbeafe, #ede9fe);
  color: #2563eb;
}
.cov-hud-chip__value {
  font-size: .95rem;
  font-weight: 800;
  color: #0b1220;
  letter-spacing: -.01em;
  font-variant-numeric: tabular-nums;
}
.cov-hud-chip__label {
  font-size: .72rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Legend (bottom-right) */
.cov-hud-legend {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .9rem;
  border-radius: 999px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: 0 6px 18px -10px rgba(15,23,42,.25);
  font-size: .72rem;
  font-weight: 600;
  color: #0b1220;
}
.cov-hud-legend__dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,.22);
}
.cov-hud-legend__divider {
  width: 1px; height: 14px; background: rgba(15,23,42,.12);
  margin: 0 .15rem;
}
.cov-hud-legend__cluster {
  display: inline-flex;
  align-items: center; justify-content: center;
  min-width: 22px; height: 22px; padding: 0 6px;
  border-radius: 999px;
  font-size: .66rem;
  font-weight: 800;
  color: #fff;
  background: radial-gradient(circle at 30% 30%, #c4b5fd 0%, #8b5cf6 55%, #6d28d9 100%);
  box-shadow: 0 0 0 3px rgba(139,92,246,.2);
}

/* Loading state */
.cov-map-loading {
  position: absolute;
  inset: 0;
  z-index: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255,255,255,.92) 0%, rgba(237,242,249,.9) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: opacity .5s ease;
}
.cov-map-loading.is-hidden { opacity: 0; pointer-events: none; }
.cov-map-loading__core {
  position: relative;
  width: 56px; height: 56px;
}
.cov-map-loading__ring {
  position: absolute; inset: 0;
  border: 2px solid rgba(37,99,235,.3);
  border-radius: 50%;
  animation: cov-load-ring 1.8s ease-out infinite;
}
.cov-map-loading__ring--2 { animation-delay: .6s; }
.cov-map-loading__dot {
  position: absolute;
  top: 50%; left: 50%;
  width: 10px; height: 10px;
  background: #2563eb;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 5px rgba(37,99,235,.18);
}
@keyframes cov-load-ring {
  0%   { transform: scale(.4); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}
.cov-map-loading__label {
  font-size: .85rem;
  font-weight: 600;
  color: #475569;
  letter-spacing: .02em;
}

/* ── Foot: privacy + CTA ────────────────────────────── */
.cov-map-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem .35rem 0;
  flex-wrap: wrap;
}
.cov-map-foot__note {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  color: #64748b;
  font-weight: 500;
}
.cov-map-foot__cta {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .6rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #1d4ed8 0%, #7c3aed 100%);
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .01em;
  box-shadow: 0 10px 25px -10px rgba(37,99,235,.6);
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}
.cov-map-foot__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(37,99,235,.75);
  filter: brightness(1.05);
  color: #fff;
  text-decoration: none;
}
.cov-map-foot__cta svg { transition: transform .22s ease; }
.cov-map-foot__cta:hover svg { transform: translateX(3px); }

/* ── Custom Leaflet marker (preserved classnames below) ── */
.client-pulse-marker {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #2563eb;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(15,23,42,.35);
  position: relative;
}
.client-pulse-marker::after {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,99,235,.55);
  animation: client-pulse 2s ease-out infinite;
}
@keyframes client-pulse {
  0%   { transform: scale(.6); opacity: .9; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* Cluster markers — premium gradient spheres */
.client-map-cluster {
  display: flex;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
  font-size: .85rem;
  background: radial-gradient(circle at 30% 28%, #93c5fd 0%, #2563eb 55%, #1e3a8a 100%);
  box-shadow:
    0 8px 22px -6px rgba(37,99,235,.6),
    0 0 0 5px rgba(37,99,235,.15),
    inset 0 1px 0 rgba(255,255,255,.4);
  border: 2px solid rgba(255,255,255,.95);
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.client-map-cluster--lg {
  width: 54px; height: 54px;
  font-size: .95rem;
  background: radial-gradient(circle at 30% 28%, #ddd6fe 0%, #8b5cf6 55%, #5b21b6 100%);
  box-shadow:
    0 10px 26px -6px rgba(139,92,246,.6),
    0 0 0 6px rgba(139,92,246,.15),
    inset 0 1px 0 rgba(255,255,255,.4);
}

/* Leaflet polish */
.leaflet-container a.leaflet-popup-close-button { color: #64748b; }
.leaflet-control-attribution {
  font-size: 10px;
  background: rgba(255,255,255,.9) !important;
  border-radius: 8px 0 0 0;
  padding: 2px 6px !important;
}
.leaflet-control-zoom a {
  border-radius: 10px !important;
  border: 1px solid rgba(15,23,42,.08) !important;
  color: #0b1220 !important;
  background: rgba(255,255,255,.95) !important;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px -4px rgba(15,23,42,.2) !important;
}
.leaflet-control-zoom a:hover { background: #fff !important; }

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 900px) {
  .cov-map-hud--tl { top: 14px; left: 14px; right: 14px; }
  .cov-hud-hero { min-width: 0; }
  .cov-map-hud--bl { left: 14px; right: 14px; bottom: 14px; }
  .cov-map-hud--br { display: none; }  /* legend hidden on mobile, already in chips */
  .cov-hud-chips { justify-content: flex-start; }
  #client-coverage-map { height: 480px; }
}
@media (max-width: 600px) {
  .cov-map-hud--tr { top: 12px; right: 12px; }
  .cov-hud-live { padding: .4rem .65rem; font-size: .65rem; }
  .cov-hud-hero { padding: .8rem .9rem; }
  .cov-hud-hero__number { font-size: 2.1rem; }
  .cov-hud-chip { padding: .45rem .7rem; }
  .cov-hud-chip__label { display: none; }  /* on very small screens, value-only chips */
  #client-coverage-map { height: 420px; }
  .cov-map-foot { gap: .6rem; }
  .cov-map-foot__note { font-size: .72rem; }
}
@media (prefers-reduced-motion: reduce) {
  .cov-map-ambient__orb,
  .cov-map-sweep,
  .cov-map-ping::before,
  .cov-hud-live__dot,
  .cov-map-loading__ring { animation: none !important; }
}


