  /* Map Visual */
  .map-visual {
    position: relative;
    background: var(--navy);
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1.1 / 1;
    box-shadow: var(--shadow-lg);
  }
  .map-visual svg { width: 100%; height: 100%; }
  .map-card {
    position: absolute;
    background: white;
    border-radius: 10px;
    padding: 12px 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,.2);
    font-size: 12px;
  }
  .map-card-title { font-weight: 700; color: var(--navy); font-size: 11px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
  .map-card-val { font-family: var(--font-serif); font-size: 22px; color: var(--text); }
  .map-card-sub { color: var(--text-muted); font-size: 11px; }
  .map-badge {
    position: absolute;
    background: var(--blue-accent);
    color: white;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 11px; font-weight: 600;
    display: flex; align-items: center; gap: 6px;
    box-shadow: 0 4px 16px rgba(26,93,200,.4);
  }

  /* Section layout */
  section { padding: 96px 48px; }
  .container { max-width: 1280px; margin: 0 auto; }
  .section-eyebrow {
    font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    color: var(--blue-accent); margin-bottom: 16px;
  }
  .section-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3vw, 44px);
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
  }
  .section-sub {
    font-size: 17px; color: var(--text-muted); line-height: 1.65;
    max-width: 560px;
  }
  .section-header { margin-bottom: 64px; }

  /* Industries */
  .industries-section { background: var(--gray-50); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); padding: 48px; }
  .industries-label { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-400); text-align: center; margin-bottom: 32px; }
  .industries-grid {
    display: flex; flex-wrap: wrap; gap: 12px;
    justify-content: center; align-items: center;
    max-width: 1000px; margin: 0 auto;
  }
  .industry-chip {
    display: flex; align-items: center; gap: 8px;
    background: white; border: 1px solid var(--gray-200);
    border-radius: 100px; padding: 10px 20px;
    font-size: 13px; font-weight: 600; color: var(--gray-600);
    transition: all .2s; cursor: default;
  }
  .industry-chip:hover { border-color: var(--navy); color: var(--navy); box-shadow: var(--shadow-sm); }
  .industry-chip-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-accent); flex-shrink: 0; }

  /* Services */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--gray-200);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
  .service-card {
    background: white;
    padding: 40px;
    transition: background .2s;
    cursor: default;
  }
  .service-card:hover { background: var(--gray-50); }
  .service-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: var(--blue-light);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
  }
  .service-icon svg { color: var(--blue-accent); }
  .service-title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
  .service-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

  /* Case Studies */
  .cases-section { background: var(--navy); }
  .cases-section .section-title { color: white; }
  .cases-section .section-eyebrow { color: #64A0FF; }
  .cases-section .section-sub { color: rgba(255,255,255,.6); }
  .cases-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  }
  .case-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: background .2s;
    cursor: default;
  }
  .case-card:hover { background: rgba(255,255,255,.1); }
  .case-tag {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(100,160,255,.15); color: #64A0FF;
    border-radius: 100px; padding: 5px 12px;
    font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    margin-bottom: 20px;
  }
  .case-country { font-size: 12px; color: rgba(255,255,255,.4); font-weight: 500; margin-bottom: 12px; letter-spacing: .06em; text-transform: uppercase; }
  .case-title { font-family: var(--font-serif); font-size: 18px; color: white; line-height: 1.25; margin-bottom: 12px; }
  .case-desc { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.65; margin-bottom: 24px; }
  .case-metrics { display: flex; gap: 24px; }
  .case-metric-val { font-family: var(--font-serif); font-size: 20px; color: white; display: block; }
  .case-metric-lbl { font-size: 11px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .08em; }

  /* Process */
  .process-section { background: var(--gray-50); }
  .process-steps {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
    position: relative;
  }
  .process-steps::before {
    content: '';
    position: absolute;
    top: 28px; left: 60px; right: 60px;
    height: 1px; background: var(--gray-200);
    z-index: 0;
  }
  .process-step { padding: 0 24px; position: relative; z-index: 1; }
  .process-num {
    width: 56px; height: 56px; border-radius: 50%;
    background: white; border: 2px solid var(--gray-200);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-serif); font-size: 20px; color: var(--navy);
    margin-bottom: 24px; transition: all .3s;
  }
  .process-step:hover .process-num { background: var(--navy); color: white; border-color: var(--navy); }
  .process-step-title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
  .process-step-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

  /* Lead Capture */
  .lead-section {
    background: linear-gradient(135deg, var(--navy) 0%, #1A4080 100%);
    padding: 96px 48px;
  }
  .lead-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }
  .lead-left .section-title { color: white; }
  .lead-left .section-eyebrow { color: #64A0FF; }
  .lead-left .section-sub { color: rgba(255,255,255,.65); max-width: 400px; }
  .lead-bullets { list-style: none; margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
  .lead-bullets li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,.75); }
  .lead-bullet-check { width: 20px; height: 20px; border-radius: 50%; background: rgba(100,160,255,.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .lead-form {
    background: white; border-radius: 16px;
    padding: 40px; box-shadow: 0 24px 80px rgba(0,0,0,.2);
  }
  .lead-form h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
  .lead-form p { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; }
  .form-field { margin-bottom: 16px; }
  .form-label { font-size: 12px; font-weight: 600; color: var(--navy); letter-spacing: .04em; text-transform: uppercase; margin-bottom: 6px; display: block; }
  .form-input, .form-select {
    width: 100%; padding: 11px 14px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius); font-family: var(--font-sans); font-size: 14px;
    color: var(--text); background: var(--gray-50);
    outline: none; transition: border-color .2s, background .2s;
    appearance: none;
  }
  .form-input:focus, .form-select:focus { border-color: var(--blue-accent); background: white; }
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

  /* Insights */
  .insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .insight-card {
    border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
    overflow: hidden; transition: box-shadow .2s, transform .2s; cursor: pointer;
  }
  .insight-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
  .insight-thumb {
    background: var(--gray-100); height: 180px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .insight-body { padding: 24px; }
  .insight-category {
    font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    color: var(--blue-accent); margin-bottom: 10px;
  }
  .insight-title { font-size: 16px; font-weight: 700; color: var(--navy); line-height: 1.35; margin-bottom: 10px; }
  .insight-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

  /* Footer */
  .footer { background: var(--gray-900); padding: 64px 48px 32px; }
  .footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 32px; max-width: 1280px; margin: 0 auto 48px; }
  .footer-brand img { height: 28px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); }
  .footer-brand p { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.7; max-width: 300px; }
  .footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 16px; }
  .footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 10px; transition: color .2s; }
  .footer-col a:hover { color: white; }
  .footer-bottom { max-width: 1280px; margin: 0 auto; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; align-items: center; }
  .footer-bottom p { font-size: 12px; color: rgba(255,255,255,.3); }

  /* Animations */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes gridCellPop { 0% { opacity: 0.75; filter: brightness(1); } 40% { opacity: 1; filter: brightness(1.6) drop-shadow(0 0 6px rgba(255,255,255,0.9)); } 70% { filter: brightness(1.3) drop-shadow(0 0 3px rgba(255,255,255,0.5)); } 100% { opacity: 1; filter: brightness(1.4) drop-shadow(0 0 4px rgba(255,255,255,0.7)); } }
  .grid-cell-active { animation: gridCellPop 0.45s cubic-bezier(0.34,1.56,0.64,1) forwards; }
  @keyframes pulse { 0%, 100% { opacity: .6; } 50% { opacity: 1; } }
  @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
  @keyframes ripple { 0% { r: 0; opacity: .6; } 100% { r: 40; opacity: 0; } }
  .fade-up { animation: fadeUp .6s ease both; }
  .float { animation: float 4s ease-in-out infinite; }

  /* Hero map (Chicago) */
  .cck-hero-map { width: 100%; }
  /* Only size a static, top-level inline <svg> hero — must NOT match Leaflet's
     nested overlay SVG (.leaflet-overlay-pane svg), which draws the polygons
     and circle markers and breaks if forced to width:100%;height:auto. */
  .cck-hero-map > svg { display: block; width: 100%; height: auto; }

  /* Hero responsive */
  @media (max-width: 1024px) {
    .cck-hero-grid {
      grid-template-columns: 1fr !important;
      gap: 24px !important;
      padding: 40px 32px 40px !important;
      min-height: auto !important;
      align-items: start !important;
    }
    /* Flatten the left column so hero children can reorder across the map */
    .cck-hero-grid > .fade-up:first-child { display: contents; }
    /* Hide badge + CTAs on mobile hero */
    .cck-hero-grid .hero-eyebrow,
    .cck-hero-grid .hero-ctas { display: none !important; }
    /* Reorder: headline → description → map → stats */
    .cck-hero-grid .fade-up > h1 { order: 1; margin-bottom: 14px !important; }
    .cck-hero-grid .fade-up > p  { order: 2; margin-bottom: 0 !important; }
    .cck-hero-grid > .cck-hero-map { order: 3; }
    .cck-hero-grid #cck-hero-stats { order: 4; margin-top: 8px !important; padding-top: 24px !important; }
  }
  @media (max-width: 600px) {
    .cck-hero-grid {
      padding: 28px 20px 28px !important;
      gap: 20px !important;
    }
  }

  /* ===================================================================
     Site-wide mobile responsiveness
     -------------------------------------------------------------------
     Breakpoints:
       <=1024px : tablet — collapse multi-col grids to fewer cols
       <=768px  : narrow tablet / large phone — most grids -> 1 col
       <=480px  : phone — tighten paddings, collapse nav links
     =================================================================== */

  /* Tablet (≤1024px) ------------------------------------------------- */
  @media (max-width: 1024px) {
    /* Section padding + container side padding (inline styles -> !important) */
    section { padding: 56px 32px !important; }
    .nav { padding: 0 24px; }
    .industries-section,
    .lead-section { padding: 48px 32px !important; }

    /* Multi-col grids step down */
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .insights-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1.5fr 1fr 1fr 1fr !important; gap: 28px !important; }
    .footer-top .footer-col:nth-child(5) { display: none; } /* hide newsletter col */

    /* Section headers stop being two-column / wrap on flex variants */
    .section-header[style*="grid-template-columns:1fr 1fr"],
    .section-header { grid-template-columns: 1fr !important; gap: 16px !important; flex-wrap: wrap; }

    /* Trusted-by 8 -> 4 logos (2 rows of 4) */
    .trusted-grid { grid-template-columns: repeat(4, 1fr) !important; }
    .trusted-grid > div:nth-child(n+5) { border-top: 1px solid var(--gray-200); }
    .trusted-grid > div:nth-child(4n) { border-right: none !important; }
  }

  /* Narrow tablet / large phone (≤768px) ----------------------------- */
  @media (max-width: 768px) {
    section { padding: 48px 20px !important; }
    .nav { padding: 0 16px; height: 64px; }
    .nav-logo img { height: 66px; }
    .nav-links { display: none; }            /* hide nav links — keep CTAs */
    .nav-ctas .btn-ghost { display: none; }  /* keep just the primary CTA */
    .nav-ctas { gap: 8px; }
    .btn { padding: 9px 16px; font-size: 13px; }
    .btn-lg { padding: 12px 22px; font-size: 14px; }

    /* Hero stats — wrap onto 2 lines */
    .hero-stats { gap: 20px; flex-wrap: wrap; margin-top: 32px; padding-top: 24px; }
    .hero-stat-val { font-size: 24px; }
    .hero-sub { font-size: 16px; }

    /* All multi-col grids collapse */
    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: 28px; }
    .cases-grid { grid-template-columns: 1fr !important; gap: 16px; }
    .case-card { padding: 22px; }
    .process-steps { grid-template-columns: 1fr 1fr !important; gap: 32px 16px !important; }
    .process-steps::before,
    .process-line { display: none !important; } /* drop the connecting line */
    .process-step { padding: 0 !important; }
    .lead-inner { grid-template-columns: 1fr !important; gap: 36px !important; }
    .lead-form { padding: 28px; }
    .form-grid { grid-template-columns: 1fr !important; }
    .insights-grid { grid-template-columns: 1fr; gap: 20px; }

    /* Featured testimonial: side panel below quote */
    .featured-testimonial { grid-template-columns: 1fr !important; padding: 32px !important; gap: 24px !important; }
    .featured-testimonial-side { min-width: 0 !important; }

    /* 3-up small testimonials */
    .testimonials-3 { grid-template-columns: 1fr !important; }

    /* Trusted-by → 2 cols */
    .trusted-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .trusted-grid > div { padding: 16px 12px !important; border-right: 1px solid var(--gray-200); }
    .trusted-grid > div:nth-child(2n) { border-right: none !important; }

    /* Footer: 2 cols */
    .footer { padding: 48px 24px 24px; }
    .footer-top { grid-template-columns: 1fr 1fr !important; gap: 24px !important; }
    .footer-top .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

    /* Section type scale */
    .section-title { font-size: clamp(24px, 6vw, 32px) !important; }
    .section-sub { font-size: 15px; }
  }

  /* Phone (≤480px) --------------------------------------------------- */
  @media (max-width: 480px) {
    section { padding: 40px 16px !important; }
    .nav { padding: 0 12px; }
    .nav-logo img { height: 57px; }
    .nav-ctas .btn { padding: 8px 14px; font-size: 12px; }
    .industries-section,
    .lead-section { padding: 36px 16px !important; }
    .lead-inner { gap: 24px !important; }

    /* Featured testimonial — stack and reduce padding */
    .featured-testimonial { padding: 24px !important; }
    .featured-testimonial p { font-size: 17px !important; line-height: 1.55 !important; }

    /* Hero CTAs full-width stacked */
    .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
    .hero-ctas .btn { justify-content: center; }
    .hero-stats { gap: 16px 24px; }

    /* Lead form / inputs */
    .lead-form { padding: 22px; border-radius: 12px; }
    .form-input, .form-select { font-size: 16px; } /* prevents iOS zoom on focus */

    /* Process numbers smaller */
    .process-num { width: 44px; height: 44px; font-size: 16px; margin-bottom: 16px; }

    /* Trusted-by single column */
    .trusted-grid { grid-template-columns: 1fr !important; }
    .trusted-grid > div { border-right: none !important; padding: 14px 12px !important; }

    /* Footer: keep 2 cols on phone so Services + Industries share a row */
    .footer-top { grid-template-columns: 1fr 1fr !important; gap: 20px !important; }
    .footer-top .footer-brand { grid-column: 1 / -1; }
  }
