/* =========================================================
   CCH Cleaning: styles
   Palette: deep teal + cyan accent + warm white
   Typography: DM Sans
   Style: Soft UI Evolution (subtle depth, modern)
   ========================================================= */

:root {
  --teal-900: #064E5C;
  --teal-800: #0B5566;
  --teal-700: #0E6E80;
  --teal-600: #0891B2;
  --cyan-500: #06B6D4;
  --cyan-300: #67E8F9;
  --cyan-100: #CFFAFE;
  --cyan-50:  #ECFEFF;
  --hero-bg:  #F1FAFB;
  --ink:      #0F2933;
  --ink-soft: #3F525C;
  --muted:    #6B7B83;
  --line:     #DDE6E9;
  --line-soft:#ECF1F3;
  --surface:  #FFFFFF;
  --surface-2:#FAFCFC;
  --gold:     #D4A14A;
  --warn:     #C97A4A;
  --warn-soft:#FBEFDF;
  --good:     #16A085;
  --good-soft:#DFF4EE;
  --red:      #C94A4A;
  --red-soft: #FBEDED;

  --shadow-1: 0 1px 2px rgba(11, 85, 102, 0.06);
  --shadow-2: 0 2px 6px rgba(11, 85, 102, 0.06), 0 1px 2px rgba(11, 85, 102, 0.04);
  --shadow-3: 0 10px 24px rgba(11, 85, 102, 0.08), 0 2px 6px rgba(11, 85, 102, 0.04);
  --shadow-card: 0 1px 2px rgba(11, 85, 102, 0.04), 0 10px 30px rgba(11, 85, 102, 0.06), 0 30px 60px rgba(11, 85, 102, 0.08);

  --radius-sm: 8px;
  --radius:    12px;
  --radius-md: 16px;
  --radius-lg: 20px;

  --ease: cubic-bezier(.2,.7,.2,1);

  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01', 'cv11';
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
  color: var(--teal-900);
}

h1 { font-size: clamp(2.2rem, 4vw + 0.8rem, 3.4rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.7rem, 1.6vw + 1rem, 2.4rem); }
h3 { font-size: 1.15rem; letter-spacing: -0.015em; }
h4 { font-size: 0.92rem; font-weight: 600; letter-spacing: 0; }

p { margin: 0 0 1em; color: var(--ink-soft); }

a { color: var(--teal-700); text-decoration: none; transition: color .15s var(--ease); }
a:hover { color: var(--teal-900); }

button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 720px) { .container { padding: 0 32px; } }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: 16px;
}

.accent-text { color: var(--cyan-500); }

.stars { color: var(--gold); letter-spacing: 1px; font-size: 0.95rem; }
.stars.big { font-size: 1.2rem; letter-spacing: 2px; }

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

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  white-space: nowrap;
  user-select: none;
  transition: background-color .15s var(--ease), border-color .15s var(--ease), color .15s var(--ease), box-shadow .15s var(--ease), transform .12s var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--teal-800);
  color: var(--surface);
  box-shadow: var(--shadow-2);
}
.btn-primary:hover { background: var(--teal-900); color: var(--surface); box-shadow: var(--shadow-3); }

.btn-secondary {
  background: var(--cyan-500);
  color: var(--surface);
  box-shadow: var(--shadow-2);
}
.btn-secondary:hover { background: var(--teal-700); color: var(--surface); box-shadow: var(--shadow-3); }

.btn-ghost {
  background: transparent;
  color: var(--teal-800);
  border-color: rgba(11, 85, 102, 0.18);
}
.btn-ghost:hover { background: var(--cyan-50); color: var(--teal-900); border-color: rgba(11, 85, 102, 0.35); }

.btn-sm { padding: 9px 14px; font-size: 0.86rem; }
.btn-lg { padding: 16px 26px; font-size: 1rem; }

.link-btn {
  background: none;
  border: 0;
  color: var(--muted);
  font-size: 0.9rem;
  padding: 8px;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(107, 123, 131, 0.45);
}
.link-btn:hover { color: var(--teal-900); text-decoration-color: var(--teal-900); }

