/* ============================================================
   Albercas Saltillo - "Backyard oasis in the desert"
   Deep pool-teal + bright turquoise on cool light. Aspirational, trust-first.
   ============================================================ */

:root {
  /* Color - deep pool water + turquoise shimmer */
  --teal-900: #052a31;
  --teal-800: #073a44;
  --teal-700: #0b5563;
  --aqua: #14c4cf;
  --aqua-600: #0a9aa6;
  --aqua-300: #7fe3ea;
  --sand: #f1f8f9;
  --sand-200: #e2f0f1;
  --ink: #0c2630;
  --muted: #5a727c;
  --white: #ffffff;
  --line: rgba(12, 38, 48, 0.10);
  --line-strong: rgba(12, 38, 48, 0.16);

  /* Type */
  --display: "Fraunces", Georgia, serif;
  --body: "Hanken Grotesk", system-ui, sans-serif;

  /* Space + form */
  --maxw: 1140px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(5, 42, 49, 0.06), 0 2px 8px rgba(5, 42, 49, 0.06);
  --shadow-md: 0 10px 30px rgba(5, 42, 49, 0.12);
  --shadow-lg: 0 24px 60px rgba(5, 42, 49, 0.20);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
}

h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.05; letter-spacing: -0.015em; color: var(--teal-900); margin: 0 0 .5em; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.18rem; letter-spacing: -0.005em; }
p { margin: 0 0 1rem; }
a { color: inherit; }
img { max-width: 100%; display: block; height: auto; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
section { padding-block: clamp(56px, 8vw, 104px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--body); font-weight: 700; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--aqua-600);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--aqua); border-radius: 2px; }

.section-head { max-width: 640px; margin-bottom: clamp(32px, 5vw, 52px); }
.section-head p { color: var(--muted); font-size: 1.06rem; margin: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--body); font-weight: 700; font-size: 1rem;
  padding: 15px 26px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
}
.btn:focus-visible { outline: 3px solid var(--aqua); outline-offset: 3px; }
.btn-primary { background: var(--aqua); color: var(--teal-900); box-shadow: 0 8px 22px rgba(20, 196, 207, .40); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(20, 196, 207, .55); background: var(--aqua-300); }
.btn-ghost { background: transparent; color: var(--teal-900); border-color: var(--line-strong); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--teal-900); }
.btn-lg { padding: 18px 34px; font-size: 1.06rem; }
.btn svg { width: 1.05em; height: 1.05em; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(241, 248, 249, 0.82);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 12px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-family: var(--display); font-weight: 600; font-size: 1.2rem; color: var(--teal-900); letter-spacing: -0.01em; }
.brand .mark { width: 34px; height: 34px; flex: none; }
.header-cta { display: inline-flex; align-items: center; gap: 14px; }
.header-phone { display: none; font-weight: 700; color: var(--teal-900); text-decoration: none; }
@media (min-width: 720px) { .header-phone { display: inline; } }

