/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg: #faf6f3;
  --bg-2: #f2e9e2;
  --bg-deep: #2f4a45;
  --bg-deep-2: #233934;
  --paper: #ffffff;
  --ink: #2b2622;
  --ink-soft: #52473f;
  --ink-mute: #8c8079;
  --cream: #fbf8f5;
  --cream-mute: rgba(251, 248, 245, 0.72);

  --accent: #6f9d92;
  --accent-dark: #4f766c;
  --accent-tint: #e4efec;
  --accent-2: #e2a08e;
  --accent-2-dark: #c97e6c;
  --accent-2-tint: #fbeae4;
  --gold: #d9a962;

  --line: rgba(43, 38, 34, 0.10);
  --line-strong: rgba(43, 38, 34, 0.18);
  --line-on-dark: rgba(251, 248, 245, 0.16);

  --shadow-soft: 0 20px 60px rgba(43, 38, 34, 0.10);
  --shadow-card: 0 12px 32px rgba(43, 38, 34, 0.08);
  --shadow-lift: 0 30px 70px rgba(43, 38, 34, 0.16);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;

  --container: 1180px;
  --nav-h: 84px;

  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --display: "Poppins", var(--sans);
  --script: "Caveat", cursive;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
p { text-wrap: pretty; }
h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  text-wrap: balance;
  line-height: 1.08;
  letter-spacing: -0.01em;
  font-weight: 600;
}
::selection { background: var(--accent); color: var(--cream); }
:focus-visible {
  outline: 2px solid var(--accent-dark);
  outline-offset: 3px;
  border-radius: 4px;
}
input, select, textarea { font: inherit; color: inherit; }

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .7rem 1.2rem; background: var(--ink); color: var(--cream);
  z-index: 9999; border-radius: var(--radius-sm); font-weight: 500;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.4rem;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent-dark);
}
.eyebrow::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent-2); flex-shrink: 0;
}
.eyebrow.on-dark { color: var(--gold); }
.eyebrow.on-dark::before { background: var(--gold); }

.section-head {
  max-width: 640px;
  margin-bottom: 3rem;
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); margin-top: .6rem; }
.section-head p { margin-top: 1rem; font-size: 1.05rem; color: var(--ink-mute); }

section { position: relative; padding-block: clamp(4rem, 8vw, 7rem); }

