:root {
  --brand-primary: #001b9c;
  --brand-dark: #000e4b;
  --brand-80: #1a2fa8;
  --brand-60: #3a4fc4;
  --brand-40: #6670d3;
  --brand-20: #888de6;
  --accent: #10b981;
  --accent-dark: #059669;

  --text: #0c1024;
  --text-muted: #4a5068;
  --text-light: #8b90a8;

  --bg: #fafafc;
  --bg-alt: #f4f4f8;
  --surface: #ffffff;
  --border: rgba(0, 20, 117, 0.08);
  --shadow: 0 1px 3px rgba(0, 20, 117, 0.04), 0 4px 16px rgba(0, 20, 117, 0.04);
  --shadow-lg: 0 8px 32px rgba(0, 20, 117, 0.08);
  --shadow-xl: 0 16px 48px rgba(0, 20, 117, 0.1);

  --max-width: 1140px;
  --radius: 14px;
  --radius-sm: 8px;

  font-family: 'Space Grotesk', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; }

body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 1rem;
  font-family: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--brand-60); }
img { max-width: 100%; height: auto; display: block; }

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

/* ═══════════════════════════════════════
   HEADER — tight, single-line on desktop
   ═══════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px) saturate(1.2);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.logo-wrap a { display: flex; align-items: center; }
.logo-wrap img { height: 40px; width: auto; }

nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

nav a {
  font-weight: 500;
  padding: 0.35rem 0.7rem;
  color: var(--text-muted);
  font-size: 0.84rem;
  letter-spacing: 0.01em;
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
}

nav a:hover {
  color: var(--text);
  background: var(--bg-alt);
}

.nav-cta {
  margin-left: 0.35rem;
  padding: 0.4rem 1rem !important;
  background: var(--brand-primary) !important;
  color: #fff !important;
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  background: var(--brand-80) !important;
  box-shadow: 0 4px 12px rgba(0, 20, 117, 0.18);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  color: var(--text);
  border-radius: 8px;
  transition: background 0.15s;
}

.nav-toggle:hover { background: var(--bg-alt); }
.nav-toggle svg { width: 22px; height: 22px; }

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  background: var(--brand-primary);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.btn:hover {
  background: var(--brand-80);
  box-shadow: 0 6px 20px rgba(0, 20, 117, 0.2);
  transform: translateY(-1px);
  color: #fff;
}

.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--brand-dark);
  min-height: 80vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(58, 79, 196, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
    linear-gradient(170deg, rgba(0, 14, 75, 0.98) 0%, rgba(0, 27, 156, 0.92) 100%);
}

.hero .container { position: relative; padding: 5rem 0 4.5rem; }
.hero-content { max-width: 680px; }

.hero .eyebrow { color: var(--accent); }

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.12;
  margin: 0.75rem 0 1.25rem;
  letter-spacing: -0.025em;
  font-weight: 700;
}

.hero p {
  font-size: 1rem;
  color: rgba(203, 213, 225, 0.9);
  line-height: 1.7;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  gap: 0.75rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid dt {
  font-size: 1.85rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.stats-grid dd {
  margin: 0.25rem 0 0;
  color: rgba(148, 163, 184, 0.8);
  font-size: 0.8rem;
  line-height: 1.45;
}

/* ═══════════════════════════════════════
   SOCIAL PROOF BAR
   ═══════════════════════════════════════ */
.proof {
  background: var(--brand-dark);
  color: rgba(224, 231, 255, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.proof .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 2rem;
}

.proof p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
}

.proof-metrics {
  display: flex;
  gap: 2.5rem;
}

.proof-metric { text-align: center; white-space: nowrap; }

