:root {
  --paper: #FAFBF9;
  --card: #FFFFFF;
  --ink: #10312D;
  --sub: #4C6762;
  --accent: #0E7C7B;
  --accent-deep: #0A5958;
  --accent-soft: #E4F1EE;
  --mist: #DCE9E4;
  --gold: #C9A25E;
  --gold-deep: #8A6D2F;
  --red: #B4472F;
  --shadow: 0 10px 30px rgba(16, 49, 45, .08);
  --shadow-lg: 0 24px 60px rgba(16, 49, 45, .16);
  --radius: 14px;
  --ease: cubic-bezier(.22, .8, .3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 16px/1.65 "Instrument Sans", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; }
a { color: var(--accent-deep); }
h1, h2, h3 {
  font-family: "Bricolage Grotesque", "Instrument Sans", sans-serif;
  line-height: 1.12;
  text-wrap: balance;
  margin: 0 0 .45em;
}
h1 { font-size: clamp(2.3rem, 5.6vw, 3.6rem); font-weight: 700; letter-spacing: -.01em; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.2rem); font-weight: 700; }
h3 { font-size: 1.1rem; font-weight: 600; }
h1 em, h2 em { font-style: normal; color: var(--accent); position: relative; white-space: nowrap; }
h1 em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .04em; height: .12em;
  background: var(--gold); border-radius: 99px; opacity: .55;
  transform: scaleX(0); transform-origin: left;
  animation: underline .7s var(--ease) .6s forwards;
}
@keyframes underline { to { transform: scaleX(1); } }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .74rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase;
  color: var(--accent-deep); background: var(--accent-soft);
  padding: 6px 14px; border-radius: 99px; margin: 0 0 18px;
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 99px; background: var(--gold); }

/* ---------- Header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--mist);
}
.site-head .wrap { display: flex; align-items: center; gap: 18px; height: 64px; }
.logo {
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: 1.12rem;
  color: var(--ink); text-decoration: none; letter-spacing: -.01em; white-space: nowrap;
}
.logo span { color: var(--accent); }
.nav { display: flex; gap: 4px; margin-left: auto; overflow-x: auto; scrollbar-width: none; }
.nav::-webkit-scrollbar { display: none; }
.nav a {
  font-size: .86rem; font-weight: 500; color: var(--sub); text-decoration: none;
  padding: 7px 11px; border-radius: 8px; white-space: nowrap;
  transition: color .2s, background .2s;
}
.nav a:hover { color: var(--accent-deep); background: var(--accent-soft); }
.nav a[aria-current="page"] { color: var(--accent-deep); background: var(--accent-soft); }
.head-cta { margin-left: 8px; flex-shrink: 0; }
@media (max-width: 860px) { .head-cta .btn { padding: 9px 16px; font-size: .82rem; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: "Instrument Sans", sans-serif; font-weight: 600; font-size: .95rem;
  padding: 13px 26px; border-radius: 99px; border: 0; cursor: pointer;
  text-decoration: none; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
  will-change: transform;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 6px 18px rgba(14, 124, 123, .32); }
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(14, 124, 123, .38); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: transparent; color: var(--accent-deep);
  box-shadow: inset 0 0 0 1.5px var(--mist);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--accent); transform: translateY(-2px); }
.btn-wa { background: #1FA855; color: #fff; box-shadow: 0 6px 18px rgba(31, 168, 85, .3); }
.btn-wa:hover { background: #178A45; transform: translateY(-2px); }
.btn svg { flex-shrink: 0; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 72px 0 72px; }
.hero .wrap {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.hero p.sub { font-size: 1.13rem; color: var(--sub); max-width: 54ch; margin: 0 0 28px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 30px; }
.hero-media { position: relative; }
.hero-media img {
  display: block; width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover; object-position: center 32%;
  border-radius: 24px; box-shadow: var(--shadow-lg);
}
.hero-media::before {
  content: ""; position: absolute; inset: -14px -14px auto auto; width: 120px; height: 120px;
  border-radius: 28px; background: var(--gold); opacity: .22; z-index: -1;
  transform: rotate(8deg);
}
.hero-badge {
  position: absolute; left: -16px; bottom: 22px;
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--card); border: 1px solid var(--mist); border-radius: 99px;
  padding: 11px 18px; font-size: .86rem; font-weight: 600; color: var(--ink);
  box-shadow: var(--shadow-lg);
  animation: floaty 5s ease-in-out infinite;
}
.hero-badge .bico {
  width: 28px; height: 28px; border-radius: 99px; background: var(--accent-soft);
  color: var(--accent-deep); display: grid; place-items: center; flex-shrink: 0;
}
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@media (max-width: 880px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 36px; }
  .hero-media { order: 2; }
  .hero-media img { aspect-ratio: 16 / 11; }
  .hero-badge { left: 12px; bottom: 14px; }
}
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .8rem; font-weight: 500; color: var(--sub);
  background: var(--card); border: 1px solid var(--mist); border-radius: 99px; padding: 7px 14px;
}
.chip svg { color: var(--accent); }
.blob {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; pointer-events: none;
  animation: drift 14s ease-in-out infinite alternate;
}
.blob-a { width: 480px; height: 480px; background: #BFE3DC; top: -180px; right: -120px; }
.blob-b { width: 380px; height: 380px; background: #EBDDBE; bottom: -160px; left: -120px; animation-delay: -7s; }
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-40px, 30px) scale(1.12); }
}
.urgent-bar {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px;
  background: #FBEDE8; color: var(--red); border-radius: 99px;
  font-size: .82rem; font-weight: 600; padding: 7px 16px;
}
.urgent-bar .dot { width: 8px; height: 8px; border-radius: 99px; background: var(--red); animation: pulse 1.6s ease-in-out infinite; }
.urgent-bar.announce { background: var(--accent-soft); color: var(--accent-deep); }
.urgent-bar.announce .dot { background: var(--accent); }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(.75); } }

/* ---------- Sections ---------- */
section { padding: 72px 0; }
section.tint { background: var(--accent-soft); }
.sec-head { max-width: 640px; margin: 0 auto 44px; text-align: center; }
.sec-head p { color: var(--sub); margin: 0; }

