/* ============================================================================
   BEEN THERE CLEANED THAT — STYLES
   Palette: white → light blue → blue accents. Bright, clean, hygienic.
   ============================================================================ */

:root {
  --white: #ffffff;
  --bg: #eff8fc;
  --blue-100: #ddf1f8;
  --blue-050: #f2fafd;
  --accent: #159ac4;
  --accent-600: #0f83a8;
  --accent-700: #0c6c8c;
  --ink: #12313d;
  --muted: #55717b;
  --green: #21a97a;
  --green-050: #e7f8f1;

  --ring: rgba(21, 154, 196, 0.35);
  --shadow-sm: 0 1px 2px rgba(18, 49, 61, 0.05);
  --shadow-md: 0 6px 20px rgba(18, 49, 61, 0.08);
  --shadow-lg: 0 18px 44px rgba(18, 49, 61, 0.12);
  --shadow-blue: 0 14px 30px rgba(21, 154, 196, 0.22);

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  --maxw: 1120px;
  --gutter: clamp(20px, 5vw, 40px);
  --nav-h: 68px;

  --font-display: "Bricolage Grotesque", "Hanken Grotesk", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 700;
}

p { margin: 0; }
img, svg { max-width: 100%; display: block; }
a { color: var(--accent-700); }

.is-placeholder { color: var(--accent); opacity: 0.75; font-style: italic; }

/* ---------- layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(56px, 8vw, 104px);
  position: relative;
}
.section--tint { background: var(--white); }
.section--soft { background: var(--blue-100); }

.section-head {
  max-width: 640px;
  margin: 0 auto clamp(32px, 5vw, 52px);
  text-align: center;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-600);
  background: var(--blue-100);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.section--tint .eyebrow { background: var(--bg); }
.section-title { font-size: clamp(1.7rem, 4.4vw, 2.7rem); }
.section-sub {
  margin-top: 14px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.12rem);
}

/* ---------- buttons ---------- */
.btn {
  --_bg: var(--accent);
  --_fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: 15px 24px;
  min-height: 52px;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  background: var(--_bg);
  color: var(--_fg);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease,
    background 0.16s ease, border-color 0.16s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--ring);
}

.btn--primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-blue); }
.btn--primary:hover { background: var(--accent-600); }

.btn--outline {
  background: #fff;
  color: var(--accent-700);
  border-color: var(--blue-100);
  box-shadow: var(--shadow-sm);
}
.btn--outline:hover { border-color: var(--accent); color: var(--accent-700); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  padding-inline: 14px;
}
.btn--ghost:hover { color: var(--accent-700); transform: none; }

.btn--lg { min-height: 58px; font-size: 1.06rem; padding-inline: 30px; }
.btn--block { width: 100%; }
.btn--confirm { background: var(--green); box-shadow: 0 14px 30px rgba(33, 169, 122, 0.28); }
.btn--confirm:hover { background: #1c9068; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; box-shadow: none; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.nav--scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--blue-100);
}
.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.06rem;
  letter-spacing: -0.02em;
  margin-right: auto;
}
.brand-mark { width: 34px; height: 34px; flex: none; object-fit: contain; display: block; }
.brand-name { line-height: 1.05; }
.brand-name small {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.66rem;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.96rem;
  transition: background 0.16s ease, color 0.16s ease;
}
.nav-link:hover { background: var(--bg); color: var(--accent-700); }
.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--blue-100);
  background: #fff;
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; top: -6px; left: 0; }
.nav-toggle span::after { position: absolute; top: 6px; left: 0; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: #fff;
    padding: 16px var(--gutter) 24px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  .nav-menu.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-link { padding: 14px 12px; font-size: 1.05rem; border-radius: 12px; }
  .nav-cta { margin: 10px 0 0; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding-block: clamp(40px, 6vw, 72px) clamp(48px, 7vw, 88px);
  background:
    radial-gradient(120% 90% at 90% 0%, var(--blue-100) 0%, rgba(221,241,248,0) 55%),
    var(--bg);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(24px, 5vw, 56px);
}
.hero-copy { max-width: 560px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--blue-100);
  color: var(--accent-700);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 7px 14px 7px 10px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
}
.hero h1 {
  font-size: clamp(2.4rem, 6.4vw, 4rem);
  letter-spacing: -0.03em;
}
.hero h1 .accent { color: var(--accent); }
.hero-lead {
  margin-top: 18px;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: var(--muted);
  max-width: 46ch;
}
.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-trust {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}
.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}
.hero-trust .tick {
  width: 22px; height: 22px; flex: none;
  display: grid; place-items: center;
  background: var(--green-050);
  color: var(--green);
  border-radius: 50%;
}
.hero-trust .tick svg { width: 13px; height: 13px; }