.proof-metric strong {
  display: block;
  font-size: 1.35rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.proof-metric span {
  font-size: 0.68rem;
  color: rgba(148, 163, 184, 0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ═══════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════ */
.section { padding: 5rem 0; }
.section.alt { background: var(--bg-alt); }

.section-heading {
  text-align: left;
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section-heading h2 {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  margin: 0.5rem 0 0.6rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
  font-weight: 700;
}

.section-heading p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-60);
  font-weight: 700;
}

/* ═══════════════════════════════════════
   CARD GRIDS
   ═══════════════════════════════════════ */
.card-grid,
.product-grid,
.markets-grid,
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.card-grid article,
.product-grid article,
.markets-grid article,
.pain-grid article {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.card-grid article:hover,
.markets-grid article:hover,
.pain-grid article:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.card-grid article h3,
.product-grid article h3,
.markets-grid article h3,
.pain-grid article h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.card-grid article p,
.product-grid article p,
.markets-grid article p,
.pain-grid article p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.card-grid ul,
.product-grid ul {
  list-style: none;
  padding: 0;
  margin: 0.85rem 0 0;
}

.card-grid li,
.product-grid li {
  padding-left: 1.1rem;
  position: relative;
  margin-bottom: 0.3rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.card-grid li::before,
.product-grid li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-60);
  position: absolute;
  left: 0;
  top: 0.6rem;
}

/* ═══════════════════════════════════════
   PRODUCTS
   ═══════════════════════════════════════ */
.product-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.price-tag {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  white-space: nowrap;
}

.source {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid var(--border);
  font-style: italic;
  line-height: 1.5;
}

/* ═══════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════ */
.process-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  counter-reset: step;
  padding: 0;
}

.process-list li {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem 1.5rem;
  background: var(--surface);
  position: relative;
  box-shadow: var(--shadow);
}

.process-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -14px;
  left: 1.25rem;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--brand-primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.78rem;
}

.process-list h3 { font-size: 1rem; margin-bottom: 0.35rem; letter-spacing: -0.01em; }
.process-list p { color: var(--text-muted); font-size: 0.88rem; }

/* ═══════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 0.4rem 0 0.65rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.contact-info > p { color: var(--text-muted); font-size: 0.92rem; }

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.contact-list li { margin-bottom: 0.85rem; font-size: 0.92rem; }

.contact-list .label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.contact-form {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  box-shadow: var(--shadow-lg);
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg);
  padding: 0.6rem 0.75rem;
  color: var(--text);
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--brand-60);
  box-shadow: 0 0 0 3px rgba(0, 27, 156, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.form-feedback {
  min-height: 1rem;
  font-size: 0.82rem;
  color: var(--brand-primary);
}

/* ═══════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════ */
.cta-banner {
  background: var(--brand-dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(58, 79, 196, 0.2), transparent 60%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  margin-bottom: 0.6rem;
  position: relative;
  letter-spacing: -0.02em;
}

.cta-banner p {
  color: rgba(203, 213, 225, 0.85);
  max-width: 520px;
  margin: 0 auto 1.5rem;
  font-size: 0.9rem;
  position: relative;
}

.cta-banner .btn {
  background: #fff;
  color: var(--brand-primary);
  position: relative;
}

.cta-banner .btn:hover {
  color: var(--brand-primary);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* ═══════════════════════════════════════
   INSIGHTS PREVIEW
   ═══════════════════════════════════════ */
.insights-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.insight-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
}

.insight-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 27, 156, 0.15);
}

.insight-card .tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.insight-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--text);
}

.insight-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  flex: 1;
  line-height: 1.55;
}

.insight-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-primary);
  transition: gap 0.2s;
}

.insight-card:hover .read-more { gap: 0.5rem; }

/* ═══════════════════════════════════════
   SHARE BAR
   ═══════════════════════════════════════ */
.share-bar {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.share-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(148,163,184,0.7);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.share-btns {
  display: flex;
  gap: 0.4rem;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, transform 0.15s;
  font-family: inherit;
}

.share-btn:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
  transform: translateY(-1px);
}

.share-linkedin:hover { background: rgba(0,119,181,0.3); color: #0077b5; }
.share-x:hover { background: rgba(255,255,255,0.15); }

.share-btn.copied {
  background: rgba(16,185,129,0.2) !important;
  color: #10b981 !important;
}

/* ═══════════════════════════════════════
   MARKETS — EXPANDED GRID
   ═══════════════════════════════════════ */
.markets-grid-expanded {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.market-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.25s;
}

.market-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.market-card.market-primary {
  border-left: 3px solid var(--brand-primary);
}

.market-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
}