/* ========== Nav ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.nav.scrolled { border-color: var(--line-soft); background: rgba(255, 255, 255, 0.92); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--teal-900);
  letter-spacing: -0.015em;
}
.brand:hover { color: var(--teal-900); }
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--teal-800);
  color: var(--surface);
}
.brand-light { color: var(--surface); }
.brand-light .brand-mark { background: var(--surface); color: var(--teal-800); }

.nav-links {
  display: none;
  gap: 28px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav-links a { color: var(--ink-soft); }
.nav-links a:hover { color: var(--teal-900); }
.nav-cta { display: none; }

@media (min-width: 820px) {
  .nav-links { display: inline-flex; }
  .nav-cta { display: inline-flex; }
}

/* ========== Hero with embedded calculator ========== */
.hero {
  position: relative;
  padding: 64px 0 60px;
  color: rgba(255, 255, 255, 0.9);
  background:
    linear-gradient(110deg, rgba(6, 22, 30, 0.86) 0%, rgba(6, 22, 30, 0.62) 55%, rgba(6, 22, 30, 0.40) 100%),
    url('https://images.unsplash.com/photo-1710883727427-59d1ccc368fa?auto=format&fit=crop&w=2400&q=80') center/cover no-repeat;
  overflow: visible;
  isolation: isolate;
}
@media (min-width: 940px) { .hero { padding: 96px 0 32px; } }

/* Hero text colours adjusted for dark image background */
.hero h1 { color: var(--surface); }
.hero .accent-text { color: var(--cyan-300); }
.hero .lede { color: rgba(255, 255, 255, 0.88); }
.hero .eyebrow { color: var(--cyan-300); }
.hero-rating { color: var(--surface); }
.hero-rating strong { color: var(--surface); }
.hero .trust-row { color: rgba(255, 255, 255, 0.78); }
.hero .trust-row svg { color: var(--cyan-300); }
.hero .btn-ghost {
  background: rgba(255, 255, 255, 0.10);
  color: var(--surface);
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  color: var(--surface);
  border-color: rgba(255, 255, 255, 0.7);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 1;
}
@media (min-width: 940px) {
  .hero-inner { grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: start; }
  .hero-quote { margin-bottom: -180px; position: relative; z-index: 2; }
  .quote-card { min-height: 580px; }
}
@media (min-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr 1.1fr; gap: 72px; }
}

.hero-copy { max-width: 560px; }
.hero h1 { margin-bottom: 18px; }
.hero h1 br { display: none; }
@media (min-width: 480px) { .hero h1 br { display: inline; } }

.lede {
  font-size: 1.08rem;
  color: var(--ink-soft);
  margin-bottom: 22px;
  max-width: 46ch;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 0.92rem;
  color: var(--surface);
}
.hero-rating strong { color: var(--surface); font-weight: 700; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
@media (min-width: 940px) {
  .hero-cta-mobile { display: none; }
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.trust-row svg {
  color: var(--cyan-500);
  flex-shrink: 0;
}

/* ========== Quote card (inside hero) ========== */
.hero-quote { position: relative; }

.quote-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 24px 22px 28px;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 68px;
}
@media (min-width: 560px) { .quote-card { padding: 28px 32px 32px; } }

.quote-card-head {
  margin-bottom: 22px;
}
.quote-card-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: 6px;
}
.quote-card-label.accent { color: var(--cyan-500); }
.quote-card-head h2 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--teal-900);
}

.progress {
  height: 4px;
  background: var(--line-soft);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 10px;
}
.progress-bar {
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg, var(--teal-700), var(--cyan-500));
  border-radius: 999px;
  transition: width .45s var(--ease);
}
.progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}
.back-btn {
  background: none;
  border: 0;
  color: var(--teal-700);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.84rem;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background .15s var(--ease), color .15s var(--ease);
}
.back-btn:hover { background: var(--cyan-50); color: var(--teal-900); }