/* Hero visual: original SVG bin illustration */
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}
.hero-art {
  width: min(420px, 92%);
  filter: drop-shadow(0 24px 40px rgba(18, 49, 61, 0.16));
}
.shine {
  transform-origin: center;
  animation: shine 3.6s ease-in-out infinite;
}
.shine.s2 { animation-delay: 1.2s; }
.shine.s3 { animation-delay: 2.2s; }
@keyframes shine {
  0%, 100% { opacity: 0; transform: scale(0.6); }
  40% { opacity: 1; transform: scale(1); }
  70% { opacity: 0; transform: scale(1.1); }
}
.drop { animation: drop 3s ease-in infinite; }
.drop.d2 { animation-delay: 0.8s; }
.drop.d3 { animation-delay: 1.6s; }
@keyframes drop {
  0% { opacity: 0; transform: translateY(-6px); }
  20% { opacity: 0.9; }
  100% { opacity: 0; transform: translateY(26px); }
}
@media (prefers-reduced-motion: reduce) {
  .shine, .drop { animation: none; opacity: 0.9; }
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; text-align: left; }
  .hero-visual { order: -1; margin-bottom: 8px; }
  .hero-art { width: min(300px, 74%); }
  .hero-actions .btn { flex: 1 1 auto; }
}

/* ============================================================
   BOOKING WIDGET
   ============================================================ */
.booking { background: var(--white); }
.booking-shell {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}
.booking-pitch { padding-top: 10px; }
.booking-pitch h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); }
.booking-pitch p { margin-top: 14px; color: var(--muted); }
.booking-pitch .mini-list {
  list-style: none; padding: 0; margin: 22px 0 0;
  display: grid; gap: 12px;
}
.booking-pitch .mini-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-weight: 500;
}
.booking-pitch .mini-list .n {
  flex: none; width: 28px; height: 28px; border-radius: 50%;
  background: var(--blue-100); color: var(--accent-700);
  display: grid; place-items: center; font-weight: 800; font-size: 0.9rem;
  font-family: var(--font-display);
}

.booking-card {
  background: #fff;
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(20px, 3vw, 30px);
}
.booking-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.booking-top .step-label { font-weight: 700; color: var(--muted); font-size: 0.85rem; }
.booking-top .step-brand { font-family: var(--font-display); font-weight: 800; color: var(--accent); }
.progress {
  height: 7px; background: var(--bg); border-radius: 999px;
  overflow: hidden; margin-bottom: 24px;
}
.progress-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-600));
  border-radius: 999px;
  transition: width 0.3s ease;
}