.market-flag { font-size: 1.6rem; line-height: 1; }

.market-header h3 {
  font-size: 1.05rem;
  margin: 0;
  letter-spacing: -0.01em;
}

.market-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-60);
}

.market-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 0.65rem;
}

.market-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.market-tags li {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

/* ═══════════════════════════════════════
   INSIGHTS HUB — FILTERS, GRID, CTA
   ═══════════════════════════════════════ */
.insights-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.filter-btn {
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.15s ease;
  letter-spacing: 0.01em;
}

.filter-btn:hover {
  border-color: var(--brand-60);
  color: var(--brand-primary);
  background: rgba(0, 27, 156, 0.03);
}

.filter-btn.active {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
}

.filter-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
  margin: 0 0.25rem;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.insight-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
}

.insight-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 27, 156, 0.15);
}

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

.insight-card-cta {
  border-style: dashed;
  opacity: 0.75;
}

.insight-card-cta:hover { opacity: 1; }

.insight-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.insight-date {
  font-size: 0.7rem;
  color: var(--text-light);
  font-weight: 500;
}

.insight-card .tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.15rem 0.5rem;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 5px;
}

.insight-card .tag-channel { color: var(--brand-primary); background: rgba(0, 27, 156, 0.06); }
.insight-card .tag-regulatory { color: #b45309; background: rgba(180, 83, 9, 0.06); }
.insight-card .tag-payments { color: #7c3aed; background: rgba(124, 58, 237, 0.06); }
.insight-card .tag-platform { color: #0891b2; background: rgba(8, 145, 178, 0.06); }

.insight-card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.4rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--text);
}

.insight-card p {
  color: var(--text-muted);
  font-size: 0.84rem;
  flex: 1;
  line-height: 1.55;
}

.insight-countries {
  display: flex;
  gap: 0.3rem;
  margin-top: 0.65rem;
  font-size: 1.1rem;
}

.insight-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-primary);
  transition: gap 0.2s;
}

.insight-card:hover .read-more { gap: 0.5rem; }

.read-more-soon { color: var(--text-light) !important; }

/* Insights CTA strip */
.insights-cta-strip {
  margin-top: 2.5rem;
  background: var(--brand-dark);
  border-radius: var(--radius);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.insights-cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 60%, rgba(58, 79, 196, 0.2), transparent 55%);
  pointer-events: none;
}

.insights-cta-content { position: relative; }

.insights-cta-content .eyebrow { color: var(--accent); }

.insights-cta-content h3 {
  font-size: 1.3rem;
  margin: 0.4rem 0 0.6rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.insights-cta-content p {
  font-size: 0.88rem;
  color: rgba(203, 213, 225, 0.85);
  line-height: 1.6;
}

.insights-cta-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  position: relative;
}

.insights-cta-link {
  display: block;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  transition: background 0.2s, border-color 0.2s;
}

.insights-cta-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.insights-cta-link strong {
  display: block;
  font-size: 0.88rem;
  color: #fff;
  margin-bottom: 0.15rem;
}

.insights-cta-link span {
  font-size: 0.78rem;
  color: rgba(148, 163, 184, 0.8);
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  background: var(--surface);
}

.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer p { color: var(--text-light); font-size: 0.78rem; }
.site-footer img { width: 44px; }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-toggle { display: block; }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 0.75rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    gap: 0.15rem;
  }

  nav.open { display: flex; }

  nav a {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
  }

  .nav-cta {
    margin-left: 0 !important;
    text-align: center;
    margin-top: 0.25rem;
  }

  .site-header .container { position: relative; }
  .hero { min-height: auto; }
  .hero .container { padding: 3rem 0 2.5rem; }
  .stats-grid { grid-template-columns: 1fr; gap: 1rem; }
  .contact { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .product-head { flex-direction: column; align-items: flex-start; }

  .proof .container {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .proof-metrics { gap: 1.5rem; }
  .insights-filters { gap: 0.3rem; }
  .filter-divider { display: none; }
  .insights-grid { grid-template-columns: 1fr; }
  .insights-cta-strip { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.75rem; }
  .markets-grid-expanded { grid-template-columns: 1fr; }
}