.script-word { font-family: var(--script); font-weight: 600; color: var(--accent-2-dark); }

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.7rem;
  border-radius: var(--radius-pill);
  font-weight: 600; font-size: .96rem;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), background-color .3s var(--ease-out), color .3s var(--ease-out);
  white-space: nowrap;
}
.btn svg { width: 1.15em; height: 1.15em; flex-shrink: 0; }
.btn-primary {
  background: var(--accent-dark); color: var(--cream);
  box-shadow: 0 14px 30px rgba(79, 118, 108, 0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(79, 118, 108, 0.42); }
.btn-ghost {
  background: transparent; color: var(--ink); border: 1.5px solid var(--line-strong);
}
.btn-ghost:hover { border-color: var(--accent-dark); color: var(--accent-dark); transform: translateY(-3px); }
.btn-ghost.on-dark { color: var(--cream); border-color: var(--line-on-dark); }
.btn-ghost.on-dark:hover { border-color: var(--gold); color: var(--gold); }
.btn-whatsapp {
  background: #25d366; color: #06301a;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(37, 211, 102, 0.45); }
.btn-block { width: 100%; }

/* =============================================================
   5. Nav
   ============================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 500;
  padding-block: 1.1rem;
  transition: padding .4s var(--ease-out), background-color .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.nav.is-solid {
  padding-block: .7rem;
  background: rgba(250, 246, 243, 0.86);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 8px 30px rgba(43, 38, 34, 0.06);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .6rem; font-family: var(--display); font-weight: 700; font-size: 1.15rem; color: var(--ink); }
.brand-mark { width: 38px; height: 38px; flex-shrink: 0; }
.brand-name em { font-family: var(--script); font-style: normal; color: var(--accent-2-dark); font-weight: 600; }

.nav-links { display: none; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: .92rem; font-weight: 500; color: var(--ink-soft);
  position: relative; padding-block: .2rem;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--accent-2); transition: right .4s var(--ease-out);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { right: 0; }

.nav-cta { display: none; }

.nav-burger {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; border-radius: var(--radius-sm);
  background: var(--paper); box-shadow: var(--shadow-card);
}
.nav-burger span { display: block; width: 18px; height: 2px; background: var(--ink); margin-inline: auto; transition: transform .3s var(--ease-out), opacity .3s var(--ease-out); }
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 490;
  background: var(--cream);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.6rem;
  opacity: 0; pointer-events: none; transform: translateY(-12px);
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out);
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mobile-menu a { font-family: var(--display); font-size: 1.5rem; font-weight: 600; color: var(--ink); }
.mobile-menu .btn { margin-top: 1rem; }

/* =============================================================
   6. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: 6rem;
  overflow: clip;
}
.hero-blob {
  position: absolute; z-index: 0; border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%;
  filter: blur(2px);
  opacity: .55;
  animation: blobMorph 22s var(--ease-soft) infinite;
}
.hero-blob--a { width: 620px; height: 620px; top: -180px; right: -160px; background: linear-gradient(135deg, var(--accent-tint), var(--accent)); opacity: .4; }
.hero-blob--b { width: 420px; height: 420px; bottom: -140px; left: -120px; background: linear-gradient(135deg, var(--accent-2-tint), var(--accent-2)); opacity: .45; animation-delay: -8s; }
@keyframes blobMorph {
  0%, 100% { border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%; transform: rotate(0deg) scale(1); }
  50% { border-radius: 58% 42% 39% 61% / 55% 60% 40% 45%; transform: rotate(8deg) scale(1.06); }
}

.hero-grid {
  position: relative; z-index: 1;
  display: grid; gap: 3rem;
  align-items: center;
}
.hero-copy .eyebrow { margin-bottom: 1.1rem; }
.hero-title { font-size: clamp(2.5rem, 6vw, 4.1rem); }
.hero-title .accent { color: var(--accent-dark); }
.hero-sub {
  margin-top: 1.3rem; font-size: 1.12rem; color: var(--ink-mute);
  max-width: 46ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.1rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.6rem; margin-top: 2.6rem; }
.hero-trust-item { display: flex; align-items: center; gap: .6rem; font-size: .88rem; color: var(--ink-mute); font-weight: 500; }
.hero-trust-item svg { width: 20px; height: 20px; color: var(--accent-dark); flex-shrink: 0; }

.hero-visual { position: relative; }
.hero-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  aspect-ratio: 4 / 5;
  animation: floatY 7s var(--ease-soft) infinite;
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.hero-badge {
  position: absolute; left: -1.2rem; bottom: 1.6rem;
  background: var(--paper); border-radius: var(--radius-md);
  padding: 1rem 1.3rem; box-shadow: var(--shadow-lift);
  display: flex; align-items: center; gap: .8rem;
  max-width: 230px;
}
.hero-badge-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--accent-tint); color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-badge-icon svg { width: 22px; height: 22px; }
.hero-badge strong { display: block; font-family: var(--display); font-size: .95rem; color: var(--ink); }
.hero-badge span { font-size: .8rem; color: var(--ink-mute); }

/* =============================================================
   7. Wave dividers
   ============================================================= */
.wave-divider { position: relative; line-height: 0; z-index: 2; }
.wave-divider svg { width: 100%; height: auto; display: block; }
.wave-divider--up { transform: rotate(180deg); }

/* =============================================================
   8. Services
   ============================================================= */
.services { background: var(--bg); }
.services-grid {
  display: grid; gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.service-card {
  position: relative;
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.service-photo { aspect-ratio: 16/11; overflow: hidden; }
.service-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.service-card:hover .service-photo img { transform: scale(1.08); }
.service-body { padding: 1.5rem 1.6rem 1.8rem; }
.service-body h3 { font-size: 1.2rem; margin-bottom: .55rem; }
.service-body p { font-size: .93rem; color: var(--ink-mute); }
.service-num {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.88); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: .78rem; font-weight: 600; color: var(--accent-dark);
}

/* =============================================================
   9. How it works
   ============================================================= */
.how { background: var(--bg-2); }
.how-grid {
  display: grid; gap: 2.2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.step { position: relative; padding-left: 0; }
.step-n {
  font-family: var(--display); font-size: 2.6rem; font-weight: 700;
  color: var(--accent-2); opacity: .55; line-height: 1;
}
.step h3 { margin-top: .6rem; font-size: 1.1rem; }
.step p { margin-top: .5rem; font-size: .92rem; color: var(--ink-mute); }
.step-connector {
  display: none;
  position: absolute; top: 1.3rem; left: calc(100% + 1.1rem);
  width: calc(2.2rem - 0.2rem);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--line-strong) 0 6px, transparent 6px 12px);
}

/* =============================================================
   10. Quote form
   ============================================================= */
.quote {
  background: var(--bg-deep);
  color: var(--cream);
  overflow: clip;
}
.quote .section-head h2 { color: var(--cream); }
.quote .section-head p { color: var(--cream-mute); }
.quote-wrap {
  display: grid; gap: 2.5rem;
  background: var(--bg-deep-2);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 3rem);
  box-shadow: 0 30px 80px rgba(0,0,0,0.28);
  position: relative;
  z-index: 1;
}
.quote-blob {
  position: absolute; z-index: 0; pointer-events: none;
  width: 480px; height: 480px; top: -160px; right: -140px;
  background: radial-gradient(circle, rgba(217,169,98,0.25), transparent 70%);
  border-radius: 50%;
}
.form-grid { display: grid; gap: 1.2rem; position: relative; z-index: 1; }
.form-row { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
.field { display: flex; flex-direction: column; gap: .5rem; }
.field label { font-size: .84rem; font-weight: 600; color: var(--cream); letter-spacing: .02em; }
.field-hint { font-size: .78rem; color: var(--cream-mute); }
.field input[type="text"],
.field input[type="tel"],
.field input[type="date"],
.field select {
  appearance: none;
  background: rgba(251,248,245,0.08);
  border: 1.5px solid var(--line-on-dark);
  border-radius: var(--radius-sm);
  padding: .85rem 1rem;
  color: var(--cream);
  font-size: .96rem;
  transition: border-color .3s var(--ease-out), background-color .3s var(--ease-out);
}
.field input::placeholder { color: rgba(251,248,245,0.45); }
.field input:focus, .field select:focus {
  border-color: var(--gold);
  background: rgba(251,248,245,0.12);
  outline: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%23fbf8f5' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.4rem;
}
.field select option { color: var(--ink); }

.time-choice { display: flex; gap: .8rem; flex-wrap: wrap; }
.time-choice input { position: absolute; opacity: 0; width: 0; height: 0; }
.time-choice label {
  display: flex; flex-direction: column; gap: .1rem;
  padding: .8rem 1.1rem;
  border: 1.5px solid var(--line-on-dark);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color .3s var(--ease-out), background-color .3s var(--ease-out);
  font-weight: 500;
}
.time-choice label span { font-size: .74rem; font-weight: 400; color: var(--cream-mute); }
.time-choice input:checked + label {
  border-color: var(--gold);
  background: rgba(217,169,98,0.14);
}
.time-choice input:focus-visible + label { outline: 2px solid var(--gold); outline-offset: 2px; }

.quote-note {
  display: flex; align-items: flex-start; gap: .7rem;
  font-size: .82rem; color: var(--cream-mute);
  margin-top: .3rem;
}
.quote-note svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; color: var(--gold); }

.quote-actions {
  display: flex; flex-wrap: wrap; align-items: center; gap: .9rem;
  margin-top: .6rem;
}
.quote-sms { font-size: .88rem; }

/* =============================================================
   11. Before / After
   ============================================================= */
.before-after { background: var(--bg); }
.ba-grid { display: grid; gap: 2.6rem; }
.ba-pair { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
.ba-item { position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-card); }
.ba-item img { width: 100%; height: 100%; object-fit: cover; }
.ba-tag {
  position: absolute; top: .8rem; left: .8rem; z-index: 2;
  padding: .35rem .85rem; border-radius: var(--radius-pill);
  font-size: .74rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
}
.ba-tag--before { background: rgba(43,38,34,0.78); color: var(--cream); }
.ba-tag--after { background: var(--accent-dark); color: var(--cream); }
.ba-label { text-align: center; font-family: var(--display); font-weight: 600; color: var(--ink); margin-top: .2rem; }
.ba-disclaimer {
  text-align: center; margin-top: 2rem; font-size: .84rem; color: var(--ink-mute);
  font-style: italic;
}

/* =============================================================
   12. Testimonials
   ============================================================= */
.testimonials { background: var(--bg-2); }
.testi-grid { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.testi-card {
  background: var(--paper); border-radius: var(--radius-lg);
  padding: 2rem 1.8rem; box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 1rem;
  border: 1.5px dashed var(--line-strong);
}
.testi-stars { display: flex; gap: .2rem; color: var(--gold); }
.testi-stars svg { width: 18px; height: 18px; }
.testi-card p { font-size: .96rem; color: var(--ink-mute); font-style: italic; flex-grow: 1; }
.testi-foot { display: flex; align-items: center; gap: .3rem; font-size: .82rem; color: var(--ink-mute); font-weight: 600; }
.testi-foot .script-word { font-weight: 600; }
.testi-badge {
  align-self: flex-start;
  font-size: .68rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase;
  color: var(--accent-2-dark); background: var(--accent-2-tint);
  padding: .3rem .65rem; border-radius: var(--radius-pill);
}
.testi-disclaimer {
  text-align: center; margin-top: 2rem; font-size: .84rem; color: var(--ink-mute);
  font-style: italic;
}

/* =============================================================
   13. FAQ
   ============================================================= */
.faq { background: var(--bg); }
.faq-list { display: grid; gap: .9rem; max-width: 760px; }
.faq-item {
  background: var(--paper); border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1.5rem; text-align: left;
  font-family: var(--display); font-weight: 600; font-size: 1rem; color: var(--ink);
}
.faq-q-icon {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent-tint); color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
  transition: transform .4s var(--ease-out), background-color .4s var(--ease-out), color .4s var(--ease-out);
}
.faq-item.is-open .faq-q-icon { transform: rotate(45deg); background: var(--accent-dark); color: var(--cream); }
/* Default: open (no-JS fallback keeps every answer readable). JS adds
   .js-faq to the list, which is what actually enables the collapse. */
.faq-a {
  display: grid; grid-template-rows: 1fr; transition: grid-template-rows .45s var(--ease-out);
}
.faq-a-inner { overflow: hidden; }
.faq-a-inner p { padding: 0 1.5rem 1.4rem; color: var(--ink-mute); font-size: .94rem; max-width: 64ch; }
.js-faq .faq-a { grid-template-rows: 0fr; }
.js-faq .faq-item.is-open .faq-a { grid-template-rows: 1fr; }

/* =============================================================
   14. Coverage
   ============================================================= */
.coverage { background: var(--bg-2); overflow: clip; }
.coverage-grid { display: grid; gap: 3rem; align-items: center; }
.coverage-map { position: relative; }
.coverage-pin-list { display: flex; flex-direction: column; gap: .9rem; margin-top: 1.6rem; }
.coverage-pin { display: flex; align-items: center; gap: .7rem; font-weight: 600; color: var(--ink); }
.coverage-pin svg { width: 20px; height: 20px; color: var(--accent-2-dark); flex-shrink: 0; }
.coverage-pin span { font-weight: 400; color: var(--ink-mute); font-size: .88rem; }

.zip-check { margin-top: 2rem; max-width: 360px; }
.zip-check label { display: block; font-size: .84rem; font-weight: 600; color: var(--ink); margin-bottom: .5rem; }
.zip-check-row { display: flex; gap: .7rem; }
.zip-check-row input {
  flex: 1; min-width: 0;
  padding: .8rem 1rem;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--paper);
  font-size: .96rem;
}
.zip-check-row input:focus { border-color: var(--accent-dark); outline: none; }
.zip-check-row .btn { padding-inline: 1.3rem; }
.zip-result { margin-top: .8rem; font-size: .88rem; min-height: 1.2em; }
.zip-result--yes { color: var(--accent-dark); font-weight: 600; }
.zip-result--maybe { color: var(--accent-2-dark); font-weight: 600; }
.zip-result--warn { color: var(--ink-mute); }