/* Steps: simple show/hide, soft fade-in */
.step { display: none; }
.step.active { display: block; }
.step.fade-in { animation: stepIn .3s var(--ease); }
@keyframes stepIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.step-title { font-size: clamp(1.2rem, 1vw + 1rem, 1.5rem); margin-bottom: 6px; color: var(--teal-900); }
.step-sub { color: var(--muted); margin-bottom: 22px; font-size: 0.94rem; }

.options { display: grid; gap: 10px; }
.grid-1 { grid-template-columns: 1fr; }
.grid-2 { grid-template-columns: 1fr; }
.grid-5 { grid-template-columns: repeat(5, 1fr); gap: 8px; }
@media (min-width: 540px) { .grid-2 { grid-template-columns: 1fr 1fr; } }

.option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  text-align: left;
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--teal-900);
  transition: border-color .15s var(--ease), background-color .15s var(--ease), box-shadow .15s var(--ease);
  min-height: 60px;
}
.option:hover {
  border-color: var(--cyan-500);
  background: var(--cyan-50);
  box-shadow: var(--shadow-1);
}
.option:active { transform: scale(0.995); }
.option.selected {
  border-color: var(--cyan-500);
  background: var(--cyan-50);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15);
}

.opt-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--cyan-50);
  color: var(--teal-700);
  flex-shrink: 0;
  transition: background-color .15s var(--ease), color .15s var(--ease);
}
.option.selected .opt-icon { background: var(--teal-800); color: var(--surface); }

.option-pill {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  text-align: center;
  padding: 14px 4px;
  min-height: 78px;
}
.opt-big { font-size: 1.7rem; font-weight: 700; color: var(--teal-900); line-height: 1; letter-spacing: -0.02em; }
.option.selected .opt-big { color: var(--teal-800); }
.opt-sub-label { font-size: 0.74rem; color: var(--muted); font-weight: 500; letter-spacing: 0.04em; }

