/* =====================================================================
   Wonderful Cleaning — styles.css
   Uber-style minimalist. Monochrome ink base + one fresh green accent.
   Light + dark theme via CSS variables. Single accent locked across page.
   Radius scale locked: pills for interactive, 18px for surfaces, 0 hairlines.
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  --bg:        #ffffff;
  --surface:   #f6f7f6;
  --surface-2: #eef0ee;
  --ink:       #0b0f0d;
  --ink-soft:  #5b635e;
  --ink-faint: #8a918c;
  --line:      #e4e7e4;
  --line-strong:#d4d8d4;

  --accent:        #12a150;   /* the single accent — fresh, clean green */
  --accent-ink:    #0c7a3c;
  --accent-soft:   #e7f6ec;

  /* button tokens flip with theme */
  --btn-bg:  #0b0f0d;
  --btn-fg:  #ffffff;

  --shadow-sm: 0 1px 2px rgba(11,15,13,.06), 0 2px 8px rgba(11,15,13,.05);
  --shadow-md: 0 8px 24px rgba(11,15,13,.08), 0 2px 6px rgba(11,15,13,.05);
  --shadow-lg: 0 24px 60px rgba(11,15,13,.14), 0 8px 20px rgba(11,15,13,.08);

  --r-pill: 999px;
  --r-lg: 22px;
  --r-md: 14px;
  --r-sm: 10px;

  --maxw: 1200px;
  --ease: cubic-bezier(.16,1,.3,1);
}

[data-theme="dark"] {
  --bg:        #0b0f0d;
  --surface:   #14191600;
  --surface:   #141916;
  --surface-2: #1c2320;
  --ink:       #f3f6f4;
  --ink-soft:  #a7b0ab;
  --ink-faint: #7c857f;
  --line:      #232a26;
  --line-strong:#2e3631;

  --accent:        #2bd07a;
  --accent-ink:    #2bd07a;
  --accent-soft:   #122a1d;

  --btn-bg:  #f3f6f4;
  --btn-fg:  #0b0f0d;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
  --shadow-md: 0 10px 30px rgba(0,0,0,.5);
  --shadow-lg: 0 30px 70px rgba(0,0,0,.6);
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Onest", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background .4s var(--ease), color .4s var(--ease);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; padding: 0; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Offset anchor jumps so the sticky 72px nav never covers a section heading */
:where(#services, #how, #pricing, #areas, #faq) { scroll-margin-top: 84px; }

/* ---------- Shared typography ---------- */
.eyebrow {
  font-size: .8rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-ink); margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  font-weight: 700; letter-spacing: -.025em; line-height: 1.05;
}
.section-lead {
  color: var(--ink-soft); font-size: 1.06rem; max-width: 52ch; margin-top: 14px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 22px; border-radius: var(--r-pill);
  font-weight: 600; font-size: .98rem; white-space: nowrap;
  transition: transform .18s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.btn i { font-size: 1.05em; }
.btn--solid { background: var(--btn-bg); color: var(--btn-fg); }
.btn--solid:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--solid:active { transform: translateY(0) scale(.985); }
.btn--outline { background: transparent; color: var(--ink); border: 1.5px solid var(--line-strong); }
.btn--outline:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--ghost { background: var(--surface-2); color: var(--ink); }
.btn--ghost:hover { background: var(--line); }
.btn--invert { background: var(--bg); color: var(--ink); }
.btn--invert:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--block { width: 100%; }
.btn--sm { padding: 10px 16px; font-size: .9rem; }
.btn--lg { padding: 17px 28px; font-size: 1.05rem; }

.icon-btn {
  width: 42px; height: 42px; border-radius: var(--r-pill);
  display: grid; place-items: center; font-size: 1.2rem; color: var(--ink);
  transition: background .2s var(--ease);
}
.icon-btn:hover { background: var(--surface-2); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.nav.is-scrolled { border-bottom-color: var(--line); }
.nav__inner { height: 72px; display: flex; align-items: center; gap: 28px; }

.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: -.02em; font-size: 1.18rem; }
.brand__mark {
  width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
  background: var(--accent); color: #fff; font-size: 1.05rem;
}
.brand__thin { font-weight: 500; color: var(--ink-soft); margin-left: 2px; }
.brand--light .brand__thin { color: var(--ink-faint); }

.nav__links { display: flex; gap: 4px; margin-left: 8px; }
.nav__links a {
  padding: 9px 14px; border-radius: var(--r-pill); font-size: .95rem; font-weight: 500;
  color: var(--ink-soft); transition: color .2s var(--ease), background .2s var(--ease);
}
.nav__links a:hover { color: var(--ink); background: var(--surface-2); }

.nav__actions { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.nav__phone { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: .92rem; padding: 0 6px; }
.nav__phone i { color: var(--accent-ink); }
.nav__burger { display: none; }

.nav__mobile {
  display: none; flex-direction: column; gap: 4px; padding: 12px 24px 22px;
  border-bottom: 1px solid var(--line); background: var(--bg);
}
.nav__mobile:not([hidden]) { display: flex; }
.nav__mobile a { padding: 12px 6px; font-weight: 500; border-bottom: 1px solid var(--line); }
.nav__mobile-phone { color: var(--accent-ink); }
.nav__mobile .btn { margin-top: 12px; }

/* ---------- Hero ---------- */
.hero { position: relative; border-bottom: 1px solid var(--line); }
.hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(70% 60% at 82% 6%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 72%);
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
  padding: clamp(48px, 7vw, 88px) 24px clamp(56px, 7vw, 96px);
}
.hero__title {
  font-size: clamp(2.4rem, 5.4vw, 4.1rem); font-weight: 800;
  letter-spacing: -.035em; line-height: 1.02;
}
.hero__sub { margin-top: 20px; font-size: 1.15rem; color: var(--ink-soft); max-width: 40ch; }
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 28px;
  font-size: .92rem; font-weight: 500; color: var(--ink-soft);
}
.hero__trust li { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust i { color: var(--accent-ink); font-size: 1.1rem; }

/* ---------- Booking widget (hero asset) ---------- */
.widget {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow-lg);
}
.widget__head {
  display: flex; align-items: center; justify-content: space-between;
  font-weight: 600; font-size: .9rem; color: var(--accent-ink);
  margin-bottom: 16px;
}
.widget__head i { font-size: 1.1rem; }

.field { margin-bottom: 16px; }
.field > label {
  display: block; font-size: .85rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 7px;
}
.field__opt { color: var(--ink-faint); font-weight: 500; }

.select-wrap { position: relative; }
.select-wrap i {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  pointer-events: none; color: var(--ink-faint);
}
select, input[type="text"], input[type="tel"], input[type="email"], input[type="date"], textarea {
  width: 100%; padding: 13px 14px; border-radius: var(--r-md);
  border: 1.5px solid var(--line-strong); background: var(--surface);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
select { appearance: none; padding-right: 38px; }
textarea { resize: vertical; min-height: 64px; }
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 18%, transparent);
  background: var(--bg);
}
::placeholder { color: var(--ink-faint); }