.book-q { font-size: 1.24rem; margin-bottom: 16px; }
.book-q--sub { font-size: 1.05rem; margin-top: 22px; }
.book-note {
  margin-top: 16px; font-size: 0.86rem; color: var(--muted);
  background: var(--blue-050); padding: 10px 14px; border-radius: 12px;
}
.book-error { color: #c0392b; font-weight: 600; margin-top: 12px; }

/* Shown when a booking request could not be delivered, so the customer still
   has a way to reach the business instead of assuming they're booked. */
.book-note--warn {
  background: #fdf3e7; color: #7a4a12; text-align: left;
  border: 1px solid #f0d3ac;
}
.book-note--warn a { color: #7a4a12; font-weight: 700; text-decoration: underline; }

.choice-grid { display: grid; gap: 12px; }
.choice-grid--3 { grid-template-columns: repeat(3, 1fr); }
.choice-grid--4 { grid-template-columns: repeat(4, 1fr); }
.choice-card {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 20px 12px;
  border: 2px solid var(--blue-100);
  background: #fff;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-body);
  transition: border-color 0.16s ease, background 0.16s ease, transform 0.12s ease;
  min-height: 96px;
  justify-content: center;
}
.choice-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.choice-card:focus-visible { outline: none; box-shadow: 0 0 0 4px var(--ring); }
.choice-card.is-selected {
  border-color: var(--accent);
  background: var(--blue-050);
  box-shadow: inset 0 0 0 1px var(--accent);
}
.choice-icon { font-size: 1.7rem; line-height: 1; }
.choice-label { font-weight: 700; font-size: 1.02rem; }

.choice-list { display: grid; gap: 12px; }
.plan-option {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 18px;
  border: 2px solid var(--blue-100);
  background: #fff;
  border-radius: var(--radius);
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  transition: border-color 0.16s ease, background 0.16s ease;
}
.plan-option:hover { border-color: var(--accent); }
.plan-option:focus-visible { outline: none; box-shadow: 0 0 0 4px var(--ring); }
.plan-option.is-selected { border-color: var(--accent); background: var(--blue-050); }
.plan-option-name { display: block; font-weight: 700; font-size: 1.04rem; }
.plan-option-blurb { display: block; color: var(--muted); font-size: 0.86rem; margin-top: 2px; }
.plan-option-price { font-family: var(--font-display); font-weight: 800; color: var(--accent-700); white-space: nowrap; }
.plan-option-price small { font-weight: 600; color: var(--muted); font-size: 0.72rem; display: block; }

.date-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
  gap: 10px;
}
.date-chip {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 12px 6px;
  border: 2px solid var(--blue-100); background: #fff;
  border-radius: 14px; cursor: pointer; font-family: var(--font-body);
  transition: border-color 0.16s ease, background 0.16s ease;
}
.date-chip:hover { border-color: var(--accent); }
.date-chip:focus-visible { outline: none; box-shadow: 0 0 0 4px var(--ring); }
.date-chip.is-selected { border-color: var(--accent); background: var(--blue-050); }
.date-dow { font-size: 0.72rem; color: var(--muted); font-weight: 700; text-transform: uppercase; }
.date-num { font-size: 1.3rem; font-weight: 800; font-family: var(--font-display); }
.date-mon { font-size: 0.72rem; color: var(--muted); font-weight: 600; }

.slot-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.slot-chip {
  padding: 14px 12px; border: 2px solid var(--blue-100); background: #fff;
  border-radius: 14px; cursor: pointer; font-weight: 700; font-family: var(--font-body);
  transition: border-color 0.16s ease, background 0.16s ease;
}
.slot-chip:hover { border-color: var(--accent); }
.slot-chip:focus-visible { outline: none; box-shadow: 0 0 0 4px var(--ring); }
.slot-chip.is-selected { border-color: var(--accent); background: var(--blue-050); }

.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field-label { font-weight: 700; font-size: 0.86rem; color: var(--ink); }
.field-input {
  font-family: var(--font-body); font-size: 1rem;
  padding: 13px 15px;
  border: 2px solid var(--blue-100); border-radius: 12px;
  background: #fff; color: var(--ink);
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
  min-height: 50px;
}
.field-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--ring); }