.option-row { justify-content: space-between; }
.row-main { display: flex; flex-direction: column; gap: 2px; }
.row-title { font-weight: 600; color: var(--teal-900); }
.row-sub { font-size: 0.84rem; color: var(--muted); font-weight: 400; }
.row-tag {
  font-size: 0.74rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.tag-good    { background: var(--good-soft); color: var(--good); }
.tag-neutral { background: var(--line-soft); color: var(--ink-soft); }
.tag-warn    { background: var(--warn-soft); color: var(--warn); }

.option-check { align-items: center; }
.check-circle {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1.5px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--surface);
  background: var(--surface);
  flex-shrink: 0;
  transition: background .15s var(--ease), border-color .15s var(--ease);
}
.check-circle svg { opacity: 0; transform: scale(0.6); transition: opacity .15s var(--ease), transform .15s var(--ease); }
.option-check[aria-pressed="true"] .check-circle {
  background: var(--teal-800);
  border-color: var(--teal-800);
}
.option-check[aria-pressed="true"] .check-circle svg { opacity: 1; transform: scale(1); }
.option-check[aria-pressed="true"] {
  border-color: var(--cyan-500);
  background: var(--cyan-50);
}
.check-body { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.check-title { font-weight: 600; color: var(--teal-900); }
.check-price { font-size: 0.84rem; color: var(--muted); font-weight: 500; }

.step-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

/* Price reveal */
.step-price { min-height: 360px; }
.price-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 64px 0;
  color: var(--muted);
  font-weight: 500;
}
.spinner {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 3px solid var(--cyan-100);
  border-top-color: var(--cyan-500);
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.price-reveal {
  text-align: center;
  padding: 12px 0 0;
  position: relative;
}
.price-reveal::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 50%;
  width: 320px;
  height: 280px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(6, 182, 212, 0.18), transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.price-reveal > * { position: relative; z-index: 1; }

.price-display {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  margin: 18px 0 6px;
  animation: priceIn 0.65s var(--ease);
}
@keyframes priceIn {
  0%   { opacity: 0; transform: translateY(10px) scale(0.94); }
  60%  { transform: translateY(0) scale(1.03); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.price-currency {
  font-size: 2rem;
  font-weight: 600;
  color: var(--teal-800);
  align-self: flex-start;
  margin-top: 18px;
  letter-spacing: -0.02em;
}
.price-amount {
  font-size: clamp(4rem, 10vw, 6.2rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--teal-900);
  line-height: 1;
  font-feature-settings: 'tnum';
}
.price-unit {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  margin-left: 10px;
}
.price-note {
  color: var(--ink-soft);
  margin-bottom: 22px;
  font-size: 0.95rem;
}
.price-small {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 18px;
}

.breakdown {
  background: var(--cyan-50);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 14px 20px;
  text-align: left;
  font-size: 0.9rem;
  margin: 0 auto;
  max-width: 460px;
}
.breakdown-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  color: var(--ink-soft);
  gap: 12px;
}
.breakdown-row span:last-child { font-feature-settings: 'tnum'; white-space: nowrap; }
.breakdown-row.total {
  border-top: 1px solid var(--line);
  margin-top: 6px;
  padding-top: 11px;
  font-weight: 700;
  color: var(--teal-900);
  font-size: 1rem;
}

/* Contact form */
.contact-form { display: grid; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--teal-900);
  letter-spacing: -0.005em;
}
.optional { color: var(--muted); font-weight: 400; font-size: 0.8rem; }
.field input {
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field input:focus {
  outline: 0;
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.18);
}
.field input.invalid {
  border-color: var(--red);
  background: var(--red-soft);
}

/* Success */
.step-success { text-align: center; padding-top: 8px; }
.success-tick {
  color: var(--good);
  display: inline-flex;
  margin: 4px 0 10px;
  animation: tickPop 0.5s var(--ease);
}
@keyframes tickPop {
  0% { transform: scale(0.5); opacity: 0; }
  60% { transform: scale(1.08); }
  100% { transform: scale(1); opacity: 1; }
}
.success-lede {
  font-size: 1.02rem;
  color: var(--ink-soft);
  max-width: 38ch;
  margin: 4px auto 22px;
}
.success-ref {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 22px;
  background: var(--cyan-50);
  border-radius: var(--radius);
  margin-bottom: 22px;
}
.success-ref span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-700);
  font-weight: 600;
}
.success-ref strong {
  font-size: 1.3rem;
  color: var(--teal-900);
  letter-spacing: 0.04em;
  font-weight: 700;
  font-feature-settings: 'tnum';
}

.success-summary {
  background: var(--surface-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: left;
  max-width: 460px;
  margin: 0 auto;
  font-size: 0.92rem;
}
.success-summary dl { margin: 0; }
.success-summary dt {
  color: var(--muted);
  font-size: 0.74rem;
  margin-top: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.success-summary dt:first-child { margin-top: 0; }
.success-summary dd {
  margin: 0 0 4px;
  color: var(--teal-900);
  font-weight: 500;
}

/* ========== Sections ========== */
section {
  padding: 80px 0;
  scroll-margin-top: 68px;
}
@media (min-width: 940px) { section { padding: 110px 0; } }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.section-head h2 { margin-bottom: 10px; }

/* ========== Services ========== */
.services { background: var(--surface); }
@media (min-width: 940px) {
  .services { padding-top: 220px; padding-bottom: 110px; }
}
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .service-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.service-card:hover {
  border-color: rgba(6, 182, 212, 0.4);
  box-shadow: var(--shadow-3);
}
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--cyan-50);
  color: var(--teal-700);
  margin-bottom: 18px;
}
.service-card h3 { margin-bottom: 8px; }
.service-card p { margin: 0; color: var(--ink-soft); font-size: 0.94rem; }

