/* RenewHuman — production polish */
:root {
  --teal: #0a3d3d;
  --teal-mid: #0f5555;
  --gold: #c9a227;
  --gold-bright: #e0b83a;
  --cream: #f6f1e7;
  --ink: #121816;
  --muted: #5a6562;
  --line: #ddd4c4;
  --white: #fff;
  --ok: #1a7a4c;
  --err: #b42318;
  --max: 1120px;
  --font: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  --display: Georgia, "Iowan Old Style", Palatino, "Times New Roman", serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --shadow: 0 20px 50px rgba(6, 30, 30, .12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 76px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select { font: inherit; color: inherit; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.skip {
  position: absolute; left: -999px; top: 0; background: var(--gold); color: #111;
  padding: .5rem 1rem; z-index: 999; font-weight: 700;
}
.skip:focus { left: 1rem; top: 1rem; }
.wrap { width: min(100% - 1.75rem, var(--max)); margin-inline: auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 52px; padding: .85rem 1.5rem; border-radius: 999px;
  font-weight: 700; font-size: .95rem; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s var(--ease), background .15s, box-shadow .15s, opacity .15s;
  text-align: center; white-space: nowrap;
}
.btn:hover:not(:disabled) { transform: translateY(-1px); }
.btn:disabled { opacity: .7; cursor: wait; }
.btn-gold {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #1a1400; box-shadow: 0 8px 24px rgba(201,162,39,.35);
}
.btn-gold:hover:not(:disabled) {
  background: linear-gradient(180deg, #efc74a, var(--gold-bright));
  box-shadow: 0 12px 28px rgba(201,162,39,.42);
}
.btn-white { background: #fff; color: var(--teal); box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.btn-block { width: 100%; }
.btn-sm { min-height: 42px; padding: .55rem 1.1rem; font-size: .875rem; }

/* Topbar */
.topbar {
  position: sticky; top: 0; z-index: 200;
  background: rgba(10,61,61,.96); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 66px; gap: 1rem;
}
.brand { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.brand-logo {
  width: 40px; height: 40px; object-fit: contain;
  background: #fff; border-radius: 50%; padding: 4px;
  border: 1px solid rgba(201,162,39,.35);
}
.brand-name { font-family: var(--display); font-size: 1.15rem; color: #fff; letter-spacing: .01em; }
.brand-name b { font-weight: 700; }
.brand-name span { font-weight: 400; opacity: .92; }
.top-nav {
  display: none; gap: 1.35rem; font-size: .88rem; font-weight: 500;
  color: rgba(255,255,255,.72);
}
.top-nav a:hover { color: #fff; }
.topbar-right { display: flex; align-items: center; gap: .85rem; }
.topbar-phone {
  display: none; align-items: center; gap: .4rem;
  font-size: .88rem; color: rgba(255,255,255,.82); font-weight: 600;
}
.topbar-phone:hover { color: var(--gold-bright); }
.phone-live {
  width: 7px; height: 7px; border-radius: 50%; background: #3dce8a;
  box-shadow: 0 0 0 3px rgba(61,206,138,.25); animation: pulse 2s infinite;
}
@media (min-width: 900px) {
  .top-nav { display: flex; }
  .topbar-phone { display: inline-flex; }
}

/* Hero */
.hero {
  position: relative; color: #fff;
  padding: 3.5rem 0 3.75rem; overflow: hidden; min-height: 560px;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%;
  transform: scale(1.03);
}
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(5,28,28,.93) 0%, rgba(5,28,28,.8) 40%, rgba(5,28,28,.42) 100%),
    linear-gradient(0deg, rgba(5,22,22,.75) 0%, transparent 48%);
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; gap: 1.85rem; align-items: center;
}
@media (min-width: 920px) {
  .hero-grid { grid-template-columns: 1.12fr .88fr; gap: 2.75rem; }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .45rem 1rem; border-radius: 999px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  font-size: .8rem; font-weight: 600; margin-bottom: 1.15rem;
  backdrop-filter: blur(10px);
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%; background: #3dce8a;
  box-shadow: 0 0 0 3px rgba(61,206,138,.25); animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(61,206,138,.25); }
  50% { box-shadow: 0 0 0 6px rgba(61,206,138,.08); }
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.1rem, 5.2vw, 3.2rem);
  font-weight: 600; line-height: 1.1; letter-spacing: -.025em;
  max-width: 15ch; margin-bottom: 1.05rem;
}
.hero h1 em { font-style: italic; color: var(--gold-bright); font-weight: 500; }
.hero-sub {
  font-size: 1.06rem; color: rgba(255,255,255,.82);
  max-width: 34rem; margin-bottom: 1.6rem; line-height: 1.58;
}
.hero-sub strong { color: #fff; }
.hero-cta { display: flex; flex-direction: column; align-items: flex-start; gap: .7rem; margin-bottom: 1.6rem; }
.hero-cta .btn { min-height: 54px; font-size: 1.02rem; }
.hero-micro { font-size: .82rem; color: rgba(255,255,255,.55); }
.hero-micro span { color: rgba(255,255,255,.88); }
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .65rem; max-width: 440px;
}
.hero-stat {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px; padding: .8rem .45rem; text-align: center;
}
.hero-stat b {
  display: block; font-family: var(--display); font-size: 1.2rem;
  color: var(--gold-bright); margin-bottom: .12rem;
}
.hero-stat span { font-size: .68rem; color: rgba(255,255,255,.62); line-height: 1.25; display: block; }

/* Zip card */
.hero-card {
  background: rgba(255,255,255,.985); color: var(--ink);
  border-radius: 22px; padding: 1.35rem 1.4rem 1.25rem;
  box-shadow: 0 30px 70px rgba(0,0,0,.4);
  border: 1px solid rgba(255,255,255,.3);
}
.card-live {
  display: flex; align-items: center; gap: .5rem;
  font-size: .78rem; color: var(--muted); margin-bottom: .85rem;
  padding: .55rem .7rem; background: #eef8f2; border-radius: 10px; color: var(--ok);
}
.card-live .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--ok);
  flex-shrink: 0; animation: pulse 2s infinite;
}
.card-live strong { color: var(--teal); }
.hero-card h3 {
  font-family: var(--display); font-size: 1.3rem; color: var(--teal); margin-bottom: .3rem;
}
.hero-card > p { font-size: .9rem; color: var(--muted); margin-bottom: 1rem; }
.zip-row { display: flex; gap: .5rem; }
.zip-row input {
  flex: 1; min-height: 50px; padding: .65rem .9rem;
  border: 1.5px solid var(--line); border-radius: 12px; background: var(--cream);
  transition: border-color .15s, box-shadow .15s;
}
.zip-row input:focus {
  outline: none; border-color: var(--teal); background: #fff;
  box-shadow: 0 0 0 3px rgba(10,61,61,.12);
}
.zip-row .btn { flex-shrink: 0; min-height: 50px; padding-inline: 1.2rem; }
.zip-result {
  margin-top: .9rem; padding: 1rem; border-radius: 14px; font-size: .9rem;
  display: grid; gap: .4rem; animation: fadeUp .35s var(--ease);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}
.zip-result strong { font-size: .95rem; }
.zip-result span { color: var(--muted); line-height: 1.45; }
.zip-result .next-win { color: var(--teal); font-size: .85rem; }
.zip-result .next-win b { font-weight: 700; }
.zip-result .btn { margin-top: .4rem; justify-self: start; }
.zip-yes { background: #e8f6ef; border: 1px solid #b8e0c8; }
.zip-yes strong { color: var(--ok); }
.zip-no { background: #faf6eb; border: 1px solid #e5d6a8; }
.zip-no strong { color: var(--teal); }
.zip-cities {
  display: flex; flex-wrap: wrap; gap: .35rem; margin-top: 1rem;
  padding-top: 1rem; border-top: 1px solid var(--line);
}
.zip-cities li {
  font-size: .68rem; font-weight: 600; color: var(--teal);
  background: var(--cream); border-radius: 999px; padding: .25rem .55rem;
}
.card-secure {
  margin-top: .85rem; font-size: .72rem; color: var(--muted); text-align: center;
}

/* Trust + proof */
.trust-strip {
  background: var(--teal); color: rgba(255,255,255,.85); padding: 1rem 0;
}
.trust-strip-inner {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .85rem 1.75rem;
  font-size: .82rem; font-weight: 600;
}
.trust-strip i {
  display: inline-flex; width: 16px; height: 16px; border-radius: 50%;
  background: rgba(201,162,39,.25); color: var(--gold-bright);
  font-style: normal; font-size: .65rem; align-items: center; justify-content: center;
  margin-right: .35rem; vertical-align: middle;
}
.proof-bar { background: var(--cream); border-bottom: 1px solid var(--line); padding: 1.05rem 0; }
.proof-bar-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: .75rem 1.35rem; text-align: center;
}
.stars { color: var(--gold); letter-spacing: .08em; }
.proof-score { font-weight: 700; color: var(--teal); font-size: .95rem; }
.proof-score span { font-weight: 500; color: var(--muted); }
.proof-avatars { display: flex; }
.proof-avatars i {
  width: 30px; height: 30px; border-radius: 50%; background: var(--teal);
  color: var(--gold-bright); font-style: normal; font-size: .65rem; font-weight: 700;
  display: grid; place-items: center; border: 2px solid var(--cream); margin-left: -8px;
}
.proof-avatars i:first-child { margin-left: 0; }
.proof-quote { font-size: .88rem; color: var(--muted); font-style: italic; max-width: 36rem; }
.proof-quote strong { font-style: normal; color: var(--teal); }

/* AEO / answer blocks */
.aeo-sec { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.aeo-def {
  font-size: 1.08rem; color: var(--ink); line-height: 1.65; max-width: 52rem;
  margin: .5rem 0 1.75rem; padding: 1.15rem 1.25rem;
  background: var(--cream); border-left: 4px solid var(--gold); border-radius: 0 12px 12px 0;
}
.aeo-grid {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .aeo-grid { grid-template-columns: 1fr 1fr; }
}
.aeo-card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1.2rem 1.15rem;
  transition: box-shadow .2s, border-color .2s;
}
.aeo-card:hover { border-color: rgba(201,162,39,.5); box-shadow: var(--shadow); }
.aeo-card h3 {
  font-family: var(--display); font-size: 1.05rem; color: var(--teal);
  margin-bottom: .5rem; line-height: 1.3;
}
.aeo-answer { font-size: .92rem; color: var(--muted); line-height: 1.55; }

/* Media */
.media-strip { background: var(--white); }
.media-grid { display: grid; gap: .85rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .media-grid { grid-template-columns: 1.2fr .9fr 1fr; } }
.media-grid figure {
  border-radius: 16px; overflow: hidden; border: 1px solid var(--line);
  background: var(--cream); transition: transform .25s var(--ease), box-shadow .25s;
}
.media-grid figure:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.media-grid img { width: 100%; height: 220px; object-fit: cover; }
@media (min-width: 720px) { .media-grid img { height: 250px; } }
.media-grid figcaption {
  padding: .75rem .95rem; font-size: .82rem; color: var(--muted);
}
.media-grid figcaption b { display: block; color: var(--teal); font-size: .9rem; margin-bottom: .1rem; }

/* Sections */
.sec { padding: 4.5rem 0; }
.sec-tight { padding: 3.15rem 0; }
.sec-dark { background: var(--teal); color: #fff; }
.sec-cream { background: var(--cream); }
.eyebrow {
  display: inline-block; font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: #a8861f; margin-bottom: .65rem;
}
.sec-dark .eyebrow { color: var(--gold-bright); }
.sec h2 {
  font-family: var(--display); font-size: clamp(1.75rem, 4vw, 2.4rem);
  font-weight: 600; line-height: 1.18; color: var(--teal);
  letter-spacing: -.015em; margin-bottom: .75rem;
}
.sec-dark h2 { color: #fff; }
.sec-lead { font-size: 1.05rem; color: var(--muted); max-width: 36rem; }
.sec-dark .sec-lead { color: rgba(255,255,255,.72); }
.center { text-align: center; }
.center .sec-lead { margin-inline: auto; }

.pain-grid { display: grid; gap: .85rem; margin-top: 2rem; }
@media (min-width: 720px) { .pain-grid { grid-template-columns: repeat(3, 1fr); } }
.pain {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 1.3rem;
  text-align: left; transition: box-shadow .2s;
}
.pain:hover { box-shadow: var(--shadow); }
.pain-x {
  width: 28px; height: 28px; border-radius: 8px; background: #fde8e8; color: var(--err);
  display: grid; place-items: center; font-weight: 700; margin-bottom: .65rem;
}
.pain b { display: block; color: var(--teal); margin-bottom: .35rem; }
.pain p { font-size: .9rem; color: var(--muted); }

/* Offers */
.offer-grid { display: grid; gap: 1.15rem; margin-top: 2rem; }
@media (min-width: 800px) { .offer-grid { grid-template-columns: 1fr 1fr; } }
.offer {
  border-radius: 20px; padding: 0 0 1.5rem; border: 1px solid var(--line);
  background: #fff; display: flex; flex-direction: column; overflow: hidden; position: relative;
  transition: transform .2s var(--ease), box-shadow .2s;
}
.offer:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.offer-featured {
  background: linear-gradient(165deg, #0c4a4a, #062e2e);
  border-color: transparent; color: #fff;
  box-shadow: 0 20px 50px rgba(6,41,41,.25);
}
.offer-tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--gold); color: #1a1400; font-size: .68rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; padding: .3rem .7rem; border-radius: 999px;
}
.offer-img { height: 180px; overflow: hidden; }
.offer-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.offer:hover .offer-img img { transform: scale(1.04); }
.offer h3, .offer > p, .offer ul, .offer-price, .offer .btn { margin-left: 1.35rem; margin-right: 1.35rem; }
.offer h3 {
  font-family: var(--display); font-size: 1.4rem; color: var(--teal);
  margin-top: 1.15rem; margin-bottom: .35rem;
}
.offer-featured h3 { color: #fff; }
.offer > p { font-size: .92rem; color: var(--muted); margin-bottom: 1rem; }
.offer-featured > p { color: rgba(255,255,255,.75); }
.offer ul { display: grid; gap: .45rem; margin-bottom: 1.15rem; flex: 1; }
.offer li { font-size: .9rem; padding-left: 1.35rem; position: relative; }
.offer li::before { content: "✓"; position: absolute; left: 0; font-weight: 800; color: var(--teal-mid); }
.offer-featured li::before { color: var(--gold-bright); }
.offer-price {
  font-family: var(--display); font-size: 1.85rem; color: var(--teal); margin-bottom: 1rem;
}
.offer-featured .offer-price { color: var(--gold-bright); }
.offer-price small { font-family: var(--font); font-size: .85rem; color: var(--muted); font-weight: 500; }
.offer-featured .offer-price small { color: rgba(255,255,255,.5); }
.offer .btn { width: calc(100% - 2.7rem); }

/* Steps */
.steps { display: grid; gap: 1rem; margin-top: 2rem; counter-reset: s; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; padding: 1.4rem 1.2rem;
}
.step::before {
  counter-increment: s; content: "0" counter(s);
  display: block; font-family: var(--display); font-size: 1.4rem;
  color: var(--gold-bright); margin-bottom: .6rem;
}
.step h3 { font-family: var(--display); color: #fff; font-size: 1.05rem; margin-bottom: .35rem; }
.step p { font-size: .9rem; color: rgba(255,255,255,.7); }
.cta-center { display: flex; justify-content: center; margin-top: 1.85rem; }
.cta-center .btn { min-width: min(100%, 300px); }

/* Team */
.team-grid {
  display: grid; gap: 2rem; align-items: center;
}
@media (min-width: 800px) { .team-grid { grid-template-columns: 1.1fr .9fr; gap: 3rem; } }
.team-bullets { display: grid; gap: .65rem; }
.team-bullets li {
  padding-left: 1.4rem; position: relative; font-size: .95rem; color: var(--muted);
}
.team-bullets li::before {
  content: "✓"; position: absolute; left: 0; color: var(--ok); font-weight: 800;
}
.team-card {
  background: var(--cream); border: 1px solid var(--line); border-radius: 20px;
  padding: 1.5rem; box-shadow: var(--shadow);
}
.team-card-top { display: flex; gap: .9rem; align-items: center; margin-bottom: 1rem; }
.team-av {
  width: 56px; height: 56px; border-radius: 50%; background: var(--teal);
  color: var(--gold-bright); display: grid; place-items: center;
  font-weight: 700; font-family: var(--display); font-size: 1.1rem; flex-shrink: 0;
}
.team-card-top b { display: block; color: var(--teal); font-size: .98rem; }
.team-card-top span { font-size: .78rem; color: var(--muted); }
.team-card > p {
  font-size: .95rem; font-style: italic; color: var(--ink); line-height: 1.55; margin-bottom: 1rem;
}
.team-creds { display: flex; flex-wrap: wrap; gap: .4rem; }
.team-creds span {
  font-size: .72rem; font-weight: 700; color: var(--teal);
  background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: .3rem .65rem;
}

/* Peptides */
.pep-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; margin-top: 1.75rem;
}
@media (min-width: 720px) { .pep-grid { grid-template-columns: repeat(4, 1fr); } }
.pep {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1rem .85rem;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.pep:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-2px); }
.pep b { display: block; color: var(--teal); font-size: .92rem; margin-bottom: .15rem; }
.pep span { font-size: .75rem; color: var(--muted); display: block; margin-bottom: .45rem; }
.pep em { font-style: normal; font-family: var(--display); font-weight: 600; color: var(--teal); }

/* Cities */
.city-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; margin-top: 1.75rem;
}
@media (min-width: 720px) { .city-grid { grid-template-columns: repeat(4, 1fr); } }
.city-card {
  background: var(--cream); border: 1px solid var(--line); border-radius: 12px;
  padding: .9rem .85rem; transition: border-color .15s, box-shadow .15s;
}
.city-card:hover { border-color: var(--gold); box-shadow: 0 8px 24px rgba(10,61,61,.08); }
.city-card b { display: block; color: var(--teal); font-size: .92rem; margin-bottom: .2rem; }
.city-card span { font-size: .78rem; color: var(--muted); display: block; margin-bottom: .4rem; line-height: 1.35; }
.city-card em {
  font-style: normal; font-size: .72rem; font-weight: 700; color: var(--ok); display: block;
}
.city-card small {
  display: block; margin-top: .35rem; font-size: .7rem; color: var(--muted);
}

.map-panel {
  margin-top: 2rem; background: var(--cream); border: 1px solid var(--line);
  border-radius: 20px; padding: 1.5rem; overflow: hidden;
}
.map-head h3 {
  font-family: var(--display); color: var(--teal); font-size: 1.25rem; margin-bottom: .35rem;
}
.map-head p { font-size: .9rem; color: var(--muted); margin-bottom: 1.15rem; max-width: 40rem; }
.us-map {
  position: relative; width: 100%; max-width: 720px; margin: 0 auto 1.25rem;
  aspect-ratio: 1.7 / 1;
  background: linear-gradient(180deg, #b8d4d0 0%, #8fb8b3 100%);
  border-radius: 16px; border: 1px solid var(--line);
  clip-path: polygon(
    8% 28%, 14% 22%, 22% 24%, 28% 18%, 38% 20%, 48% 16%, 58% 18%, 68% 14%, 78% 18%,
    88% 16%, 94% 24%, 96% 32%, 92% 38%, 94% 48%, 90% 58%, 86% 52%, 82% 58%, 78% 70%,
    74% 78%, 70% 86%, 64% 82%, 58% 88%, 52% 80%, 46% 86%, 42% 78%, 36% 82%, 32% 72%,
    26% 68%, 20% 72%, 16% 62%, 12% 58%, 8% 48%, 6% 38%
  );
  box-shadow: inset 0 0 40px rgba(10,61,61,.08);
}
.map-dot {
  position: absolute; width: 14px; height: 14px; border-radius: 50%;
  background: var(--ok); border: 2px solid #fff;
  box-shadow: 0 0 0 3px rgba(26,122,76,.25), 0 4px 12px rgba(0,0,0,.15);
  transform: translate(-50%, -50%); cursor: pointer; padding: 0;
  transition: transform .15s var(--ease), background .15s;
}
.map-dot:hover, .map-dot:focus {
  transform: translate(-50%, -50%) scale(1.3); outline: none; background: var(--gold);
}
.map-dot span {
  position: absolute; left: 50%; bottom: calc(100% + 6px); transform: translateX(-50%);
  white-space: nowrap; font-size: .65rem; font-weight: 700; color: var(--teal);
  background: #fff; padding: .15rem .4rem; border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,.12); opacity: 0; pointer-events: none;
  transition: opacity .15s;
}
.map-dot:hover span, .map-dot:focus span { opacity: 1; }
.map-zip { max-width: 420px; margin-inline: auto; }
.map-zip label { display: block; margin-bottom: .5rem; color: var(--teal); font-size: .9rem; }

/* Reviews */
.reviews { display: grid; gap: 1rem; margin-top: 2rem; }
@media (min-width: 800px) { .reviews { grid-template-columns: repeat(3, 1fr); } }
.review {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 1.25rem; display: flex; flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.review:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.review-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: .55rem; gap: .5rem;
}
.verified {
  font-size: .68rem; font-weight: 700; color: var(--ok);
  background: #e8f6ef; padding: .2rem .5rem; border-radius: 999px;
}
.review p { font-size: .92rem; flex: 1; margin-bottom: 1rem; line-height: 1.55; }
.review footer {
  display: flex; align-items: center; gap: .65rem;
  padding-top: .9rem; border-top: 1px solid var(--line);
}
.review .av {
  width: 38px; height: 38px; border-radius: 50%; background: var(--teal);
  color: var(--gold-bright); display: grid; place-items: center;
  font-size: .72rem; font-weight: 700; flex-shrink: 0;
}
.review cite { font-style: normal; }
.review cite b { display: block; font-size: .88rem; color: var(--teal); }
.review cite span { font-size: .74rem; color: var(--muted); }

/* FAQ */
.faq-list { max-width: 680px; margin: 1.75rem auto 0; display: grid; gap: .55rem; }
.faq-list details {
  background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
}
.faq-list summary {
  padding: 1.05rem 1.15rem; cursor: pointer; font-weight: 650; color: var(--teal);
  list-style: none; display: flex; justify-content: space-between; gap: 1rem; font-size: .95rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; font-size: 1.25rem; color: var(--gold); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list .a { padding: 0 1.15rem 1.15rem; color: var(--muted); font-size: .92rem; }

/* Final form */
.final {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201,162,39,.12), transparent),
    linear-gradient(180deg, #062929, #0a3d3d 50%, #083333);
  color: #fff; padding: 4.75rem 0 5.5rem;
}
.final-grid { display: grid; gap: 2rem; align-items: start; }
@media (min-width: 900px) {
  .final-grid { grid-template-columns: 1fr 1.05fr; gap: 2.5rem; align-items: start; }
}
.final h2 {
  font-family: var(--display); font-size: clamp(1.85rem, 4vw, 2.45rem);
  color: #fff; margin-bottom: .75rem; line-height: 1.15;
}
.final .lead { color: rgba(255,255,255,.72); font-size: 1.05rem; margin-bottom: 1.35rem; max-width: 32rem; }
.guarantee {
  display: flex; gap: .85rem; align-items: flex-start;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px; padding: 1rem; margin-bottom: 1.15rem;
}
.guarantee-icon {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(201,162,39,.2);
  color: var(--gold-bright); display: grid; place-items: center; font-weight: 700; flex-shrink: 0;
}
.guarantee b { display: block; color: #fff; margin-bottom: .15rem; }
.guarantee p { font-size: .85rem; color: rgba(255,255,255,.65); margin: 0; }
.final-checks { display: grid; gap: .5rem; margin-bottom: 1.35rem; }
.final-checks li {
  display: flex; gap: .55rem; font-size: .92rem; color: rgba(255,255,255,.8);
}
.final-checks li::before { content: "✓"; color: var(--gold-bright); font-weight: 800; }
.final-contact {
  display: flex; flex-wrap: wrap; gap: .75rem 1.25rem; font-size: .9rem; font-weight: 600;
}
.final-contact a { color: rgba(255,255,255,.85); }
.final-contact a:hover { color: var(--gold-bright); }

.form-box {
  background: #fff;
  color: var(--ink);
  border-radius: 20px;
  padding: 0.75rem 0.75rem 0.5rem;
  box-shadow: 0 28px 70px rgba(0,0,0,.35);
  /* no sticky — sticky + iframe = clipped / broken scroll */
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
}
@media (min-width: 900px) {
  .form-box { margin-inline: 0; max-width: none; }
}

/* HighLevel embed — full width of card, tall enough for whole form */
.ghl-form-wrap {
  width: 100%;
  height: 780px;
  min-height: 780px;
  overflow: hidden;
  background: #fff;
  line-height: 0;
}
.ghl-form-wrap iframe {
  width: 100% !important;
  height: 780px !important;
  min-height: 780px !important;
  border: 0 !important;
  display: block;
  background: #fff;
}
@media (max-width: 600px) {
  .form-box { padding: 0.5rem; border-radius: 16px; }
  .ghl-form-wrap,
  .ghl-form-wrap iframe {
    height: 820px !important;
    min-height: 820px !important;
  }
}

.form-zip-hint {
  font-size: .82rem; font-weight: 600; padding: .55rem .75rem;
  border-radius: 8px; margin: 0.5rem 0.65rem 0.35rem;
}
.form-zip-hint.yes { background: #e8f6ef; color: var(--ok); }
.form-zip-hint.no { background: #faf6eb; color: var(--teal); }

/* Sticky */
/* Sticky CTA — mobile only, never cover the book form */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
  background: rgba(255,255,255,.97); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: .7rem .95rem calc(.7rem + env(safe-area-inset-bottom));
  box-shadow: 0 -10px 32px rgba(0,0,0,.08);
  display: flex; align-items: center; gap: .75rem;
  transform: translateY(110%); transition: transform .3s var(--ease);
  pointer-events: none;
}
.sticky-cta.show { transform: translateY(0); pointer-events: auto; }
.sticky-cta .meta { flex: 1; min-width: 0; }
.sticky-cta .meta b { display: block; font-size: .88rem; color: var(--teal); }
.sticky-cta .meta span { font-size: .72rem; color: var(--muted); }
.sticky-cta .btn { flex-shrink: 0; }
body { padding-bottom: 0; }
@media (min-width: 900px) {
  .sticky-cta { display: none !important; }
}

/* Footer */
.foot {
  background: #0a1212; color: rgba(255,255,255,.55); padding: 3rem 0 2rem; font-size: .88rem;
}
.foot-grid {
  display: grid; gap: 1.75rem; margin-bottom: 2rem;
}
@media (min-width: 720px) { .foot-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.foot-tag { margin-top: .75rem; max-width: 24ch; line-height: 1.5; font-size: .9rem; }
.foot h4 {
  color: #fff; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: .85rem; font-weight: 700;
}
.foot ul { display: grid; gap: .45rem; }
.foot a:hover { color: var(--gold-bright); }
.foot-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .75rem;
  padding-top: 1.15rem; border-top: 1px solid rgba(255,255,255,.08);
  font-size: .8rem; margin-bottom: 1rem;
}
.foot-links-inline { display: flex; gap: 1rem; }
.linkish {
  background: none; border: none; color: rgba(255,255,255,.55); cursor: pointer;
  font-size: .8rem; text-decoration: underline; text-underline-offset: 2px; padding: 0;
}
.linkish:hover { color: var(--gold-bright); }
.foot-legal {
  font-size: .7rem; line-height: 1.55; color: rgba(255,255,255,.35); max-width: 80ch;
}

/* Modal */
.modal {
  position: fixed; inset: 0; z-index: 400; display: grid; place-items: center; padding: 1rem;
}
.modal[hidden] { display: none; }
.modal-backdrop {
  position: absolute; inset: 0; background: rgba(5,20,20,.65); backdrop-filter: blur(4px);
}
.modal-panel {
  position: relative; background: #fff; color: var(--ink); border-radius: 18px;
  padding: 1.75rem 1.5rem; max-width: 480px; width: 100%; max-height: 80vh; overflow: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,.35); animation: fadeUp .3s var(--ease);
}
.modal-x {
  position: absolute; top: .75rem; right: .9rem; background: none; border: none;
  font-size: 1.5rem; color: var(--muted); cursor: pointer; line-height: 1;
}
.modal-panel h2 {
  font-family: var(--display); color: var(--teal); font-size: 1.35rem; margin-bottom: .85rem;
}
.modal-body { font-size: .92rem; color: var(--muted); line-height: 1.6; }
.modal-body p + p { margin-top: .85rem; }

/* Toast */
.toast {
  position: fixed; bottom: 5.5rem; left: 50%; transform: translateX(-50%) translateY(12px);
  background: var(--teal); color: #fff; padding: .7rem 1.15rem; border-radius: 999px;
  font-size: .85rem; font-weight: 600; z-index: 500;
  box-shadow: 0 12px 40px rgba(0,0,0,.25); opacity: 0;
  transition: opacity .25s, transform .25s var(--ease); pointer-events: none;
  max-width: min(90vw, 360px); text-align: center;
}
@media (min-width: 900px) { .toast { bottom: 2rem; } }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast[hidden] { display: none; }
.toast.show[hidden] { display: block; }
