/* Mol Seguros — Brand styles */
:root {
  --navy-900: #0A1A33;
  --navy-800: #13294B;
  --navy-700: #1B355F;
  --navy-600: #284878;
  --cyan-500: #5BB4E5;
  --cyan-400: #7CC5EC;
  --cyan-300: #A8DAF1;
  --cyan-100: #E6F3FB;
  --ink: #0A1A33;
  --ink-soft: #2A3A55;
  --ink-mute: #5A6B85;
  --paper: #FAFBFD;
  --paper-2: #F2F5F9;
  --line: #DEE5EE;
  --line-2: #C9D3E0;
  --white: #FFFFFF;
  --accent-warm: #F4B860;
  --success: #2E9E6B;
  --danger: #C03B3B;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;

  --shadow-sm: 0 1px 2px rgba(10,26,51,0.06), 0 1px 1px rgba(10,26,51,0.04);
  --shadow-md: 0 8px 24px rgba(10,26,51,0.08), 0 2px 6px rgba(10,26,51,0.05);
  --shadow-lg: 0 24px 60px rgba(10,26,51,0.18), 0 6px 18px rgba(10,26,51,0.10);

  --font-display: "Fraunces", "Playfair Display", Georgia, serif;
  --font-sans: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-size: 16px;
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---- Layout container ---- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---- Brackets motif (reusable) ---- */
.brk {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
}
.brk::before, .brk::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 12px;
  border: 3px solid currentColor;
  border-color: currentColor;
}
.brk::before {
  left: 0;
  border-right: 0;
}
.brk::after {
  right: 0;
  border-left: 0;
}
.brk-tight { padding: 0 12px; }
.brk-tight::before, .brk-tight::after { width: 8px; border-width: 2px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--cyan-500);
  color: var(--navy-900);
  box-shadow: 0 8px 20px rgba(91,180,229,0.35);
}
.btn-primary:hover { background: var(--cyan-400); box-shadow: 0 10px 24px rgba(91,180,229,0.45); }

.btn-dark {
  background: var(--navy-800);
  color: white;
}
.btn-dark:hover { background: var(--navy-700); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover { border-color: var(--ink); }

.btn-ghost-light {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.25);
}
.btn-ghost-light:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.06); }

/* ---- Eyebrow / kicker ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-500);
  font-weight: 500;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan-500);
  box-shadow: 0 0 0 4px rgba(91,180,229,0.18);
}
.eyebrow.on-light { color: var(--navy-700); }
.eyebrow.on-light .dot { background: var(--navy-700); box-shadow: 0 0 0 4px rgba(40,72,120,0.12); }

/* ---- Section heading ---- */
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 14px 0 0;
  padding-bottom: 0.18em;
  text-wrap: balance;
}
.section-title em {
  font-style: italic;
  color: var(--navy-700);
}
.section-sub {
  margin-top: 18px;
  max-width: 640px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.55;
  text-wrap: pretty;
}

/* ---- Nav ---- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,251,253,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.nav.scrolled { border-bottom-color: var(--line); background: rgba(250,251,253,0.92); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.nav-logo .lockup {
  display: flex; align-items: baseline; gap: 4px;
}
.nav-logo .mol { color: var(--navy-900); font-weight: 800; }
.nav-logo .seg { color: var(--cyan-500); font-weight: 500; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; }
.nav-links {
  display: flex; gap: 28px; align-items: center;
  font-size: 14px;
  color: var(--ink-soft);
}
.nav-links a { white-space: nowrap; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; gap: 10px; align-items: center; }

/* ---- Hero ---- */
.hero {
  position: relative;
  background: var(--navy-900);
  color: white;
  overflow: hidden;
  padding: 120px 0 140px;
}
.hero::before {
  /* subtle grid */
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.9), transparent 75%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  right: -10%; top: -20%;
  width: 720px; height: 720px;
  background: radial-gradient(circle at center, rgba(91,180,229,0.28), transparent 60%);
  pointer-events: none;
  filter: blur(20px);
}
.hero-inner { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan-300);
  margin-bottom: 28px;
}
.hero-eyebrow .pip {
  width: 28px; height: 1px; background: var(--cyan-400);
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(44px, 5.2vw, 72px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin: 0;
  color: white;
  padding-bottom: 0.12em;
}
.hero h1 .accent {
  font-style: italic;
  font-weight: 300;
  color: var(--cyan-400);
}
.hero h1 .ul {
  position: relative;
  display: inline-block;
}
.hero h1 .ul::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 4px;
  height: 4px;
  background: var(--cyan-500);
  opacity: 0.5;
}
.hero p.lead {
  margin-top: 40px;
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
}
.hero-cta { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  margin-top: 64px;
  display: flex;
  gap: 48px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 32px;
  max-width: 580px;
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: white;
  line-height: 1;
}
.hero-stat .num .pct { color: var(--cyan-400); font-style: italic; }
.hero-stat .label {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.02em;
}