/* =============================================================
   15. CTA band
   ============================================================= */
.cta-band {
  background: linear-gradient(120deg, var(--accent-dark), var(--accent-2-dark));
  color: var(--cream);
  text-align: center;
}
.cta-band h2 { color: var(--cream); font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.cta-band p { margin-top: 1rem; color: rgba(251,248,245,0.85); max-width: 52ch; margin-inline: auto; }
.cta-band-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

/* =============================================================
   16. Footer
   ============================================================= */
.footer { background: var(--bg-deep); color: var(--cream-mute); padding-top: 4.5rem; }
.footer-grid {
  display: grid; gap: 2.6rem;
  grid-template-columns: 1fr;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-on-dark);
}
.footer-brand .brand { color: var(--cream); margin-bottom: .9rem; }
.footer-brand p { font-size: .9rem; max-width: 32ch; }
.footer-col h4 { color: var(--cream); font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1.1rem; font-family: var(--display); }
.footer-col ul { display: flex; flex-direction: column; gap: .7rem; }
.footer-col a, .footer-col li { font-size: .9rem; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
  padding-block: 1.6rem; font-size: .8rem;
}
.footer-credits { margin-top: .6rem; }
.footer-credits summary { cursor: pointer; font-size: .8rem; color: var(--cream-mute); }
.footer-credits-list { margin-top: .8rem; display: grid; gap: .3rem; font-size: .76rem; }
.footer-credits-list a { text-decoration: underline; text-underline-offset: 2px; }

