:root {
  --navy: #0a2a43;
  --navy-deep: #071b2e;
  --navy-soft: #12374f;
  --green: #12a76b;
  --green-dark: #0b7a4c;
  --green-light: #6fe3a8;
  --green-soft: #e4f5ec;
  --white: #ffffff;
  --bg: #f6f9f8;
  --ink: #0a2a43;
  --ink-dim: #51677a;
  --line: #e1e9e5;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 28px;
  --wrap: 1180px;
  --shadow-soft: 0 20px 50px -25px rgba(10, 42, 67, 0.35);
  --shadow-card: 0 12px 30px -18px rgba(10, 42, 67, 0.28);
  --ff-display: "Fraunces", ui-serif, Georgia, serif;
  --ff-body: "Manrope", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --ff-logo: "Baloo 2", "Manrope", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color-scheme: light;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

html, body { overflow-x: hidden; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ff-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3 {
  font-family: var(--ff-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 0 0 0.5em;
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap.narrow { max-width: 760px; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  z-index: 100;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ============ Reveal-on-scroll ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(.16,.84,.44,1), transform 0.8s cubic-bezier(.16,.84,.44,1);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============ Scroll progress bar ============ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--green) 0%, var(--green-light) 100%);
  z-index: 300;
  pointer-events: none;
}

/* ============ Custom cursor ============ */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999;
  will-change: transform;
}
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  transition: opacity 0.2s ease;
}
.cursor-ring {
  width: 30px;
  height: 30px;
  background: transparent;
  border: 1.5px solid var(--white);
  mix-blend-mode: difference;
  transition: width 0.25s ease, height 0.25s ease, opacity 0.2s ease, border-width 0.25s ease;
}
.cursor-ring.is-active {
  width: 54px;
  height: 54px;
  border-width: 2.5px;
}
body.custom-cursor-active,
body.custom-cursor-active * { cursor: none; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, opacity 0.18s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  box-shadow: 0 14px 30px -12px rgba(18, 167, 107, 0.55);
}
.btn-primary:hover { box-shadow: 0 18px 36px -12px rgba(18, 167, 107, 0.65); transform: translateY(-1px); }
.btn-ghost {
  border-color: rgba(10, 42, 67, 0.18);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.6);
}
.btn-ghost:hover { border-color: var(--navy); background: var(--white); }
.btn-lg { padding: 16px 30px; font-size: 1rem; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 249, 248, 0.97);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 24px -20px rgba(10, 42, 67, 0.4);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 76px;
}
.header-left { display: flex; align-items: center; gap: 14px; }
.brand { display: flex; align-items: center; gap: 3px; text-decoration: none; }
.brand-logo { height: 28px; width: auto; display: block; }
.brand-suffix {
  font-family: var(--ff-logo);
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--green);
  letter-spacing: -0.02em;
  transform: translateY(3px);
}
.footer-suffix { color: var(--green-light); }
.nav { display: flex; gap: 28px; }
.nav a {
  text-decoration: none;
  color: var(--ink-dim);
  font-weight: 600;
  font-size: 0.92rem;
}
.nav a:hover { color: var(--navy); }
.header-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: 0 8px;
  background: var(--navy);
  border-radius: 2px;
}

/* ============ Hero ============ */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 8vw, 88px) 0 clamp(56px, 9vw, 110px);
}
.hero-mesh {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 140%;
  background:
    radial-gradient(60% 55% at 12% 8%, rgba(18, 167, 107, 0.16), transparent 60%),
    radial-gradient(45% 45% at 85% 15%, rgba(10, 42, 67, 0.12), transparent 60%);
  pointer-events: none;
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.eyebrow {
  color: var(--green-dark);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin: 0 0 14px;
}
.hero h1 {
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  line-height: 1.06;
  margin-bottom: 22px;
}
.text-accent { color: var(--green-dark); }
.hero-lede {
  color: var(--ink-dim);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  max-width: 54ch;
  margin: 0 0 30px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-soft);
}
.hero-badges li { display: flex; align-items: center; gap: 8px; }
.hero-badges li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
}

.hero-visual { position: relative; }
.hero-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.disclaimer-strip {
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-dim);
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 48px;
}

/* ============ Sections ============ */
.section { padding: clamp(64px, 9vw, 108px) 0; }
.section.alt { background: var(--white); }
.section h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  max-width: 18ch;
}
.section-lede {
  color: var(--ink-dim);
  max-width: 58ch;
  font-size: 1.05rem;
  margin: 0 0 44px;
}