/* ---- Leaflet chrome ---- */
.cck-tooltip { font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 600; color: #0D2B5E; }
.leaflet-control-zoom { border: none !important; box-shadow: 0 4px 16px rgba(13,43,94,.12) !important; border-radius: 8px !important; overflow: hidden; }
.leaflet-control-zoom a { border: none !important; width: 32px !important; height: 32px !important; line-height: 32px !important; font-size: 16px !important; color: #0D2B5E !important; background: rgba(255,255,255,0.94) !important; backdrop-filter: blur(8px); }
.leaflet-control-zoom a:hover { background: #fff !important; color: #1A5DC8 !important; }
#cck-map { z-index: 1; }
.leaflet-bottom.leaflet-right { margin-bottom: 24px !important; margin-right: 24px !important; }
#cck-map .leaflet-control-attribution { font-size: 9px !important; opacity: 0.55; background: rgba(255,255,255,0.7) !important; }
#cck-map .leaflet-control-attribution a[href*="leafletjs"] { display: none !important; }
.leaflet-top.leaflet-left .leaflet-control { margin-top: 8px; }

/* =========================================================
   Premium overlay cards
   Light glass surface, hairline border, soft shadow, top
   accent rule. Each variant gets a distinct accent colour
   so the eye has a clear hierarchy instead of one wall of
   navy. Designed to read like a McKinsey/Palantir/Esri
   deliverable.
   ========================================================= */
.cck-card {
  position: absolute;
  z-index: 1000;
  pointer-events: none;
  font-family: 'DM Sans', sans-serif;
  color: #1A1E2E;
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(13, 43, 94, 0.07);
  border-radius: 7px;
  padding: 7px 9px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.65) inset,
    0 6px 18px -8px rgba(13, 43, 94, 0.18),
    0 1px 2px rgba(13, 43, 94, 0.05);
  overflow: hidden;
  --cck-accent: #0D2B5E;
}
.cck-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--cck-accent);
  opacity: 0.95;
}