/* stats */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.stat {
  background: var(--card); border: 1px solid var(--mist); border-radius: var(--radius);
  padding: 26px 20px; text-align: center;
}
.stat b {
  display: block; font-family: "Bricolage Grotesque", sans-serif; font-weight: 700;
  font-size: 2.3rem; color: var(--accent-deep); font-variant-numeric: tabular-nums; line-height: 1;
}
.stat span { display: block; margin-top: 8px; font-size: .86rem; color: var(--sub); }

/* cards */
.grid3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 20px; }
.card {
  background: var(--card); border: 1px solid var(--mist); border-radius: var(--radius);
  padding: 28px 26px; box-shadow: var(--shadow);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card .ico {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent-deep); margin-bottom: 16px;
}
.card p { color: var(--sub); margin: .4em 0 0; font-size: .95rem; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; counter-reset: step; }
.step {
  position: relative; background: var(--card); border: 1px solid var(--mist);
  border-radius: var(--radius); padding: 26px 22px 22px; counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: .9rem;
  color: var(--gold-deep); background: #F5EDDC; border-radius: 8px;
  padding: 4px 9px; display: inline-block; margin-bottom: 14px;
}
.step p { color: var(--sub); font-size: .92rem; margin: .3em 0 0; }

/* offer */
.offer {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center;
  background: linear-gradient(120deg, #103733, #0E5251);
  border-radius: 20px; padding: 52px; color: #F2F8F5; box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.offer::after {
  content: ""; position: absolute; width: 340px; height: 340px; border-radius: 50%;
  background: rgba(201, 162, 94, .18); filter: blur(60px); right: -80px; top: -80px;
}
.offer .label {
  display: inline-block; font-size: .72rem; font-weight: 600; letter-spacing: .13em;
  text-transform: uppercase; color: #EBD9AE; margin-bottom: 14px;
}
.offer h2 { color: #fff; }
.offer p { color: #C6DAD3; margin: .4em 0 0; }
.offer .note { font-size: .8rem; color: #9DBBB2; margin-top: 18px; }
.offer-cta { position: relative; z-index: 1; text-align: center; }
.offer-cta .btn { width: 100%; max-width: 300px; }
.offer-cta .or { display: block; margin: 12px 0; font-size: .8rem; color: #9DBBB2; }
@media (max-width: 760px) { .offer { grid-template-columns: 1fr; padding: 36px 28px; } }

/* hub cards */
.hub-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; }
a.hub-card {
  display: block; text-decoration: none; color: var(--ink);
  background: var(--card); border: 1px solid var(--mist); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
a.hub-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
a.hub-card h3 { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
a.hub-card h3 .arrow { color: var(--accent); transition: transform .3s var(--ease); }
a.hub-card:hover h3 .arrow { transform: translateX(5px); }
a.hub-card p { color: var(--sub); font-size: .92rem; margin: .35em 0 0; }

/* faq */
.faq { max-width: 720px; margin: 0 auto; }
.faq details {
  background: var(--card); border: 1px solid var(--mist); border-radius: 12px;
  margin-bottom: 12px; overflow: hidden; transition: box-shadow .25s;
}
.faq details[open] { box-shadow: var(--shadow); }
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 18px 22px; font-weight: 600; font-size: .98rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-family: "Bricolage Grotesque", sans-serif; font-size: 1.3rem;
  color: var(--accent); transition: transform .3s var(--ease); line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .a { padding: 0 22px 20px; color: var(--sub); font-size: .95rem; }

/* about — editorial deep-dive */
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: start; }
.about-intro { position: sticky; top: 92px; }
.about-intro .lead { font-size: 1.08rem; color: var(--sub); margin: .6em 0 0; }
.about-items { display: grid; gap: 14px; }
.about-items .card h3 { display: flex; gap: 12px; align-items: baseline; }
.about-items .card h3::before {
  content: ""; width: 10px; height: 10px; border-radius: 3px; background: var(--gold);
  flex-shrink: 0; transform: rotate(45deg) translateY(-1px);
}
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; gap: 28px; } .about-intro { position: static; } }

/* candidates — twin checklists */
.cand-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.cand { border-radius: var(--radius); padding: 30px 28px; }
.cand.yes { background: var(--card); border: 1px solid var(--mist); box-shadow: var(--shadow); }
.cand.maybe { background: var(--tint); border: 1px solid var(--mist); }
.cand h3 { margin-bottom: 14px; }
.cand ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.cand li { display: flex; gap: 11px; align-items: flex-start; font-size: .95rem; color: var(--sub); }
.cand li .tick {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 99px; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent-deep); margin-top: 1px;
}
.cand.maybe li .tick { background: #F5EDDC; color: var(--gold-deep); }
@media (max-width: 760px) { .cand-grid { grid-template-columns: 1fr; } }

/* comparison table */
.cmp-wrap { overflow-x: auto; border: 1px solid var(--mist); border-radius: var(--radius); box-shadow: var(--shadow); }
table.cmp { border-collapse: collapse; width: 100%; min-width: 640px; background: var(--card); font-size: .93rem; }
.cmp th {
  font-family: "Bricolage Grotesque", sans-serif; font-size: .95rem; font-weight: 700;
  text-align: left; padding: 16px 18px; border-bottom: 2px solid var(--mist); color: var(--ink);
}
.cmp td { padding: 14px 18px; border-bottom: 1px solid var(--mist); color: var(--sub); vertical-align: top; }
.cmp tr:last-child td { border-bottom: none; }
.cmp td:first-child { font-weight: 600; color: var(--ink); }
.cmp .hl { background: var(--accent-soft); }
.cmp th.hl { color: var(--accent-deep); }
.cmp tr:hover td { background: color-mix(in srgb, var(--tint) 55%, transparent); }
.cmp tr:hover td.hl { background: color-mix(in srgb, var(--accent-soft) 82%, var(--accent) 6%); }

/* cost — factors + included */
.cost-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; align-items: start; }
.cost-factors { display: grid; gap: 14px; }
.cost-factors .card { padding: 24px 24px; }
.cost-factors .card h3 { display: flex; align-items: baseline; gap: 10px; }
.included {
  background: linear-gradient(150deg, #103733, #0E5251); color: #F2F8F5;
  border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-lg);
  position: sticky; top: 92px;
}
.included h3 { color: #EBD9AE; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.included ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.included li { display: flex; gap: 11px; align-items: flex-start; font-size: .93rem; color: #D7E6E0; }
.included li .tick {
  flex-shrink: 0; width: 21px; height: 21px; border-radius: 99px; display: grid; place-items: center;
  background: rgba(255, 255, 255, .14); color: #A9E2D6; margin-top: 1px;
}
@media (max-width: 820px) { .cost-grid { grid-template-columns: 1fr; } .included { position: static; } }

/* care — aftercare timeline */
.timeline { max-width: 760px; margin: 0 auto; display: grid; gap: 0; }
.t-item { position: relative; padding: 0 0 30px 44px; }
.t-item::before {
  content: ""; position: absolute; left: 10px; top: 6px; bottom: -6px; width: 2px;
  background: var(--mist);
}
.t-item:last-child::before { display: none; }
.t-item::after {
  content: ""; position: absolute; left: 4px; top: 6px; width: 14px; height: 14px;
  border-radius: 99px; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft);
}
.t-item .when {
  font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-deep);
}
.t-item h3 { margin: 4px 0 4px; }
.t-item p { color: var(--sub); font-size: .95rem; margin: 0; max-width: 62ch; }

/* standards band */
.standards { background: linear-gradient(150deg, #103733, #0E5251); color: #F2F8F5; }
.standards .sec-head h2 { color: #fff; }
.standards .sec-head p { color: #A9C4BC; }
.standards .sec-head .eyebrow { background: rgba(255, 255, 255, .1); color: #EBD9AE; }
.std-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.std {
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px; padding: 22px 22px; transition: background .3s, transform .3s var(--ease);
}
.std:hover { background: rgba(255, 255, 255, .1); transform: translateY(-3px); }
.std h3 { color: #fff; display: flex; gap: 10px; align-items: center; font-size: 1rem; }
.std h3 .tick {
  width: 24px; height: 24px; border-radius: 99px; display: grid; place-items: center;
  background: rgba(169, 226, 214, .18); color: #A9E2D6; flex-shrink: 0;
}
.std p { color: #B9CFC8; font-size: .89rem; margin: .45em 0 0; }

/* team — meet the dentists */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.doc {
  background: var(--card); border: 1px solid var(--mist); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex; flex-direction: column;
}
.doc:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.doc-media {
  position: relative; aspect-ratio: 4 / 3.1; overflow: hidden;
  background: linear-gradient(160deg, var(--accent-soft), #F3F8F1 70%);
  display: grid; place-items: end center;
}
.doc-media img {
  width: 72%; max-height: 96%; object-fit: contain; object-position: bottom;
  transition: transform .45s var(--ease);
}
.doc:hover .doc-media img { transform: scale(1.04); }
.doc-media .mono {
  align-self: center;
  width: 110px; height: 110px; border-radius: 99px; display: grid; place-items: center;
  background: var(--accent); color: #fff;
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: 2.2rem;
  box-shadow: 0 12px 28px rgba(14, 124, 123, .35);
}
.doc-lead {
  position: absolute; top: 12px; left: 12px;
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--ink); color: #EBD9AE;
  font-size: .68rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 99px; box-shadow: var(--shadow);
}
.doc-lead::before { content: ""; width: 6px; height: 6px; border-radius: 99px; background: var(--gold); }
.doc-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.doc-body h3 { margin: 0; font-size: 1.08rem; }
.doc-role { font-size: .8rem; font-weight: 600; color: var(--accent-deep); letter-spacing: .02em; }
.doc-bio { font-size: .88rem; color: var(--sub); margin: 4px 0 0; }
.doc-years {
  align-self: flex-start; margin-top: auto; padding-top: 12px;
  font-size: .76rem; font-weight: 600; color: var(--gold-deep);
}
.team-note {
  margin-top: 26px; text-align: center; font-size: .88rem; color: var(--sub);
}
.team-note b { color: var(--ink); }

/* trust section with image */
.trust-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 44px; align-items: center; }
.trust-media { position: relative; height: 100%; }
.trust-media img {
  display: block; width: 100%; height: 100%; min-height: 380px; max-height: 560px;
  object-fit: cover; object-position: center 35%; border-radius: 20px; box-shadow: var(--shadow-lg);
}
.trust-media::after {
  content: ""; position: absolute; inset: auto auto -14px -14px; width: 110px; height: 110px;
  border-radius: 26px; background: var(--accent); opacity: .16; z-index: -1; transform: rotate(-7deg);
}
.trust-points { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.trust-points .card { padding: 22px 20px; }
.trust-points .card p { font-size: .88rem; }
@media (max-width: 880px) {
  .trust-grid { grid-template-columns: 1fr; }
  .trust-media img { min-height: 0; aspect-ratio: 16 / 10; }
}
@media (max-width: 560px) { .trust-points { grid-template-columns: 1fr; } }

/* locations */
.locs { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.loc { background: var(--card); border: 1px solid var(--mist); border-radius: var(--radius); padding: 24px; }
.loc b { font-family: "Bricolage Grotesque", sans-serif; font-size: 1.05rem; }
.loc p { color: var(--sub); font-size: .9rem; margin: .3em 0 0; }

/* final cta */
.final { text-align: center; }
.final .btn { margin-top: 8px; }

/* footer */
footer { border-top: 1px solid var(--mist); padding: 40px 0 110px; }
footer .wrap { display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; color: var(--sub); font-size: .85rem; }
footer a { color: var(--sub); }
footer .fine { flex-basis: 100%; font-size: .76rem; color: #7E9992; }

/* ---------- Reveal micro-animations ---------- */
.rv { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .08s; } .rv-d2 { transition-delay: .16s; } .rv-d3 { transition-delay: .24s; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
  display: none; gap: 10px; padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--card) 92%, transparent);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--mist);
  transform: translateY(110%); transition: transform .45s var(--ease);
}
.sticky-cta.show { transform: none; }
.sticky-cta .btn { flex: 1; padding: 12px 10px; font-size: .88rem; }
@media (max-width: 760px) { .sticky-cta { display: flex; } footer { padding-bottom: 130px; } }

/* ---------- Modal ---------- */
.modal-veil {
  position: fixed; inset: 0; z-index: 60; background: rgba(10, 31, 28, .55);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: grid; place-items: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity .3s var(--ease);
}
.modal-veil.open { opacity: 1; pointer-events: auto; }
.modal {
  position: relative; width: 100%; max-width: 460px; max-height: 90vh; overflow-y: auto;
  background: var(--card); border-radius: 20px; padding: 34px 32px;
  box-shadow: var(--shadow-lg);
  transform: translateY(24px) scale(.96); transition: transform .35s var(--ease);
}
.modal-veil.open .modal { transform: none; }
.modal h3 { font-size: 1.45rem; margin-bottom: 4px; }
.modal .msub { color: var(--sub); font-size: .92rem; margin: 0 0 20px; }
.modal-close {
  position: absolute; top: 16px; right: 16px; width: 38px; height: 38px;
  border-radius: 99px; border: 0; background: var(--accent-soft); color: var(--accent-deep);
  font-size: 1.2rem; cursor: pointer; display: grid; place-items: center;
  transition: background .2s;
}
.modal-close:hover { background: var(--mist); }
.modal form { display: grid; gap: 13px; }
.field label { display: block; font-size: .8rem; font-weight: 600; margin-bottom: 5px; color: var(--ink); }
.field input, .field select {
  width: 100%; font: inherit; color: var(--ink); background: var(--paper);
  border: 1.5px solid var(--mist); border-radius: 10px; padding: 11px 14px;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(14, 124, 123, .15);
}
.modal .btn { width: 100%; margin-top: 4px; }
.modal .alt { text-align: center; font-size: .84rem; color: var(--sub); margin: 14px 0 0; }
.modal .alt a { font-weight: 600; }
.modal .privacy { font-size: .72rem; color: #7E9992; text-align: center; margin: 12px 0 0; }
.modal .success { display: none; text-align: center; padding: 18px 0 6px; }
.modal .success .tick {
  width: 62px; height: 62px; margin: 0 auto 16px; border-radius: 99px;
  background: var(--accent-soft); color: var(--accent-deep); display: grid; place-items: center;
}
.modal.sent form, .modal.sent .msub { display: none; }
.modal.sent .success { display: block; animation: fadeup .5s var(--ease); }
@keyframes fadeup { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* WhatsApp float */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 44;
  width: 56px; height: 56px; border-radius: 99px; background: #1FA855; color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 26px rgba(31, 168, 85, .4);
  transition: transform .3s var(--ease);
}
.wa-float:hover { transform: scale(1.1) rotate(6deg); }
@media (max-width: 760px) { .wa-float { bottom: 84px; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .rv { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