.summary { display: grid; gap: 2px; margin: 0; }
.summary > div {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 12px 2px; border-bottom: 1px solid var(--bg);
}
.summary dt { color: var(--muted); font-weight: 600; margin: 0; }
.summary dd { margin: 0; font-weight: 700; text-align: right; }
.summary-total { border-bottom: none !important; }
.summary-total dt, .summary-total dd { font-size: 1.15rem; }
.summary-total dd { color: var(--accent-700); font-family: var(--font-display); }

.booking-nav {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; margin-top: 24px;
}
.booking-nav .btn { flex: 1 1 auto; }
#bookBack { flex: 0 0 auto; }

/* confirmation */
.confirm { text-align: center; padding: 8px 0 4px; }
.confirm-check {
  width: 74px; height: 74px; margin: 0 auto 18px;
}
.confirm-check svg { width: 74px; height: 74px; }
.confirm-check circle { stroke: var(--green); stroke-width: 3; }
.confirm-check path { stroke: var(--green); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }
.confirm-animate .confirm-check circle {
  stroke-dasharray: 151; stroke-dashoffset: 151;
  animation: draw 0.5s ease forwards;
}
.confirm-animate .confirm-check path {
  stroke-dasharray: 48; stroke-dashoffset: 48;
  animation: draw 0.4s 0.35s ease forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }
.confirm-title { font-size: 1.6rem; }
.confirm-text { margin-top: 10px; color: var(--muted); max-width: 42ch; margin-inline: auto; }
.summary--confirm { max-width: 380px; margin: 22px auto 0; text-align: left; }
.confirm-actions { margin-top: 22px; }

@media (max-width: 860px) {
  .booking-shell { grid-template-columns: 1fr; }
  .choice-grid--3, .field-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .choice-grid--4 { grid-template-columns: repeat(4, 1fr); }
  .plan-option { flex-direction: column; align-items: flex-start; gap: 8px; }
  .plan-option-price { align-self: flex-end; }
}

/* ============================================================
   WHY / PROBLEM
   ============================================================ */
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 56px); align-items: center;
}
.why-copy h2 { font-size: clamp(1.6rem, 3.6vw, 2.4rem); }
.why-copy p.lead { margin-top: 16px; color: var(--muted); font-size: 1.08rem; }
.why-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.why-list li { display: flex; gap: 12px; align-items: center; font-weight: 500; }
.why-list .bullet {
  flex: none; width: 26px; height: 26px; border-radius: 8px;
  background: var(--blue-100); color: var(--accent-700);
  display: grid; place-items: center;
}
.why-list .bullet svg { width: 15px; height: 15px; }
.why-visual { display: grid; place-items: center; }
.why-art { width: min(380px, 90%); filter: drop-shadow(0 18px 34px rgba(18,49,61,0.12)); }
@media (max-width: 760px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { order: -1; }
  .why-art { width: min(280px, 70%); }
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 28px);
}
.step-card {
  background: #fff; border: 1px solid var(--blue-100);
  border-radius: var(--radius-lg); padding: 30px 26px;
  box-shadow: var(--shadow-sm); text-align: center;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num {
  position: absolute; top: 18px; right: 20px;
  font-family: var(--font-display); font-weight: 800; font-size: 2.4rem;
  color: var(--blue-100); line-height: 1;
}
.step-ico {
  width: 68px; height: 68px; margin: 0 auto 18px;
  border-radius: 20px; background: var(--blue-050);
  display: grid; place-items: center; color: var(--accent);
}
.step-ico svg { width: 34px; height: 34px; }
.step-card h3 { font-size: 1.2rem; }
.step-card p { margin-top: 10px; color: var(--muted); }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }

/* ============================================================
   SERVICES
   ============================================================ */
.svc-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2.4vw, 22px);
}
.svc-card {
  background: #fff; border: 1px solid var(--blue-100);
  border-radius: var(--radius); padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-100); }