.segmented {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: 5px;
}
.seg {
  padding: 9px 4px; border-radius: var(--r-sm); font-size: .82rem; font-weight: 600;
  color: var(--ink-soft); transition: background .2s var(--ease), color .2s var(--ease);
}
.seg[aria-checked="true"] { background: var(--btn-bg); color: var(--btn-fg); }
.seg:hover:not([aria-checked="true"]) { color: var(--ink); }

.chips { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.chip {
  display: flex; align-items: center; gap: 7px; cursor: pointer;
  padding: 10px 12px; border: 1.5px solid var(--line-strong); border-radius: var(--r-md);
  font-size: .85rem; font-weight: 500; transition: border-color .2s var(--ease), background .2s var(--ease);
  user-select: none;
}
.chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.chip span { flex: 1; }
.chip em { font-style: normal; color: var(--ink-faint); font-size: .8rem; }
.chip:has(input:checked) { border-color: var(--accent); background: var(--accent-soft); }
.chip:has(input:checked) em { color: var(--accent-ink); }
.chip:has(input:focus-visible) { box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 18%, transparent); }

.widget__total {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0 18px; margin-top: 4px; border-top: 1px solid var(--line);
}
.widget__total-label { display: block; font-size: .85rem; color: var(--ink-soft); }
.widget__save {
  display: inline-block; margin-top: 3px; font-size: .78rem; font-weight: 600;
  color: var(--accent-ink); background: var(--accent-soft); padding: 2px 8px; border-radius: var(--r-pill);
}
.widget__price { font-size: 2rem; font-weight: 800; letter-spacing: -.03em; }
.widget__fine { margin-top: 12px; font-size: .78rem; color: var(--ink-faint); text-align: center; }