/* ---------- Hero (CSS pool-water visual) ---------- */
.hero { position: relative; overflow: clip; padding-block: clamp(48px, 7vw, 84px); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(820px 520px at 80% -10%, rgba(20, 196, 207, 0.28), transparent 60%),
    radial-gradient(600px 480px at 4% 112%, rgba(11, 85, 99, 0.10), transparent 60%),
    var(--sand);
}
.hero-grid { display: grid; gap: clamp(34px, 5vw, 60px); align-items: center; }
@media (min-width: 940px) { .hero-grid { grid-template-columns: 1.05fr 0.95fr; } }
.hero-copy { max-width: 600px; }
.hero h1 { margin-top: .35em; }
.hero h1 .hl { color: var(--aqua-600); font-style: italic; }
.hero-sub { font-size: 1.18rem; color: #324a53; max-width: 32em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px 26px; margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: .92rem; font-weight: 600; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust .tick { color: var(--aqua-600); }

/* Pool-water hero panel: layered caustic light on deep teal water */
.hero-media { position: relative; }
.pool {
  position: relative; width: 100%; aspect-ratio: 4 / 5;
  border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg);
  background:
    linear-gradient(165deg, #0d6b78 0%, #0b5563 38%, #073a44 100%);
}
.pool::before {
  /* caustic ripples */
  content: ""; position: absolute; inset: -20%;
  background:
    radial-gradient(closest-side, rgba(127, 227, 234, .55), transparent 70%) 12% 18% / 38% 26% no-repeat,
    radial-gradient(closest-side, rgba(127, 227, 234, .38), transparent 70%) 78% 30% / 30% 22% no-repeat,
    radial-gradient(closest-side, rgba(255, 255, 255, .30), transparent 70%) 40% 64% / 46% 30% no-repeat,
    radial-gradient(closest-side, rgba(127, 227, 234, .30), transparent 70%) 84% 82% / 34% 24% no-repeat;
  filter: blur(6px);
  animation: shimmer 9s ease-in-out infinite alternate;
}
.pool::after {
  /* water-line tiles at the rim */
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 30%;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.10) 0 14px, transparent 14px 28px),
    linear-gradient(180deg, transparent, rgba(5, 42, 49, .35));
}
@keyframes shimmer {
  from { transform: translate3d(-2%, -1%, 0) scale(1.02); opacity: .9; }
  to   { transform: translate3d(3%, 2%, 0) scale(1.06); opacity: 1; }
}
.pool-label {
  position: absolute; left: 22px; top: 22px; z-index: 2;
  font-family: var(--display); font-style: italic; font-weight: 500;
  color: rgba(255,255,255,.92); font-size: 1.05rem; letter-spacing: .01em;
  text-shadow: 0 1px 10px rgba(5,42,49,.4);
}
.savings-badge {
  position: absolute; left: -14px; bottom: 26px; z-index: 3;
  background: var(--white); color: var(--teal-900);
  border-radius: 18px; padding: 16px 20px; box-shadow: var(--shadow-md);
  display: flex; align-items: baseline; gap: 10px; border: 1px solid var(--line);
}
.savings-badge b { font-family: var(--display); font-size: 2rem; color: var(--aqua-600); line-height: 1; }
.savings-badge small { font-size: .8rem; color: var(--muted); max-width: 9.5em; line-height: 1.25; }