/* Hero card / dashboard preview */
.hero-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(8px);
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(180deg, rgba(91,180,229,0.5), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.hero-card-h {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.hero-card-h .live {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--cyan-400);
}
.hero-card-h .live .blink {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan-400);
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink { 50% { opacity: 0.25; } }

/* ---- Problem strip ---- */
.problem {
  background: var(--paper);
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}
.problem-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.problem-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: white;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.problem-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--cyan-300);
}
.problem-card .num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.14em;
}
.problem-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.015em;
  margin: 14px 0 10px;
}
.problem-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}
.problem-card .meter {
  margin-top: 22px;
  height: 6px; border-radius: 3px;
  background: var(--paper-2);
  overflow: hidden;
}
.problem-card .meter-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--cyan-500), var(--navy-700));
  border-radius: 3px;
}
.problem-card .meter-label {
  display: flex; justify-content: space-between;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
}

/* ---- Section: benefits ---- */
.section { padding: 120px 0; }
.section.alt { background: var(--paper-2); }
.section.dark { background: var(--navy-900); color: white; }
.section.dark .section-title { color: white; }
.section.dark .section-sub { color: rgba(255,255,255,0.7); }

.bgrid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.bcell {
  padding: 36px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
  display: flex; flex-direction: column; gap: 16px;
  transition: background .2s ease;
}
.bcell:hover { background: var(--paper); }
.bcell .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--cyan-100);
  color: var(--navy-800);
  display: inline-flex; align-items: center; justify-content: center;
}
.bcell h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}
.bcell p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.6;
}
.bcell .tag {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ---- Different section (alt darker block) ---- */
.diff-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.diff-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 32px 28px;
  position: relative;
  transition: background .2s ease, border-color .2s ease;
}
.diff-card:hover {
  background: rgba(91,180,229,0.06);
  border-color: rgba(91,180,229,0.35);
}
.diff-card .step {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--cyan-400);
}
.diff-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: white;
  margin: 16px 0 12px;
}
.diff-card p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 15.5px;
  line-height: 1.6;
}