/* ---------- Service area ---------- */
.areas { padding: clamp(56px, 8vw, 96px) 0; border-bottom: 1px solid var(--line); }
.areas__inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; }
.areas__head .section-lead { margin-top: 14px; }
.areas__list { display: flex; flex-wrap: wrap; gap: 10px; }
.areas__list li {
  padding: 11px 18px; border: 1px solid var(--line-strong); border-radius: var(--r-pill);
  font-weight: 500; font-size: .95rem; background: var(--surface);
  transition: border-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.areas__list li:hover { border-color: var(--accent); color: var(--accent-ink); transform: translateY(-2px); }

/* ---------- How it works ---------- */
.how { padding: clamp(56px, 8vw, 110px) 0; background: var(--surface); }
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px;
  position: relative;
}
.step {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px; position: relative; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step__no { font-size: .82rem; font-weight: 700; color: var(--ink-faint); letter-spacing: .1em; }
.step__icon { display: block; font-size: 2rem; color: var(--accent-ink); margin: 18px 0 14px; }
.step h3 { font-size: 1.25rem; font-weight: 700; letter-spacing: -.02em; }
.step p { margin-top: 8px; color: var(--ink-soft); font-size: .96rem; }

/* ---------- Services ---------- */
.services { padding: clamp(56px, 8vw, 110px) 0; }
.services__head { display: flex; flex-direction: column; gap: 0; margin-bottom: 44px; }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card {
  display: flex; flex-direction: column; align-items: flex-start;
  border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.card__icon {
  font-size: 1.9rem; color: var(--accent-ink);
  background: var(--accent-soft); width: 56px; height: 56px; border-radius: var(--r-md);
  display: grid; place-items: center; margin-bottom: 18px;
}
.card h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -.02em; }
.card p { margin-top: 8px; color: var(--ink-soft); font-size: .92rem; flex: 1; }
.card__price { margin-top: 16px; font-weight: 700; font-size: 1.05rem; }
.card__cta {
  margin-top: 16px; display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: .92rem; color: var(--accent-ink);
  transition: gap .2s var(--ease);
}
.card__cta:hover { gap: 11px; }

/* ---------- Why us ---------- */
.why { padding: clamp(56px, 8vw, 110px) 0; background: var(--surface); }
.why__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.why__media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.why__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.why__badge {
  position: absolute; left: 18px; bottom: 18px; right: 18px;
  display: flex; align-items: center; gap: 12px;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line); border-radius: var(--r-md); padding: 14px 16px;
}
.why__badge i { font-size: 1.8rem; color: var(--accent-ink); }
.why__badge strong { display: block; font-size: .95rem; }
.why__badge span { font-size: .82rem; color: var(--ink-soft); }

.why__list { margin: 28px 0 30px; display: grid; gap: 22px; }
.why__list li { display: flex; gap: 16px; }
.why__list i {
  font-size: 1.3rem; color: var(--accent-ink); flex-shrink: 0;
  width: 44px; height: 44px; border-radius: var(--r-md); background: var(--bg);
  border: 1px solid var(--line); display: grid; place-items: center;
}
.why__list strong { font-size: 1.05rem; font-weight: 700; }
.why__list p { color: var(--ink-soft); font-size: .94rem; margin-top: 2px; }

/* ---------- Pricing tiers ---------- */
.pricing { padding: clamp(56px, 8vw, 110px) 0; }
.pricing__head { text-align: center; max-width: 60ch; margin: 0 auto 48px; }
.pricing__head .section-lead { margin-inline: auto; }
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.tier {
  border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px;
  display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.tier:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tier--feature {
  border-color: var(--ink); box-shadow: var(--shadow-lg); position: relative;
  background: var(--bg);
}
[data-theme="dark"] .tier--feature { border-color: var(--accent); }
.tier__flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-size: .78rem; font-weight: 600;
  padding: 5px 14px; border-radius: var(--r-pill);
}
.tier header { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.tier h3 { font-size: 1.4rem; font-weight: 700; letter-spacing: -.02em; }
.tier__disc { font-size: .85rem; font-weight: 600; color: var(--ink-faint); }
.tier__disc--accent { color: var(--accent-ink); background: var(--accent-soft); padding: 3px 10px; border-radius: var(--r-pill); }
.tier__for { color: var(--ink-soft); font-size: .94rem; margin: 12px 0 18px; }
.tier ul { display: grid; gap: 12px; margin-bottom: 26px; flex: 1; }
.tier li { display: flex; align-items: center; gap: 10px; font-size: .94rem; }
.tier li i { color: var(--accent-ink); }

/* ---------- FAQ ---------- */
.faq { padding: clamp(56px, 8vw, 110px) 0; }
.faq__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: start; }
.faq__intro .section-lead a { color: var(--accent-ink); font-weight: 600; }
.accordion { display: grid; gap: 0; }
.acc { border-bottom: 1px solid var(--line); }
.acc summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 0; font-size: 1.1rem; font-weight: 600; letter-spacing: -.01em;
  cursor: pointer; list-style: none;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary i { color: var(--ink-faint); font-size: 1.2rem; transition: transform .3s var(--ease); flex-shrink: 0; }