.svc-emoji {
  width: 54px; height: 54px; border-radius: 16px;
  background: var(--bg); display: grid; place-items: center;
  font-size: 1.6rem; margin-bottom: 16px;
}
.svc-card h3 { font-size: 1.14rem; }
.svc-card p { margin-top: 8px; color: var(--muted); font-size: 0.96rem; }
@media (max-width: 900px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .svc-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.6vw, 26px); align-items: stretch;
}
.price-card {
  position: relative;
  background: #fff; border: 1px solid var(--blue-100);
  border-radius: var(--radius-lg); padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card--featured {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-blue);
}
.price-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-weight: 700; font-size: 0.76rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; white-space: nowrap;
}
.price-name { font-size: 1.28rem; }
.price-blurb { margin-top: 8px; color: var(--muted); font-size: 0.94rem; min-height: 42px; }
.price-amount { margin: 16px 0 4px; display: flex; align-items: baseline; gap: 8px; }
.price-num { font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; color: var(--ink); letter-spacing: -0.03em; }
.price-unit { color: var(--muted); font-weight: 600; font-size: 0.9rem; }
.price-feats { list-style: none; padding: 0; margin: 16px 0 24px; display: grid; gap: 10px; }
.price-feats li { display: flex; gap: 10px; align-items: center; color: var(--ink); font-size: 0.96rem; }
.price-feats li::before {
  content: ""; flex: none; width: 18px; height: 18px; border-radius: 50%;
  background: var(--green-050) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%2321a97a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/12px no-repeat;
}
.price-card .btn { margin-top: auto; }
.pricing-foot { text-align: center; margin-top: 30px; color: var(--muted); }
.pricing-foot strong { color: var(--ink); }
.pricing-promo {
  display: inline-block; margin-bottom: 14px;
  background: var(--green-050); color: #1c855f; font-weight: 700;
  padding: 8px 18px; border-radius: 999px;
}
@media (max-width: 860px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .price-blurb { min-height: 0; }
}

/* ============================================================
   RECURRING COMPARISON
   ============================================================ */
.compare {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 3vw, 24px); max-width: 860px; margin-inline: auto;
}
.compare-card {
  background: #fff; border: 1px solid var(--blue-100);
  border-radius: var(--radius-lg); padding: 30px 28px; box-shadow: var(--shadow-sm);
}
.compare-card--hi { border: 2px solid var(--accent); box-shadow: var(--shadow-blue); }
.compare-card h3 { font-size: 1.24rem; display: flex; align-items: center; gap: 10px; }
.compare-tag {
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
  background: var(--accent); color: #fff; padding: 4px 10px; border-radius: 999px;
}
.compare-card ul { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
.compare-card li { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); }
.compare-card li .ci { flex: none; margin-top: 2px; color: var(--accent); }
@media (max-width: 640px) { .compare { grid-template-columns: 1fr; } }
.policy-grid { grid-template-columns: 1fr 1fr 1fr; max-width: 1040px; }
@media (max-width: 900px) { .policy-grid { grid-template-columns: 1fr; max-width: 640px; } }

/* ============================================================
   BEFORE / AFTER
   ============================================================ */