.service-card-cta {
  background: var(--teal-900);
  color: rgba(255,255,255,0.92);
  border: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 14px;
}
.service-card-cta h3 { color: var(--surface); }
.service-card-cta p { color: rgba(255,255,255,0.78); }
.service-card-cta:hover { border-color: transparent; box-shadow: var(--shadow-3); }
.service-card-cta .btn-secondary { background: var(--cyan-500); }
.service-card-cta .btn-secondary:hover { background: var(--cyan-300); color: var(--teal-900); }

/* ========== Why ========== */
.why {
  background:
    radial-gradient(ellipse at 100% 0%, rgba(6, 182, 212, 0.18), transparent 50%),
    var(--teal-900);
  color: rgba(255,255,255,0.88);
}
.why h2 { color: var(--surface); }
.why p { color: rgba(255,255,255,0.85); }
.why .eyebrow { color: var(--cyan-300); }

.why-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 940px) {
  .why-inner { grid-template-columns: 1.05fr 0.95fr; gap: 72px; }
}
.why-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 22px;
}
.why-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: rgba(255,255,255,0.08);
  color: var(--cyan-300);
  border: 1px solid rgba(255,255,255,0.16);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
  font-feature-settings: 'tnum';
}
.why-list strong {
  display: block;
  font-size: 1.05rem;
  color: var(--surface);
  margin-bottom: 2px;
  font-weight: 600;
}
.why-list p { margin: 0; font-size: 0.94rem; color: rgba(255,255,255,0.78); }

.why-visual { position: relative; }
.why-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-3);
  aspect-ratio: 4/5;
  background: var(--teal-800);
}
.why-photo img { width: 100%; height: 100%; object-fit: cover; }
.why-stat {
  position: absolute;
  bottom: -22px;
  right: -10px;
  background: var(--cyan-500);
  color: var(--teal-900);
  padding: 16px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-3);
  text-align: center;
  max-width: 200px;
}
.why-stat strong {
  display: block;
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 4px;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-feature-settings: 'tnum';
}
.why-stat span {
  font-size: 0.8rem;
  font-weight: 500;
  display: block;
  line-height: 1.3;
}

/* ========== Reviews ========== */
.reviews { background: var(--surface-2); }
.reviews-summary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.reviews-summary strong { color: var(--teal-900); }

.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) { .review-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .review-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  box-shadow: var(--shadow-1);
  transition: box-shadow .2s var(--ease);
}
.review-card:hover { box-shadow: var(--shadow-3); }
.review-card .stars { margin-bottom: 12px; }
.review-card p {
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 14px;
}
.review-card footer {
  font-size: 0.85rem;
  color: var(--muted);
}
.review-card footer strong {
  color: var(--teal-900);
  font-weight: 600;
}

/* ========== About ========== */
.about { background: var(--surface); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 940px) {
  .about-inner { grid-template-columns: 0.9fr 1.1fr; gap: 72px; }
}
.about-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-3);
  aspect-ratio: 4/5;
  max-width: 420px;
  background: var(--cyan-50);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 12px; }

/* ========== Footer ========== */
.footer {
  background: var(--teal-900);
  color: rgba(255,255,255,0.78);
  padding: 64px 0 24px;
}
.footer h4 {
  color: var(--surface);
  margin-bottom: 14px;
  font-size: 0.84rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { padding: 4px 0; font-size: 0.92rem; }
.footer a { color: rgba(255,255,255,0.78); }
.footer a:hover { color: var(--cyan-300); }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (min-width: 720px) {
  .footer-inner { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.footer-brand p {
  color: rgba(255,255,255,0.62);
  font-size: 0.92rem;
  margin: 14px 0 0;
  max-width: 28ch;
}
.areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.52);
}

/* ========== Reveal on scroll ========== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .step, .price-display, .success-tick, .progress-bar { animation: none !important; transition: none !important; }
}

/* ========== Focus ========== */
:focus-visible {
  outline: 2.5px solid var(--cyan-500);
  outline-offset: 2px;
  border-radius: 4px;
}
.option:focus-visible { outline-offset: 3px; }
.btn:focus-visible { outline-offset: 3px; }