.acc[open] summary i { transform: rotate(45deg); color: var(--accent-ink); }
.acc p { color: var(--ink-soft); padding: 0 36px 24px 0; font-size: .98rem; max-width: 62ch; }

/* ---------- Final CTA ---------- */
.cta { padding: clamp(56px, 8vw, 100px) 0; }
.cta__inner {
  position: relative; overflow: hidden;
  background:
    radial-gradient(80% 130% at 88% -12%, rgba(43,208,122,.42), transparent 56%),
    radial-gradient(70% 120% at 2% 118%, rgba(43,208,122,.24), transparent 60%),
    linear-gradient(155deg, #0e7d3f 0%, #084d28 100%);
  color: #fff;
  border-radius: clamp(22px, 3vw, 34px);
  padding: clamp(48px, 7vw, 88px) clamp(28px, 5vw, 72px);
  text-align: center;
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.16);
}
.cta__inner h2 { font-size: clamp(1.7rem, 4.4vw, 3.2rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.06; }
.cta__inner p { margin: 16px auto 32px; max-width: 48ch; color: rgba(255,255,255,.9); font-size: 1.12rem; }
.cta__inner .btn--invert { background: #fff; color: #0a5f31; box-shadow: 0 8px 24px rgba(8,40,22,.22); }
.cta__inner .btn--invert:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 14px 34px rgba(8,40,22,.3); }

/* ---------- Footer ---------- */
.footer { background: var(--surface); border-top: 1px solid var(--line); padding: 64px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; }
.footer__brand p { color: var(--ink-soft); font-size: .94rem; margin: 16px 0 18px; max-width: 34ch; }
.footer__social { display: flex; gap: 8px; }
.footer__social a {
  width: 40px; height: 40px; border-radius: var(--r-pill); display: grid; place-items: center;
  background: var(--bg); border: 1px solid var(--line); font-size: 1.2rem;
  transition: transform .2s var(--ease), color .2s var(--ease);
}
.footer__social a:hover { transform: translateY(-2px); color: var(--accent-ink); }
.footer__col h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-faint); margin-bottom: 14px; }
.footer__col a, .footer__col span {
  display: flex; align-items: center; gap: 8px; padding: 6px 0; color: var(--ink-soft);
  font-size: .94rem; transition: color .2s var(--ease);
}
.footer__col a:hover { color: var(--ink); }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line);
  color: var(--ink-faint); font-size: .86rem;
}
.footer__bottom div { display: flex; gap: 20px; }
.footer__bottom a:hover { color: var(--ink); }

/* ---------- Booking modal ---------- */
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal__overlay {
  position: absolute; inset: 0; background: rgba(11,15,13,.55);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  animation: fade .25s var(--ease);
}
.modal__dialog {
  position: relative; width: 100%; max-width: 560px; max-height: 92vh; overflow: hidden;
  background: var(--bg); border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; animation: pop .32s var(--ease);
}
.modal__close {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  width: 38px; height: 38px; border-radius: var(--r-pill); display: grid; place-items: center;
  background: var(--surface-2); font-size: 1.1rem; transition: background .2s var(--ease);
}
.modal__close:hover { background: var(--line); }
.modal__progress { display: flex; gap: 8px; padding: 22px 26px 0; }
.modal__progress .dot { height: 4px; flex: 1; border-radius: 999px; background: var(--line); transition: background .3s var(--ease); }
.modal__progress .dot.is-active { background: var(--accent); }