/* ============ Segments ============ */
.segment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.segment-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.segment-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.segment-img { aspect-ratio: 4 / 3; overflow: hidden; }
.segment-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.segment-card:hover .segment-img img { transform: scale(1.06); }
.segment-card h3 { font-size: 1.1rem; margin: 18px 20px 6px; }
.segment-card p { margin: 0 20px 20px; color: var(--ink-dim); font-size: 0.92rem; }

/* ============ Steps ============ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.step-num {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: 1.6rem;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.step h3 { font-size: 1.1rem; }
.step p { color: var(--ink-dim); margin: 0; font-size: 0.95rem; }

/* ============ Plans ============ */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.plan-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px 26px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.plan-card.is-featured {
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-color: var(--navy);
  color: var(--white);
}
.plan-card.is-featured .plan-name,
.plan-card.is-featured .plan-desc { color: var(--white); }
.plan-card.is-featured .plan-features { color: rgba(255, 255, 255, 0.88); }
.plan-card.is-featured .plan-features li::before { color: var(--green-light); }
.plan-badge {
  position: absolute;
  top: -13px;
  left: 24px;
  background: var(--green);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.plan-name { font-size: 1.4rem; margin-bottom: 8px; }
.plan-desc { color: var(--ink-dim); font-size: 0.9rem; margin-bottom: 18px; min-height: 4.5em; }
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 0.87rem;
  color: var(--ink-dim);
  flex: 1;
}
.plan-features li { padding-left: 22px; position: relative; }
.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green-dark);
  font-weight: 800;
}
.plan-cta { justify-content: center; width: 100%; }
.plans-note { color: var(--ink-dim); font-size: 0.82rem; margin-top: 26px; text-align: center; }

/* ============ Split sections ============ */
.split-grid, .why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.split-img img, .why-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.split-copy p { color: var(--ink-dim); font-size: 1.02rem; }
.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
}
.check-list li { padding-left: 26px; position: relative; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green-soft);
  border: 1.5px solid var(--green);
}

/* ============ Benefits ============ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.benefit-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green-dark);
  margin-bottom: 14px;
}
.benefit-card h3 { font-size: 1.02rem; margin-bottom: 6px; }
.benefit-card p { color: var(--ink-dim); font-size: 0.88rem; margin: 0; }

/* ============ Why (list) ============ */
.quien-soy-intro { color: var(--ink-dim); font-size: 1.02rem; margin: 0 0 8px; }
.why-list { list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-direction: column; gap: 22px; }
.why-list h3 { font-size: 1.05rem; margin-bottom: 4px; }
.why-list p { margin: 0; color: var(--ink-dim); font-size: 0.95rem; }

/* ============ Photo strip ============ */
.strip-photo { position: relative; height: clamp(240px, 40vw, 420px); overflow: hidden; }
.strip-photo img { width: 100%; height: 100%; object-fit: cover; }
.strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 27, 46, 0.82) 0%, rgba(7, 27, 46, 0.35) 55%, rgba(7, 27, 46, 0.05) 100%);
  display: flex;
  align-items: center;
}
.strip-overlay p {
  color: var(--white);
  font-family: var(--ff-display);
  font-size: clamp(1.2rem, 2.6vw, 1.8rem);
  max-width: 20ch;
  margin: 0;
  padding: 0 clamp(24px, 6vw, 90px);
}

/* ============ FAQ ============ */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 34px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px 22px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 28px 18px 0;
  font-weight: 700;
  color: var(--navy);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 14px;
  font-size: 1.3rem;
  color: var(--green-dark);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 0 0 20px; color: var(--ink-dim); font-size: 0.95rem; }

/* ============ CTA final ============ */
.cta-final {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding: clamp(64px, 9vw, 110px) 0 clamp(120px, 16vw, 200px);
}
.cta-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 60% at 85% 10%, rgba(18, 167, 107, 0.28), transparent 60%),
    radial-gradient(40% 50% at 10% 90%, rgba(111, 227, 168, 0.14), transparent 60%);
  pointer-events: none;
}
.cta-final-inner { position: relative; text-align: center; max-width: 640px; margin: 0 auto; }
.cta-final h2 { color: var(--white); font-size: clamp(1.9rem, 3.6vw, 2.6rem); }
.cta-final p { color: rgba(255, 255, 255, 0.78); font-size: 1.05rem; margin: 0; }

/* ============ Quote form ============ */
.form-section {
  padding-top: 0;
  margin-top: clamp(-160px, -14vw, -120px);
}
.quote-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: clamp(28px, 5vw, 52px);
}
.quote-card h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
.quote-lede { margin-bottom: 30px; }