/* ---------- Quote form ---------- */
.quote { background: var(--teal-900); color: var(--white); }
.quote .wrap { display: grid; gap: clamp(28px, 4vw, 52px); align-items: center; }
@media (min-width: 880px) { .quote .wrap { grid-template-columns: 1fr 1fr; } }
.quote h2 { color: var(--white); }
.quote .lead { color: #bcd6da; font-size: 1.08rem; }
.quote ul { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.quote ul li { display: flex; gap: 11px; align-items: flex-start; color: #d3e7ea; }
.quote ul .tick { color: var(--aqua); flex: none; margin-top: 3px; }
.form-card { background: var(--white); color: var(--ink); border-radius: var(--radius); padding: clamp(22px, 3vw, 32px); box-shadow: var(--shadow-lg); }
.field { margin-bottom: 15px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%; font-family: var(--body); font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  background: #fbfdfd; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--aqua-600); box-shadow: 0 0 0 3px rgba(20, 196, 207, .25); }
.field textarea { resize: vertical; min-height: 92px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
#form-status { min-height: 1.2em; margin: 10px 0 0; font-weight: 600; font-size: .94rem; }
.form-note { font-size: .8rem; color: var(--muted); margin-top: 12px; }
.form-note a { color: var(--aqua-600); }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr 1fr; }
@media (min-width: 700px) { .grid-2 { grid-template-columns: 1fr 1fr; } .grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card .ico { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; background: var(--sand-200); color: var(--aqua-600); margin-bottom: 16px; }
.card .ico svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: .35em; }
.card p { color: var(--muted); margin: 0; font-size: .98rem; }

/* ---------- Proceso (steps) ---------- */
.steps { counter-reset: step; display: grid; gap: 20px; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { position: relative; padding: 28px 22px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--display); font-weight: 600; font-size: 1.5rem; color: var(--aqua-600);
  display: block; margin-bottom: 10px;
}
.step h3 { font-size: 1.06rem; }
.step p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---------- Zonas ---------- */
.zonas { background: var(--sand-200); }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { background: var(--white); border: 1px solid var(--line-strong); border-radius: 999px; padding: 9px 17px; font-weight: 600; font-size: .94rem; }

/* ---------- Confianza band ---------- */
.trust-band { display: grid; gap: 18px; }
@media (min-width: 760px) { .trust-band { grid-template-columns: repeat(4, 1fr); } }
.trust-item { text-align: center; padding: 22px 16px; }
.trust-item .ico { margin: 0 auto 12px; width: 50px; height: 50px; display: grid; place-items: center; border-radius: 50%; background: rgba(20, 196, 207, .16); color: var(--aqua-600); }
.trust-item .ico svg { width: 26px; height: 26px; }
.trust-item strong { display: block; font-family: var(--display); font-weight: 600; font-size: 1.04rem; color: var(--teal-900); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--line-strong); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 22px 44px 22px 2px; position: relative;
  font-family: var(--display); font-weight: 600; font-size: 1.12rem; color: var(--teal-900);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-size: 1.6rem; color: var(--aqua-600); font-family: var(--body); transition: transform .25s var(--ease);
}
.faq-item[open] summary::after { content: "\2013"; }
.faq-item p { color: var(--muted); padding: 0 44px 22px 2px; margin: 0; }

/* ---------- Final CTA ---------- */
.cta-final { position: relative; overflow: clip; background: var(--teal-900); color: var(--white); text-align: center; }
.cta-final::before { content: ""; position: absolute; inset: 0; z-index: 0; background: radial-gradient(700px 360px at 50% -30%, rgba(20, 196, 207, .35), transparent 60%); }
.cta-final .wrap { position: relative; z-index: 1; }
.cta-final h2 { color: var(--white); }
.cta-final p { color: #bcd6da; max-width: 40em; margin-inline: auto; font-size: 1.1rem; }
.cta-final .hero-actions { justify-content: center; }
.cta-final .btn-ghost { color: var(--white); border-color: rgba(255, 255, 255, .35); }
.cta-final .btn-ghost:hover { border-color: var(--white); }

/* ---------- Footer ---------- */
.site-footer { background: var(--teal-900); color: #a9c3c8; padding-block: 52px 30px; border-top: 1px solid rgba(255, 255, 255, .08); }
.footer-grid { display: grid; gap: 26px; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-footer .brand { color: var(--white); margin-bottom: 12px; }
.site-footer a { color: #c2dadd; text-decoration: none; }
.site-footer a:hover { color: var(--white); }
.footer-col h4 { font-family: var(--display); font-weight: 600; color: var(--white); font-size: 1rem; margin: 0 0 12px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-phone { font-family: var(--display); font-size: 1.3rem; color: var(--aqua) !important; font-weight: 600; }
.disclaimer { margin-top: 30px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .08); font-size: .85rem; color: #7f9aa0; }
.disclaimer .legal { margin-top: 8px; }

/* ---------- Legal pages ---------- */
.legal-page { max-width: 760px; }
.legal-page h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.legal-page h2 { font-size: 1.3rem; margin-top: 1.6em; }
.legal-page p, .legal-page li { color: #2f4751; }
.back-link { display: inline-flex; gap: 6px; align-items: center; font-weight: 700; color: var(--aqua-600); text-decoration: none; margin-bottom: 24px; }

/* ---------- Entrance animation ---------- */
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.reveal { opacity: 0; animation: rise .7s var(--ease) forwards; }
.d1 { animation-delay: .05s; } .d2 { animation-delay: .15s; } .d3 { animation-delay: .25s; }
.d4 { animation-delay: .35s; } .d5 { animation-delay: .45s; }

/* ============================================================
   MULTI-PAGE EXTENSIONS (nav, breadcrumb, prose, media, etc.)
   ============================================================ */

/* ---------- Primary nav ---------- */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 100; background: var(--teal-900); color: #fff; padding: 10px 16px; border-radius: 0 0 10px 0; }
.skip-link:focus { left: 0; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  display: inline-flex; align-items: center; min-height: 44px; padding: 8px 14px;
  font-weight: 600; font-size: .98rem; color: var(--ink); text-decoration: none;
  border-radius: 999px; transition: background .18s, color .18s;
}
.nav a:hover { background: var(--sand-200); color: var(--teal-900); }
.nav a[aria-current="page"] { color: var(--aqua-600); background: rgba(20, 196, 207, .12); }
.nav a:focus-visible { outline: 3px solid var(--aqua); outline-offset: 2px; }
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border: 1px solid var(--line-strong); border-radius: 12px;
  background: var(--white); cursor: pointer; color: var(--teal-900);
}
.nav-toggle:focus-visible { outline: 3px solid var(--aqua); outline-offset: 2px; }
.nav-toggle svg { width: 24px; height: 24px; }
@media (min-width: 940px) { .nav-toggle { display: none; } }
body { overflow-x: hidden; }
@media (max-width: 939px) {
  .nav {
    position: fixed; inset: 0 0 0 auto; z-index: 60; width: min(82vw, 320px);
    flex-direction: column; align-items: stretch; gap: 6px;
    background: var(--white); box-shadow: var(--shadow-lg); padding: 84px 20px 28px;
    transform: translateX(101%); transition: transform .3s var(--ease); overflow-y: auto;
    visibility: hidden;
  }
  .nav a { min-height: 48px; padding: 12px 16px; font-size: 1.05rem; }
  body.nav-open .nav { transform: none; visibility: visible; }
  body.nav-open::after { content: ""; position: fixed; inset: 0; z-index: 55; background: rgba(5, 42, 49, .45); }
  body.nav-open { overflow: hidden; }
}
.nav-close { display: none; position: absolute; top: 18px; right: 18px; width: 44px; height: 44px; border: none; background: transparent; cursor: pointer; color: var(--teal-900); }
@media (max-width: 939px) { .nav-close { display: inline-flex; align-items: center; justify-content: center; } }
.nav-close svg { width: 26px; height: 26px; }
.header-actions { display: inline-flex; align-items: center; gap: 12px; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { background: var(--sand-200); border-bottom: 1px solid var(--line); }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; padding: 14px 0; margin: 0; font-size: .9rem; color: var(--muted); }
.breadcrumb li { display: inline-flex; align-items: center; gap: 6px; }
.breadcrumb li:not(:last-child)::after { content: "/"; color: var(--line-strong); }
.breadcrumb a { color: var(--aqua-600); text-decoration: none; font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--ink); font-weight: 600; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { position: relative; overflow: clip; padding-block: clamp(40px, 6vw, 72px); background: var(--teal-900); color: var(--white); }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: 0; background: radial-gradient(720px 420px at 88% -20%, rgba(20, 196, 207, .30), transparent 62%); }
.page-hero .wrap { position: relative; z-index: 1; max-width: 760px; }
.page-hero h1 { color: var(--white); }
.page-hero .eyebrow { color: var(--aqua-300); }
.page-hero p { color: #cfe5e8; font-size: 1.14rem; max-width: 40em; margin: 0; }

/* ---------- Prose / article layout ---------- */
.prose { max-width: 760px; }
.prose > * { margin-inline: auto; }
.prose h2 { margin-top: 1.7em; }
.prose h3 { margin-top: 1.4em; font-size: 1.18rem; color: var(--teal-700); }
.prose p, .prose li { color: #2f4751; font-size: 1.06rem; }
.prose ul, .prose ol { padding-left: 1.3em; margin: 0 0 1.2em; display: grid; gap: 8px; }
.prose a { color: var(--aqua-600); font-weight: 600; }
.prose a:hover { text-decoration: underline; }
.prose strong { color: var(--teal-900); }
.content-layout { display: grid; gap: clamp(32px, 5vw, 56px); }
@media (min-width: 960px) { .content-layout { grid-template-columns: 1fr 320px; align-items: start; } }

/* ---------- Image treatments ---------- */
.media-img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md); object-fit: cover; border: 1px solid var(--line); }
.media-figure { margin: 0 0 1.6em; }
.media-figure figcaption { font-size: .88rem; color: var(--muted); margin-top: 10px; text-align: center; }
.img-cover { aspect-ratio: 16 / 10; }
.img-wide { aspect-ratio: 16 / 9; }
.img-square { aspect-ratio: 1 / 1; }

/* Feature row (image + text) */
.feature-row { display: grid; gap: clamp(26px, 4vw, 48px); align-items: center; }
@media (min-width: 860px) { .feature-row { grid-template-columns: 1fr 1fr; } .feature-row.reverse > :first-child { order: 2; } }
.feature-row h2 { margin-top: 0; }
.feature-row p { color: var(--muted); }

/* Included checklist */
.included { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.included li { display: flex; gap: 11px; align-items: flex-start; color: #2f4751; }
.included .tick { color: var(--aqua-600); flex: none; margin-top: 4px; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--sand-200); }
.testi-grid { display: grid; gap: 20px; }
@media (min-width: 800px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }
.testi-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.testi-stars { color: #f4b740; letter-spacing: 2px; margin-bottom: 14px; font-size: 1.05rem; }
.testi-card blockquote { margin: 0 0 18px; font-size: 1.04rem; color: #2f4751; line-height: 1.6; }
.testi-who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--teal-700); color: #fff; display: grid; place-items: center; font-family: var(--display); font-weight: 600; flex: none; }
.testi-who b { display: block; font-family: var(--display); color: var(--teal-900); font-weight: 600; }
.testi-who span { font-size: .86rem; color: var(--muted); }

/* ---------- Service / link cards (with arrow) ---------- */
.link-card { display: flex; flex-direction: column; text-decoration: none; color: inherit; overflow: hidden; padding: 0; }
.link-card .link-card-img { aspect-ratio: 16 / 10; width: 100%; object-fit: cover; }
.link-card .link-card-body { padding: 22px 24px 26px; }
.link-card h3 { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.link-card h3::after { content: "→"; color: var(--aqua-600); transition: transform .2s var(--ease); }
.link-card:hover h3::after { transform: translateX(4px); }
.link-card:focus-visible { outline: 3px solid var(--aqua); outline-offset: 3px; }

/* ---------- Sidebar CTA box ---------- */
.cta-box { background: var(--teal-900); color: var(--white); border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow-md); position: sticky; top: 88px; }
.cta-box h3 { color: var(--white); font-size: 1.25rem; }
.cta-box p { color: #bcd6da; font-size: .98rem; }
.cta-box .btn { width: 100%; margin-top: 8px; }
.cta-box .cta-phone { display: block; text-align: center; margin-top: 14px; font-family: var(--display); font-size: 1.3rem; color: var(--aqua); font-weight: 600; text-decoration: none; }

/* ---------- Inline CTA strip ---------- */
.cta-strip { background: var(--teal-800); color: var(--white); border-radius: var(--radius); padding: clamp(28px, 4vw, 44px); text-align: center; box-shadow: var(--shadow-md); }
.cta-strip h2 { color: var(--white); margin-bottom: .4em; }
.cta-strip p { color: #bcd6da; max-width: 38em; margin: 0 auto 22px; }
.cta-strip .hero-actions { justify-content: center; }
.cta-strip .btn-ghost { color: var(--white); border-color: rgba(255,255,255,.35); }
.cta-strip .btn-ghost:hover { border-color: var(--white); }

/* ---------- Footer sitemap (4 cols) ---------- */
@media (min-width: 760px) { .footer-grid.cols-4 { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