#bookingForm { display: flex; flex-direction: column; overflow: hidden; flex: 1; }
.step-panel { display: none; padding: 22px 26px; overflow-y: auto; }
.step-panel.is-active { display: block; animation: slideUp .3s var(--ease); }
.modal__title { font-size: 1.5rem; font-weight: 700; letter-spacing: -.02em; }
.modal__sub { color: var(--ink-soft); font-size: .95rem; margin: 6px 0 22px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.chips--modal { grid-template-columns: 1fr 1fr; }

.field__error {
  display: none; color: #d63b3b; font-size: .82rem; font-weight: 500; margin-top: 6px;
}
[data-theme="dark"] .field__error { color: #ff7a7a; }
.field.has-error input, .field.has-error select { border-color: #d63b3b; }
.field.has-error .field__error { display: block; }

.field__hint { display: block; font-size: .82rem; font-weight: 600; margin-top: 6px; }
.field__hint.is-ok { color: var(--accent-ink); }
.field__hint.is-bad { color: #d63b3b; }
[data-theme="dark"] .field__hint.is-bad { color: #ff7a7a; }

.modal__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 26px; border-top: 1px solid var(--line); background: var(--surface);
}
.modal__foot-price span { display: block; font-size: .78rem; color: var(--ink-soft); }
.modal__foot-price strong { font-size: 1.35rem; font-weight: 800; letter-spacing: -.02em; }
.modal__foot-btns { display: flex; gap: 10px; }

/* success */
.success { text-align: center; padding: 16px 0 8px; }
.success__check {
  width: 72px; height: 72px; margin: 0 auto 20px; border-radius: var(--r-pill);
  background: var(--accent-soft); color: var(--accent-ink); display: grid; place-items: center;
  font-size: 2.2rem; animation: pop .4s var(--ease);
}
.summary {
  text-align: left; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 18px; margin: 22px 0; display: grid; gap: 10px;
}
.summary__row { display: flex; justify-content: space-between; gap: 16px; font-size: .92rem; }
.summary__row span { color: var(--ink-soft); }
.summary__row strong { text-align: right; font-weight: 600; }
.summary__total { border-top: 1px solid var(--line); padding-top: 12px; margin-top: 2px; font-size: 1.05rem; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

@keyframes fade { from { opacity: 0; } }
@keyframes pop { from { opacity: 0; transform: scale(.96); } }
@keyframes slideUp { from { opacity: 0; transform: translateY(10px); } }
@keyframes sheetUp { from { transform: translateY(100%); } }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__burger { display: grid; }
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .widget { max-width: 480px; }
  .areas__inner { grid-template-columns: 1fr; gap: 28px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .why__grid, .faq__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 680px) {
  .container { padding: 0 18px; }
  .nav__phone { display: none; }
  .nav__inner { gap: 12px; }
  .hero { border-bottom: none; }
  .hero__grid { padding: 28px 18px 44px; gap: 28px; }
  .hero__title { font-size: clamp(2.05rem, 8.5vw, 2.7rem); }
  .hero__sub { font-size: 1.05rem; }
  .widget { padding: 20px; }
  .steps { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .tiers { grid-template-columns: 1fr; }
  .tier--feature { order: -1; }
  .chips { grid-template-columns: 1fr 1fr; }
  .segmented { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .why__media img { aspect-ratio: 4/3; }

  /* CTA banner: tighter padding, full-width button that can wrap */
  .cta { padding: 44px 0; }
  .cta__inner { padding: 44px 24px; }
  .cta__inner p { font-size: 1.02rem; margin-bottom: 26px; }
  .cta__inner .btn { width: 100%; white-space: normal; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* Booking modal becomes a native-feel bottom sheet */
  .modal { padding: 0; align-items: flex-end; }
  .modal__dialog {
    max-width: 100%; width: 100%; max-height: 92vh;
    border-radius: 22px 22px 0 0; animation: sheetUp .34s var(--ease);
  }
  .step-panel { padding: 20px 20px calc(20px + env(safe-area-inset-bottom)); }
  .modal__progress { padding: 20px 20px 0; }
  .modal__foot { padding: 14px 20px calc(14px + env(safe-area-inset-bottom)); }
}

@media (max-width: 480px) {
  .nav__actions .nav__cta { display: none; }       /* Book now lives in the burger menu */
  .brand { font-size: 1.08rem; }
  .hero__trust { gap: 8px 16px; font-size: .85rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .modal__title { font-size: 1.3rem; }

  /* Price + actions stack so long labels never overflow */
  .modal__foot { flex-direction: column; align-items: stretch; gap: 12px; }
  .modal__foot-price { display: flex; align-items: baseline; justify-content: space-between; }
  .modal__foot-btns { width: 100%; }
  .modal__foot-btns .btn { flex: 1; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .card:hover, .step:hover, .tier:hover, .footer__social a:hover { transform: none; }
}