.quote-form { display: flex; flex-direction: column; gap: 18px; min-width: 0; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  min-width: 0;
}
.form-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.form-field-wide { grid-column: 1 / -1; }
.form-field label, .services-legend {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}
.form-field input,
.form-field select,
.form-field textarea {
  font: inherit;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(18, 167, 107, 0.15);
}
.form-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2351677a' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 34px; }
.form-field textarea { resize: vertical; min-height: 84px; }

.services-field { min-width: 0; }
.services-legend { padding: 0 0 10px; }
.chip-checks {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}
@media (max-width: 480px) {
  .chip-checks { grid-template-columns: 1fr; }
}
.chip-check {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-dim);
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.chip-check:has(input:checked) {
  border-color: var(--green);
  background: var(--green-soft);
  color: var(--navy);
}
.chip-check input[type="checkbox"] {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 4px;
  background: none;
  accent-color: var(--green-dark);
}
.chip-check span {
  flex: 1 1 auto;
  min-width: 0;
  overflow-wrap: break-word;
}

.quote-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 6px; }
.quote-note { font-size: 0.8rem; color: var(--ink-dim); margin: 0; }
.quote-error { font-size: 0.85rem; color: #b3261e; margin: 10px 0 0; }

.quote-success {
  text-align: center;
  padding: clamp(30px, 6vw, 56px) 10px;
}
.quote-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.quote-success h2 { margin-bottom: 8px; }
.quote-success p { color: var(--ink-dim); font-size: 1.05rem; margin: 0; }

/* ============ Floating WhatsApp button ============ */
.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  box-shadow: 0 14px 30px -10px rgba(10, 42, 67, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-fab:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 18px 36px -10px rgba(10, 42, 67, 0.55); }
.whatsapp-fab::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.45);
  animation: fabPulse 2.4s ease-out infinite;
}
@keyframes fabPulse {
  0% { transform: scale(0.85); opacity: 0.9; }
  100% { transform: scale(1.35); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-fab::before { animation: none; display: none; }
}

/* ============ Footer ============ */
.site-footer { background: var(--navy-deep); color: rgba(255, 255, 255, 0.82); padding: 56px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1.3fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-word { margin-bottom: 12px; }
.footer-brand p { font-size: 0.88rem; color: rgba(255, 255, 255, 0.65); max-width: 32ch; margin: 0; }
.footer-col h4 { color: var(--white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; margin: 0 0 14px; }
.footer-col a { display: block; text-decoration: none; color: rgba(255, 255, 255, 0.72); font-size: 0.92rem; margin-bottom: 10px; }
.footer-col a:hover { color: var(--white); }
.footer-note { display: block; font-size: 0.82rem; color: rgba(255, 255, 255, 0.5); margin-top: 4px; }

.contact-block { margin-bottom: 18px; }
.contact-block:last-child { margin-bottom: 0; }
.contact-label {
  margin: 0 0 4px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
}
.contact-desc {
  margin: 0 0 4px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}
.contact-link {
  display: inline-block;
  text-decoration: none;
  color: var(--green-light);
  font-size: 0.92rem;
  font-weight: 700;
}
.contact-link:hover { color: var(--white); }
.footer-bottom { padding: 20px 24px 28px; }
.footer-bottom p { margin: 0; font-size: 0.78rem; color: rgba(255, 255, 255, 0.5); text-align: center; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .header-cta .btn-sm { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .segment-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .split-grid, .why-grid { grid-template-columns: 1fr; }
  .why-grid .why-img { order: -1; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .header-row { height: 68px; }
  .segment-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-section { margin-top: -70px; }
  .quote-actions { flex-direction: column; align-items: stretch; }
  .quote-actions .btn { justify-content: center; }
  .whatsapp-fab { right: 16px; bottom: 16px; width: 52px; height: 52px; }
}

/* ============ Legal pages ============ */
.legal-page h1 {
  font-size: clamp(2rem, 4vw, 2.7rem);
  margin-bottom: 28px;
}
.legal-body h2 {
  font-size: 1.2rem;
  margin-top: 2em;
}
.legal-body p, .legal-body li {
  color: var(--ink-dim);
  font-size: 0.98rem;
}
.legal-body ul { padding-left: 22px; }
.legal-body em { color: var(--navy); font-style: normal; font-weight: 600; }
.footer-bottom p { margin: 4px 0; }
.footer-bottom a { text-decoration: none; color: rgba(255, 255, 255, 0.6); }
.footer-bottom a:hover { color: var(--white); }

/* Mobile nav panel */
@media (max-width: 980px) {
  .nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 18px 24px 26px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-card);
    gap: 16px;
  }
}