/* ---- Calculator ---- */
.calc-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: stretch;
}
.calc-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.calc-form h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  margin: 0 0 24px;
  letter-spacing: -0.015em;
}
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.field .help { display: block; color: var(--ink-mute); font-weight: 400; font-size: 12px; margin-top: 4px; }
.field input[type="text"], .field input[type="number"], .field select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  background: white;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 4px rgba(91,180,229,0.18);
}
.slider-wrap { display: flex; align-items: center; gap: 16px; }
.slider-wrap input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  flex: 1;
  height: 4px;
  background: var(--line);
  border-radius: 999px;
  outline: none;
}
.slider-wrap input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--navy-800);
  border: 3px solid white;
  box-shadow: 0 2px 6px rgba(10,26,51,0.25);
  cursor: pointer;
}
.slider-wrap input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--navy-800);
  border: 3px solid white;
  box-shadow: 0 2px 6px rgba(10,26,51,0.25);
  cursor: pointer;
}
.slider-wrap .val {
  min-width: 110px;
  text-align: right;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
}
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.calc-result {
  background: var(--navy-900);
  color: white;
  border-radius: 22px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.calc-result::before {
  content: "";
  position: absolute;
  right: -80px; top: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(91,180,229,0.35), transparent 60%);
  filter: blur(24px);
}
.calc-result-h {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.calc-result-h .tag {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--cyan-400);
}
.calc-savings-label {
  margin-top: 32px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.02em;
}
.calc-savings {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(56px, 7vw, 88px);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: 6px;
  color: white;
}
.calc-savings .sym { color: var(--cyan-400); font-style: italic; }
.calc-savings .dec { color: rgba(255,255,255,0.55); font-size: 0.55em; }
.calc-breakdown {
  margin-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  display: flex; flex-direction: column; gap: 12px;
  font-size: 14px;
}
.calc-breakdown .row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px;
  color: rgba(255,255,255,0.75);
}
.calc-breakdown .row > span:first-child {
  flex: 1; min-width: 0;
}
.calc-breakdown .row > span:last-child {
  flex-shrink: 0; white-space: nowrap; font-variant-numeric: tabular-nums;
}
.calc-breakdown .row.total {
  color: white;
  font-weight: 600;
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px dashed rgba(255,255,255,0.15);
}
.calc-cta { margin-top: auto; padding-top: 28px; }

/* ---- Process ---- */
.process-list {
  margin-top: 56px;
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.process-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.6fr 200px;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: background .2s ease;
  position: relative;
}
.process-row:hover { background: rgba(91,180,229,0.04); }
.process-row .step {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--cyan-500);
  font-weight: 500;
  letter-spacing: 0.06em;
  padding-top: 4px;
}
.process-row h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}
.process-row p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.55;
}
.process-row .timing {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
  text-align: right;
  padding-top: 10px;
}

/* ---- CTA banner ---- */
.cta-banner {
  background: var(--navy-900);
  color: white;
  border-radius: 28px;
  padding: 72px 64px;
  position: relative;
  overflow: hidden;
  margin: 80px 0;
}
.cta-banner::before {
  content: "";
  position: absolute; left: -10%; bottom: -50%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(91,180,229,0.25), transparent 60%);
  filter: blur(20px);
}
.cta-banner-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 12px 0 0;
}
.cta-banner h2 em { font-style: italic; color: var(--cyan-400); }
.cta-banner p {
  margin-top: 18px;
  color: rgba(255,255,255,0.72);
  font-size: 17px;
  line-height: 1.55;
  max-width: 520px;
}
.cta-banner .actions {
  display: flex; flex-direction: column; gap: 14px;
}
.cta-banner .promise {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 8px;
}

/* ---- Footer ---- */
.footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer h4 {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0 0 20px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.footer ul a:hover { color: white; }
.footer-tag {
  margin-top: 18px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  max-width: 320px;
  line-height: 1.55;
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 28px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
}

/* ---- Floating WhatsApp ---- */
.wa-fab {
  position: fixed; right: 24px; bottom: 24px;
  z-index: 60;
  background: #25D366;
  color: white;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px rgba(37,211,102,0.4);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-fab:hover { transform: scale(1.06); box-shadow: 0 16px 36px rgba(37,211,102,0.5); }

/* ---- Reveal-on-scroll ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---- Responsive ---- */
@media (max-width: 980px) {
  .hero { padding: 88px 0 96px; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .problem-row { grid-template-columns: 1fr; }
  .bgrid { grid-template-columns: 1fr; }
  .diff-row { grid-template-columns: 1fr; }
  .calc-grid { grid-template-columns: 1fr; gap: 28px; }
  .process-row { grid-template-columns: 60px 1fr; gap: 12px; }
  .process-row p, .process-row .timing { grid-column: 2 / -1; }
  .cta-banner-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-banner { padding: 48px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 28px; }
}