/* Shared eyebrow */
.cck-card__eyebrow {
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #5A6478;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 5px;
}
.cck-card__eyebrow--accent { color: #1A5DC8; }
.cck-card__eyebrow--good   { color: #1B6B35; }
.cck-card__mark {
  width: 8px; height: 8px; border-radius: 2px;
  background: linear-gradient(135deg, #0D2B5E, #1A5DC8);
  box-shadow: 0 0 0 2px rgba(13, 43, 94, 0.06);
  flex-shrink: 0;
}

/* ===== Visual container (map + attached KPI row) ===== */
.cck-visual {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 28px 80px -20px rgba(13,43,94,.45), 0 12px 30px -18px rgba(13,43,94,.35);
  background: #fff;
}
.cck-map-wrap { position: relative; overflow: hidden; }

/* ===== Title card ===== */
.cck-card--title {
  top: 14px; left: 14px;
  width: 210px;
  position: absolute;
  --cck-accent: linear-gradient(90deg, #0D2B5E 0%, #1A5DC8 100%);
}
.cck-card__title {
  font-family: 'DM Serif Display', serif;
  font-size: 14px;
  line-height: 1.2;
  color: #0D2B5E;
  letter-spacing: -0.2px;
}
.cck-card__meta {
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px dashed rgba(13, 43, 94, 0.14);
  font-size: 9px;
  color: #5A6478;
  letter-spacing: 0.2px;
}

/* ===== Market Snapshot row (below map, attached) ===== */
.cck-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-top: 1px solid rgba(13, 43, 94, 0.08);
  padding: 18px 24px;
  font-family: 'DM Sans', sans-serif;
}
.cck-kpi__cell {
  text-align: left;
  padding: 0 18px;
  border-right: 1px solid rgba(13, 43, 94, 0.08);
}
.cck-kpi__cell:first-child { padding-left: 0; }
.cck-kpi__cell:last-child  { padding-right: 0; border-right: none; }
.cck-kpi__val {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #0D2B5E;
  letter-spacing: -0.5px;
  transition: text-shadow 0.4s ease, transform 0.4s ease;
}
.cck-kpi__val span { font-size: 15px; font-weight: 600; color: #5A6478; margin-left: 2px; font-family: 'DM Sans', sans-serif; }
.cck-kpi__val--good { color: #1B6B35; }
.cck-kpi__val--good span { color: #2D8E4E; }

/* Pop + glow when count-up finishes */
@keyframes cck-kpi-pop {
  0%   { transform: scale(1);    text-shadow: 0 0 0 rgba(26, 93, 200, 0); }
  40%  { transform: scale(1.08); text-shadow: 0 0 18px rgba(26, 93, 200, 0.55), 0 0 6px rgba(26, 93, 200, 0.35); }
  100% { transform: scale(1);    text-shadow: 0 0 0 rgba(26, 93, 200, 0); }
}
@keyframes cck-kpi-pop-good {
  0%   { transform: scale(1);    text-shadow: 0 0 0 rgba(27, 107, 53, 0); }
  40%  { transform: scale(1.08); text-shadow: 0 0 18px rgba(27, 107, 53, 0.55), 0 0 6px rgba(27, 107, 53, 0.4); }
  100% { transform: scale(1);    text-shadow: 0 0 0 rgba(27, 107, 53, 0); }
}
.cck-kpi__val.is-popped           { animation: cck-kpi-pop 0.7s ease-out; }
.cck-kpi__val--good.is-popped     { animation: cck-kpi-pop-good 0.7s ease-out; }

/* Hero stat pop + glow */
.cck-hstat__val { display: inline-block; transition: text-shadow 0.4s ease, transform 0.4s ease; }
.cck-hstat__val.is-popped { animation: cck-kpi-pop 0.7s ease-out; }
.cck-kpi__lbl {
  font-size: 11px; letter-spacing: 0.6px; color: #5A6478;
  margin-top: 8px; text-transform: uppercase; font-weight: 700;
}

/* ===== Info card (hover) ===== */
.cck-card--info {
  position: absolute;
  top: 14px; right: 14px;
  width: 200px;
  --cck-accent: #1A5DC8;
}
.cck-info__empty {
  display: flex; align-items: center; gap: 7px;
  margin-top: 2px;
}
.cck-info__hint {
  font-size: 10px; font-weight: 600; color: #1A1E2E;
}
.cck-info__sub {
  font-size: 9px; color: #5A6478; margin-top: 1px;
}
.cck-info__name {
  font-family: 'DM Serif Display', serif;
  font-size: 13px; color: #0D2B5E; line-height: 1.15;
  margin-bottom: 7px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px;
}
.cck-info__chip {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px; font-weight: 700;
  padding: 1px 6px; border-radius: 999px;
  color: #fff;
  letter-spacing: 0.2px;
  flex-shrink: 0;
}
.cck-info__chip--high { background: #1B6B35; }
.cck-info__chip--mid  { background: #C49A2C; }
.cck-info__chip--low  { background: #C53030; }
.cck-info__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5px 8px;
  border-top: 1px solid rgba(13, 43, 94, 0.08);
  padding-top: 6px;
}
.cck-info__val {
  font-family: 'DM Serif Display', serif;
  font-size: 13px; line-height: 1; color: #0D2B5E;
  letter-spacing: -0.2px;
}
.cck-info__val span { font-size: 9px; color: #5A6478; font-family: 'DM Sans', sans-serif; font-weight: 500; }
.cck-info__stat--good .cck-info__val { color: #1B6B35; }
.cck-info__lbl {
  font-size: 7px; letter-spacing: 0.4px; color: #5A6478;
  margin-top: 2px; text-transform: uppercase; font-weight: 600;
}
.cck-info__grid-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5px 8px;
  border-top: 1px solid rgba(26, 93, 200, 0.14);
  padding-top: 5px;
  margin-top: 4px;
}
.cck-info__val--blue { color: #1A5DC8; }

/* ===== Why card ===== */
.cck-card--why {
  width: 180px;
  --cck-accent: #1B6B35;
}
.cck-why--desktop {
  position: absolute;
  bottom: 14px; right: 14px;
}
.cck-why--mobile { display: none; }
.cck-why__list {
  list-style: none; margin: 0; padding: 0;
  font-size: 9.5px; line-height: 1.45; color: #1A1E2E;
}
.cck-why__list li { display: flex; align-items: flex-start; gap: 5px; }
.cck-why__list li + li { margin-top: 3px; }
.cck-why__chk {
  display: inline-flex; align-items: center; justify-content: center;
  width: 12px; height: 12px; border-radius: 50%;
  background: rgba(27, 107, 53, 0.12);
  color: #1B6B35; font-size: 10px; font-weight: 700; flex-shrink: 0;
  margin-top: 1px;
}

/* ===== Legend card ===== */
.cck-card--legend {
  position: absolute;
  bottom: 14px; left: 14px;
  width: 162px;
  --cck-accent: #5A6478;
}
.cck-legend__eyebrow {
  font-size: 7.5px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: #5A6478; margin-bottom: 5px;
}
.cck-legend__scale {
  display: grid; grid-template-columns: repeat(5, 1fr);
  height: 6px; border-radius: 3px; overflow: hidden;
  border: 1px solid rgba(13, 43, 94, 0.06);
}
.cck-legend__scale span { display: block; }
.cck-legend__scaleLabels {
  display: flex; justify-content: space-between;
  font-size: 7.5px; color: #5A6478; margin-top: 3px;
  letter-spacing: 0.3px;
}
.cck-legend__row {
  display: flex; align-items: center; gap: 5px;
  font-size: 8.5px; color: #1A1E2E; margin-top: 4px; line-height: 14px;
}
.cck-legend__row svg { display: block; flex-shrink: 0; }
.cck-legend__dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px solid #fff;
}
.cck-legend__dot--comp { background: #C53030; box-shadow: 0 0 0 1px rgba(197, 48, 48, 0.35); }

.cck-mode-toggle {
  position: absolute;
  bottom: 62px; left: 50%; transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(13,43,94,0.10);
  border-radius: 8px;
  padding: 3px;
  box-shadow: 0 4px 14px -4px rgba(13,43,94,0.18);
  gap: 2px;
  pointer-events: all;
}
.cck-mode-toggle__btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.4px;
  padding: 5px 13px;
  border: none; cursor: pointer;
  border-radius: 5px;
  background: transparent;
  color: #5A6478;
  transition: background .15s, color .15s;
}
.cck-mode-toggle__btn--active {
  background: #0D2B5E;
  color: #fff;
}
.cck-mode-toggle__btn:hover:not(.cck-mode-toggle__btn--active) {
  background: rgba(13,43,94,0.07);
  color: #0D2B5E;
}

/* ==========================================================
   Responsive
   ==========================================================
   Desktop (≥880px):
     - Title/Info/Legend/Why-desktop = absolute inside map
     - KPI row = attached below map inside .cck-visual
   Mobile (<880px):
     - Title = above map (static)
     - Info = stays absolute top-right inside map
     - Legend = hidden
     - Why-desktop = hidden; Why-mobile = below KPI
     - KPI row = 2x2 grid
   ========================================================== */
@media (max-width: 1099px) {
  .cck-card--title { width: 190px; }
  .cck-card__title { font-size: 13px; }
  .cck-card--info { width: 185px; }
  .cck-card--why { width: 170px; }
  .cck-card--legend { width: 138px; }
  .cck-kpi-row { padding: 14px 18px; }
  .cck-kpi__cell { padding: 0 12px; }
  .cck-kpi__val { font-size: 24px; }
  .cck-kpi__val span { font-size: 13px; }
}

@media (max-width: 879px) {
  .cck-hero-map { display: flex; flex-direction: column; gap: 0; }

  /* Title: snapped to top of map, shared rounded corners */
  .cck-card--title {
    position: static !important;
    width: 100% !important;
    top: auto !important; left: auto !important;
    order: 1;
    border-radius: 12px 12px 0 0 !important;
    border-bottom: none !important;
    margin: 0 !important;
    box-shadow: 0 -2px 24px -10px rgba(13,43,94,.25), 0 0 0 1px rgba(13,43,94,.06);
  }
  /* Remove title card's top accent bar on mobile (lives under the rounded corner) */
  .cck-card--title::before { display: none; }

  .cck-visual {
    order: 2;
    border-radius: 0 0 12px 12px;
    margin-top: 0 !important;
  }
  /* Why card spacing: small gap from map */
  .cck-why--mobile { margin-top: 12px !important; }
  #cck-map { height: 380px !important; }

  /* Info stays inside map top-right — constrain so it can't overflow */
  .cck-card--info {
    top: 10px !important; right: 10px !important;
    width: auto !important;
    max-width: calc(100% - 20px);
  }

  /* Legend hidden on mobile to avoid overlap */
  .cck-card--legend { display: none !important; }
  /* Toggle sits just above the bottom edge on smaller maps */
  .cck-mode-toggle { bottom: 14px; }

  /* Why: hide desktop version, show mobile version */
  .cck-why--desktop { display: none !important; }
  .cck-why--mobile {
    display: block !important;
    position: static !important;
    top: auto !important; bottom: auto !important; left: auto !important; right: auto !important;
    order: 3;
    width: 100% !important;
  }

  /* KPI row: 2x2 grid */
  .cck-kpi-row {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 6px 10px;
  }
  .cck-kpi__cell {
    padding: 6px 10px;
    border-right: 1px solid rgba(13, 43, 94, 0.08);
    border-bottom: 1px solid rgba(13, 43, 94, 0.08);
  }
  .cck-kpi__cell:nth-child(2n)        { border-right: none; }
  .cck-kpi__cell:nth-last-child(-n+2) { border-bottom: none; }
  .cck-kpi__cell:first-child          { padding-left: 10px; padding-top: 4px; }
  .cck-kpi__cell:nth-child(2)         { padding-top: 4px; }
  .cck-kpi__cell:nth-child(3),
  .cck-kpi__cell:nth-child(4)         { padding-bottom: 4px; }
}

/* Trusted-by marquee */
@keyframes trusted-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
#trusted-track { animation: trusted-scroll 28s linear infinite; }
#trusted-track:hover { animation-play-state: paused; }

/* Testimonials / case-studies carousel */
.tcarousel { position:relative; overflow:hidden; }
.tcarousel__track { display:flex; align-items:flex-start; transition:transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.tcarousel__slide { min-width:100%; }
.tcarousel__dots { display:flex; justify-content:center; gap:8px; margin-top:20px; }
.tcarousel__dot { width:8px; height:8px; border-radius:50%; background:var(--gray-200); border:none; padding:0; cursor:pointer; transition:background .2s; }
.tcarousel__dot.active { background:var(--navy); }

/* Phones — iPhone 14 Pro Max is ~430px wide */
@media (max-width: 560px) {
  #cck-map { height: 320px !important; }
  .cck-card--info { width: 145px; }
  .cck-info__hint { font-size: 9.5px; }
  .cck-info__sub { font-size: 8.5px; }
  .cck-kpi__val { font-size: 22px; }
  .cck-kpi__val span { font-size: 12px; }
  .cck-kpi__lbl { font-size: 10px; }
  .cck-kpi__lbl { font-size: 8px; }
  .cck-card__title { font-size: 14px; }
  .cck-why__list { font-size: 10.5px; }
}
.cck-hero-map { width: 100%; }
.cck-hero-map > svg { display: block; width: 100%; height: auto; }