/* =============================================================
   17. Floating WhatsApp
   ============================================================= */
.wa-float {
  position: fixed; right: 1.3rem; bottom: 1.3rem; z-index: 600;
  display: flex; align-items: center; gap: .7rem;
  background: #25d366; color: #06301a;
  padding: .85rem 1.1rem .85rem .85rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.4);
  transition: transform .4s var(--ease-bounce), box-shadow .4s var(--ease-out);
}
.wa-float:hover { transform: scale(1.05); box-shadow: 0 20px 50px rgba(37, 211, 102, 0.5); }
.wa-float-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: #06301a; color: #25d366;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.wa-float-icon svg { width: 22px; height: 22px; }
.wa-float-text { font-size: .84rem; font-weight: 700; white-space: nowrap; }
.wa-float-text small { display: block; font-size: .68rem; font-weight: 500; opacity: .8; }
.wa-pulse {
  position: absolute; inset: 0; border-radius: var(--radius-pill);
  background: #25d366; opacity: .55;
  animation: waPulse 2.6s var(--ease-soft) infinite;
  z-index: -1;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: .5; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* =============================================================
   18. Reveal / scroll effects
   ============================================================= */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-split] { opacity: 1; transform: none; }
.reveal-stagger > * { transition-delay: calc(var(--stagger-i, 0) * 70ms); }

/* =============================================================
   19. Responsive
   ============================================================= */
@media (min-width: 540px) {
  .ba-pair { grid-template-columns: 1fr 1fr; }
  .form-row.cols-2 { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 720px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
  .footer-grid { grid-template-columns: 1.3fr repeat(3, 1fr); }
  .coverage-grid { grid-template-columns: .9fr 1.1fr; }
}

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-burger { display: none; }
  .quote-wrap { grid-template-columns: 1fr; padding: clamp(2rem, 4vw, 3.4rem); }
}

@media (min-width: 1280px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .how-grid { grid-template-columns: repeat(4, 1fr); }
  .step-connector { display: block; }
}

/* =============================================================
   20. Reduced motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-blob { animation: none; }
  .hero-frame { animation: none; }
  .wa-pulse { animation: none; display: none; }
}