.ba-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 3vw, 26px); max-width: 820px; margin-inline: auto;
}
.ba-frame {
  aspect-ratio: 4 / 3; border-radius: var(--radius-lg);
  border: 2px dashed var(--accent);
  background: var(--blue-050);
  display: grid; place-items: center; text-align: center;
  color: var(--accent-700); padding: 20px; position: relative;
  overflow: hidden;
}
.ba-frame--after { border-style: solid; border-color: var(--blue-100); background: #fff; }
/* Real photos fill the frame edge-to-edge; solid border once a photo is present */
.ba-frame:has(img) { border-style: solid; padding: 0; }
.ba-frame img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: calc(var(--radius-lg) - 2px); }
.ba-label {
  position: absolute; top: 14px; left: 14px;
  background: #fff; border: 1px solid var(--blue-100);
  font-weight: 700; font-size: 0.78rem; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px; color: var(--accent-700);
}
.ba-inner { display: grid; gap: 8px; place-items: center; }
.ba-inner svg { width: 44px; height: 44px; opacity: 0.6; }
.ba-inner span { font-weight: 700; }
.ba-inner small { color: var(--muted); font-weight: 500; max-width: 24ch; }
.ba-note { text-align: center; margin-top: 22px; color: var(--muted); font-size: 0.92rem; }
@media (max-width: 560px) { .ba-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SERVICE AREA
   ============================================================ */
.area-wrap { max-width: 760px; margin-inline: auto; text-align: center; }
.area-list {
  list-style: none; padding: 0; margin: 8px 0 28px;
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.area-chip {
  background: #fff; border: 1px solid var(--blue-100);
  padding: 9px 18px; border-radius: 999px; font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.area-check {
  background: #fff; border: 1px solid var(--blue-100);
  border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-md);
}
.area-check h3 { font-size: 1.24rem; }
.area-check p { color: var(--muted); margin-top: 6px; }
.check-row { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.check-row input {
  flex: 1 1 220px; min-height: 52px;
  padding: 13px 16px; border: 2px solid var(--blue-100); border-radius: var(--radius-pill);
  font-family: var(--font-body); font-size: 1rem;
}
.check-row input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--ring); }
.check-result { margin-top: 14px; font-weight: 600; min-height: 1.2em; }
.check-result.is-yes { color: var(--green); }
.check-result.is-neutral { color: var(--accent-700); }

/* ============================================================
   COMMERCIAL
   ============================================================ */
.commercial {
  background: linear-gradient(180deg, var(--ink) 0%, #0d2731 100%);
  color: #fff; border-radius: var(--radius-lg);
  padding: clamp(30px, 5vw, 54px);
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 30px; align-items: center;
  max-width: var(--maxw);
}
.commercial h2 { color: #fff; font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
.commercial p { color: rgba(255,255,255,0.78); margin-top: 12px; }
.commercial-tags { list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-wrap: wrap; gap: 8px; }
.commercial-tags li {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.16);
  padding: 6px 14px; border-radius: 999px; font-size: 0.88rem; font-weight: 600;
}
.commercial-cta { text-align: center; }
.commercial-cta .price-line { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; margin-bottom: 6px; }
.commercial-cta .price-line small { display: block; font-family: var(--font-body); font-weight: 600; font-size: 0.8rem; color: rgba(255,255,255,0.7); }
@media (max-width: 760px) { .commercial { grid-template-columns: 1fr; text-align: center; } .commercial-tags { justify-content: center; } }

/* ============================================================
   REVIEWS (placeholder — no fabricated reviews)
   ============================================================ */
.reviews { text-align: center; }
.reviews-badge {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent-700); font-weight: 700; margin-bottom: 12px;
}
.reviews-stars { color: var(--accent); letter-spacing: 2px; }
.reviews-placeholder {
  max-width: 620px; margin: 18px auto 0;
  background: #fff; border: 1.5px dashed var(--blue-100);
  border-radius: var(--radius-lg); padding: 34px 28px;
}
.reviews-placeholder h3 { font-size: 1.4rem; }
.reviews-placeholder p { color: var(--muted); margin-top: 10px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
  background: #fff; border: 1px solid var(--blue-100);
  border-radius: var(--radius); overflow: hidden;
}
.faq-q { margin: 0; }
.faq-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 22px; background: none; border: none; cursor: pointer;
  font-family: var(--font-display); font-weight: 700; font-size: 1.06rem;
  color: var(--ink); text-align: left;
}
.faq-trigger:focus-visible { outline: none; box-shadow: inset 0 0 0 3px var(--ring); border-radius: var(--radius); }
.faq-chevron { width: 22px; height: 22px; flex: none; color: var(--accent); transition: transform 0.24s ease; }
.faq-trigger[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-a { padding: 0 22px 20px; }
.faq-a p { color: var(--muted); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background:
    radial-gradient(120% 120% at 0% 0%, var(--blue-100) 0%, rgba(221,241,248,0) 60%),
    var(--accent);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 64px);
  text-align: center; color: #fff; max-width: var(--maxw);
  position: relative; overflow: hidden;
}
.final-cta h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.final-cta p { color: rgba(255,255,255,0.9); margin-top: 12px; font-size: 1.1rem; }
.final-cta .btn--primary { background: #fff; color: var(--accent-700); box-shadow: var(--shadow-lg); }
.final-cta .btn--primary:hover { background: #fff; }
.final-cta .btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.final-cta .btn--outline:hover { border-color: #fff; color: #fff; }
.final-actions { margin-top: 28px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px); align-items: start;
}
.contact-card {
  background: #fff; border: 1px solid var(--blue-100);
  border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-md);
}
.contact-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 18px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-ico {
  flex: none; width: 44px; height: 44px; border-radius: 12px;
  background: var(--blue-050); color: var(--accent);
  display: grid; place-items: center;
}
.contact-ico svg { width: 22px; height: 22px; }
.contact-list .k { font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.contact-list .v { font-weight: 600; font-size: 1.04rem; color: var(--ink); word-break: break-word; }
.contact-list a.v { color: var(--accent-700); text-decoration: none; }
.contact-list a.v:hover { text-decoration: underline; }
.hours-list { display: grid; gap: 6px; }
.hours-row { display: flex; justify-content: space-between; gap: 16px; }
.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.contact-actions .btn { flex: 1 1 auto; }
.contact-side { display: grid; gap: 16px; align-content: start; }
.contact-side h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); }
.contact-side p { color: var(--muted); }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } .contact-side { order: -1; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: rgba(255,255,255,0.72); padding-block: 54px 30px; }
.footer a { color: rgba(255,255,255,0.8); text-decoration: none; }
.footer a:hover { color: #fff; }
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px;
  padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .brand { color: #fff; margin: 0 0 12px; }
.footer-brand .brand-name small { color: rgba(255,255,255,0.6); }
.footer-brand p { max-width: 34ch; }
.footer-col h4 { color: #fff; font-family: var(--font-display); font-size: 1rem; margin: 0 0 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.08); display: grid; place-items: center;
}
.footer-social a:hover { background: rgba(255,255,255,0.16); }
.footer-social svg { width: 20px; height: 20px; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-top: 24px; font-size: 0.88rem;
}
.footer-bottom .legal { display: flex; gap: 18px; flex-wrap: wrap; }
@media (max-width: 760px) {
  .footer-top { grid-template-columns: 1fr; gap: 26px; }
}

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--blue-100);
  display: none; gap: 10px;
  transform: translateY(120%);
  transition: transform 0.28s ease;
}
.mobile-cta .btn { flex: 1 1 auto; }
.mobile-cta .btn--call { flex: 0 0 auto; width: 54px; padding: 0; }
.mobile-cta.is-visible { transform: translateY(0); }
@media (max-width: 860px) {
  .mobile-cta { display: flex; }
  body { padding-bottom: 78px; }
}

/* ---------- reveal animation (only when JS is active) ---------- */
.js [data-reveal] {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .btn, .choice-card, .step-card, .svc-card, .price-card { transition: none; }
}

/* ---------- legal pages ---------- */
.legal-page { max-width: 760px; margin-inline: auto; }
.legal-page h1 { font-size: clamp(2rem, 5vw, 2.8rem); margin-bottom: 8px; }
.legal-page .updated { color: var(--muted); margin-bottom: 30px; }
.legal-page h2 { font-size: 1.3rem; margin: 30px 0 10px; }
.legal-page p, .legal-page li { color: var(--muted); }
.legal-page ul { padding-left: 20px; }
.legal-note {
  background: var(--blue-050); border: 1px solid var(--blue-100);
  border-radius: var(--radius); padding: 18px 20px; margin: 24px 0; color: var(--accent-700);
}
.back-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; margin-bottom: 24px; }
