/* =================================================================
   ClearCall Health — styles.css
   Aesthetic: Apple-Keynote calm. Generous space, restrained palette,
   one confident accent, subtle motion. No clutter.
   ================================================================= */

:root {
  --ink:        #0b1220;   /* near-black navy */
  --ink-2:      #1c2533;
  --muted:      #5b6577;
  --muted-2:    #8a93a3;
  --line:       #e7eaf0;
  --bg:         #ffffff;
  --bg-soft:    #f6f8fb;
  --bg-tint:    #eef3fb;
  --brand:      #1559d6;   /* trust blue */
  --brand-700:  #0f47b0;
  --brand-300:  #6f9cf0;
  --good:       #10b981;   /* secure/checkmark green */
  --radius:     18px;
  --radius-sm:  12px;
  --radius-lg:  28px;
  --shadow-sm:  0 1px 2px rgba(11,18,32,.06), 0 4px 14px rgba(11,18,32,.05);
  --shadow:     0 10px 30px rgba(11,18,32,.08), 0 2px 8px rgba(11,18,32,.05);
  --shadow-lg:  0 30px 60px rgba(11,18,32,.14), 0 8px 20px rgba(11,18,32,.08);
  --maxw:       1120px;
  --ease:       cubic-bezier(.22,.61,.36,1);
  --font:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --display:    'Fraunces', Georgia, 'Times New Roman', serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

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

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

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

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  text-transform: uppercase; letter-spacing: .14em; font-size: .76rem; font-weight: 700;
  color: var(--brand); margin: 0 0 14px;
}
.section-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin: 0 0 18px;
  max-width: 18ch;
}
.section-lede {
  font-size: clamp(1.05rem, 1rem + .4vw, 1.25rem);
  color: var(--muted);
  max-width: 56ch;
  margin: 0 0 40px;
}

/* ---------- Buttons ---------- */
.btn {
  --pad: 13px 22px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: var(--pad);
  border-radius: 999px;
  font-weight: 600; font-size: .98rem; font-family: var(--font);
  border: 1px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s, border-color .2s;
  will-change: transform;
}
.btn--lg { --pad: 16px 30px; font-size: 1.04rem; }
.btn--primary { background: var(--brand); color: #fff; box-shadow: 0 6px 18px rgba(21,89,214,.32); }
.btn--primary:hover { background: var(--brand-700); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(21,89,214,.4); }
.btn--ghost { background: rgba(255,255,255,.06); color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--brand-300); color: var(--brand); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, summary:focus-visible {
  outline: 3px solid var(--brand-300); outline-offset: 2px;
}

/* ---------- Reveal on scroll ---------- */
/* Hidden ONLY when JS is live (.js on <html>). No-JS or failed-JS users see all content. */
.js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-in,
.no-reveal [data-reveal] { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js [data-reveal] { opacity: 1; transform: none; } }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: saturate(180%) blur(16px); -webkit-backdrop-filter: saturate(180%) blur(16px);
  background: rgba(255,255,255,.72);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.nav.is-scrolled { border-color: var(--line); box-shadow: 0 1px 0 rgba(11,18,32,.04); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -.01em; font-size: 1.08rem; }
.brand__mark { display: inline-flex; }
.brand__mark img { display: block; border-radius: 7px; object-fit: contain; }
.brand__name-light { color: var(--muted); font-weight: 600; }
.nav__links { display: flex; gap: 30px; }
.nav__links a { color: var(--ink-2); font-weight: 500; font-size: .95rem; position: relative; padding: 4px 0; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--brand);
  transition: width .3s var(--ease);
}
.nav__links a:hover { color: var(--brand); }
.nav__links a:hover::after { width: 100%; }
@media (max-width: 820px) { .nav__links { display: none; } }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(72px, 9vw, 140px) 0 clamp(56px, 7vw, 110px); text-align: center; }
.hero__glow {
  position: absolute; inset: -20% -10% auto -10%; height: 120%; z-index: -1;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(21,89,214,.16), transparent 70%),
    radial-gradient(40% 40% at 80% 10%, rgba(16,185,129,.12), transparent 70%),
    radial-gradient(40% 40% at 12% 18%, rgba(111,156,240,.16), transparent 70%);
  animation: drift 18s ease-in-out infinite alternate;
}
@keyframes drift { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(0,-14px,0) scale(1.05); } }
.hero__inner { position: relative; display: flex; flex-direction: column; align-items: center; }
.pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--bg-soft); border: 1px solid var(--line); color: var(--ink-2);
  padding: 8px 16px; border-radius: 999px; font-size: .85rem; font-weight: 600; margin-bottom: 28px;
}
.pill__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--good); box-shadow: 0 0 0 4px rgba(16,185,129,.18); }
.hero__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.6rem, 1.4rem + 5.4vw, 5rem);
  line-height: 1.02; letter-spacing: -.03em; margin: 0 0 24px; max-width: 16ch;
}
.hero__title-accent { color: var(--brand); }
.hero__sub { font-size: clamp(1.1rem, 1rem + .7vw, 1.4rem); color: var(--muted); max-width: 60ch; margin: 0 0 36px; }
.hero__sub strong { color: var(--ink); font-weight: 600; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.hero__trust { list-style: none; display: flex; flex-wrap: wrap; gap: 12px 26px; justify-content: center; padding: 0; margin: 0; }
.hero__trust li { display: inline-flex; align-items: center; gap: 9px; color: var(--muted); font-size: .92rem; font-weight: 500; }
.ic { width: 20px; height: 20px; fill: var(--good); flex: none; }
.ic--sm { width: 15px; height: 15px; }

/* ---------- Promise ---------- */
.promise { padding: clamp(64px, 8vw, 120px) 0; }
.promise__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.promise-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 38px 32px; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.promise-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: #dbe3f2; }
.promise-card__icon {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 22px;
  background: var(--bg-tint); color: var(--brand);
}
.promise-card__icon svg { width: 28px; height: 28px; fill: currentColor; }
.promise-card h3 { font-size: 1.35rem; margin: 0 0 10px; letter-spacing: -.01em; }
.promise-card p { color: var(--muted); margin: 0; }

/* ---------- How ---------- */
.how { padding: clamp(64px, 8vw, 120px) 0; background: var(--bg-soft); border-block: 1px solid var(--line); }
.how__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px 30px; position: relative; box-shadow: var(--shadow-sm); }
.step__num { font-family: var(--display); font-size: 2.4rem; font-weight: 600; color: var(--brand-300); display: block; margin-bottom: 14px; }
.step h3 { font-size: 1.3rem; margin: 0 0 10px; }
.step p { color: var(--muted); margin: 0; }

/* ---------- Stats ---------- */
.stats { padding: clamp(56px, 7vw, 96px) 0; background: var(--ink); color: #fff; }
.stats__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 28px 20px; text-align: center; }
.stat__num { font-family: var(--display); font-weight: 600; font-size: clamp(1.8rem, 1.1rem + 1.8vw, 2.9rem); letter-spacing: -.02em; line-height: 1; }
.stat__label { color: #aeb8c9; font-size: .9rem; margin-top: 10px; font-weight: 500; }
@media (max-width: 900px) { .stats__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .stats__grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Coverage tabs ---------- */
.coverage { padding: clamp(64px, 8vw, 120px) 0; }
.tabs { margin-top: 12px; }
.tabs__list {
  position: relative; display: inline-flex; gap: 4px; padding: 6px;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 999px; margin-bottom: 34px;
  max-width: 100%; overflow-x: auto; scrollbar-width: none;
}
.tabs__list::-webkit-scrollbar { display: none; }
.tab {
  position: relative; z-index: 2; border: 0; background: transparent; cursor: pointer;
  padding: 11px 26px; border-radius: 999px; font-weight: 600; font-size: .98rem; color: var(--muted);
  font-family: var(--font); white-space: nowrap; transition: color .25s;
}
.tab.is-active { color: var(--ink); }
.tabs__indicator {
  position: absolute; z-index: 1; top: 6px; height: calc(100% - 12px); border-radius: 999px;
  background: #fff; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), width .4s var(--ease); left: 0;
}
.panel { animation: fade-up .5s var(--ease); }
.panel[hidden] { display: none; }
@keyframes fade-up { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.panel__grid {
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 30px;
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow);
}
.panel__grid h3 { font-size: clamp(1.4rem, 1rem + 1vw, 1.9rem); letter-spacing: -.02em; margin: 0 0 14px; }
.panel__grid > div > p { color: var(--muted); margin: 0 0 20px; }
.panel__aside { background: var(--bg-tint); border-radius: var(--radius); padding: 26px; align-self: start; }
.panel__tag { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--brand); margin-bottom: 10px; }
.panel__aside p { margin: 0; color: var(--ink-2); font-weight: 500; }
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.checklist li { position: relative; padding-left: 30px; color: var(--ink-2); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 19px; height: 19px; border-radius: 50%;
  background: var(--good) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12l4 4 10-11' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/13px no-repeat;
}
.checklist--lg li { padding-block: 4px; font-size: 1.05rem; }
@media (max-width: 760px) { .panel__grid { grid-template-columns: 1fr; padding: 28px; } }

/* ---------- Marquee (carriers + reviews) ---------- */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: 18px; width: max-content; animation: scroll-x var(--dur, 40s) linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee--reverse .marquee__track { animation-direction: reverse; }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; flex-wrap: wrap; justify-content: center; } }

/* Carriers */
.carriers { padding: clamp(56px, 7vw, 96px) 0; text-align: center; }
.carriers__title { font-family: var(--display); font-weight: 600; font-size: clamp(1.4rem, 1rem + 1.4vw, 2.1rem); letter-spacing: -.02em; margin: 0 auto 12px; max-width: 22ch; }
.carriers__sub { color: var(--muted); margin: 0 auto 44px; max-width: 56ch; }
.marquee--slow { --dur: 55s; }
.carrier {
  flex: none; height: 104px; min-width: 268px; padding: 0 48px; display: grid; place-items: center;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 18px;
  color: #6b7588; transition: color .3s, background .3s, transform .3s;
}
.carrier:hover { color: var(--ink); background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
/* Logos shown in full color at all times. */
.carrier__logo { height: 60px; width: auto; max-width: 230px; object-fit: contain; }
/* Fallback text wordmark when a logo file is missing. */
.carrier__name { font-weight: 800; font-size: 1.6rem; letter-spacing: -.02em; }
@media (max-width: 600px) {
  .carrier { height: 84px; min-width: 210px; padding: 0 34px; }
  .carrier__logo { height: 46px; max-width: 180px; }
  .carrier__name { font-size: 1.3rem; }
}

/* Reviews */
.reviews { padding: clamp(64px, 8vw, 120px) 0 clamp(40px,5vw,72px); }
.reviews__rating { font-size: 1.05rem; color: var(--muted); margin-bottom: 8px; }
.reviews__rating strong { color: var(--ink); }
.stars { color: #f5a623; letter-spacing: 2px; }
.marquee--reviews { --dur: 64s; padding-block: 14px; }
.review {
  flex: none; width: 360px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 26px; box-shadow: var(--shadow-sm); white-space: normal;
}
.review__stars { color: #f5a623; letter-spacing: 1px; font-size: .92rem; margin-bottom: 12px; }
.review__text { color: var(--ink-2); margin: 0 0 18px; font-size: .98rem; line-height: 1.62; }
.review__who { display: flex; align-items: center; gap: 12px; }
.review__avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; background: var(--bg-tint); flex: none; }
.review__name { font-weight: 600; font-size: .94rem; line-height: 1.2; }
.review__meta { color: var(--muted-2); font-size: .82rem; display: flex; align-items: center; gap: 6px; }
.review__verified { color: var(--good); font-weight: 600; font-size: .76rem; }
@media (max-width: 480px) { .review { width: 300px; } }

/* ---------- Agent ---------- */
.agent { padding: clamp(64px, 8vw, 120px) 0; background: var(--bg-soft); border-block: 1px solid var(--line); }
.agent__inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: center; }
.agent__copy .section-title { max-width: 20ch; }
.quote-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-lg); position: relative;
}
.quote-card__mark { width: 48px; height: 48px; fill: var(--bg-tint); margin-bottom: 4px; }
.quote-card p { font-family: var(--display); font-size: clamp(1.2rem, 1rem + .8vw, 1.55rem); line-height: 1.4; color: var(--ink); margin: 0 0 24px; letter-spacing: -.01em; }
.quote-card__by { display: flex; flex-direction: column; }
.quote-card__by strong { font-weight: 600; }
.quote-card__by span { color: var(--muted); font-size: .9rem; }
@media (max-width: 820px) { .agent__inner { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- Booking ---------- */
.book { padding: clamp(64px, 8vw, 120px) 0; }
.book__head { text-align: center; margin-bottom: 48px; }
.book__head .section-title, .book__head .section-lede { margin-inline: auto; }
.booker {
  position: relative;
  display: grid; grid-template-columns: 1.7fr 1fr; gap: 0;
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); background: var(--bg);
}
.booker__form { padding: clamp(28px, 4vw, 48px); display: grid; gap: 34px; }
.booker__step-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.booker__step-badge { width: 28px; height: 28px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: .9rem; flex: none; }
.booker__step-head h3 { margin: 0; font-size: 1.15rem; }
.booker__tz { color: var(--muted-2); font-weight: 500; font-size: .85rem; }

/* Calendar */
.cal { border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; background: var(--bg); }
.cal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.cal__month { font-weight: 700; font-size: 1.02rem; }
.cal__nav { width: 36px; height: 36px; border-radius: 10px; border: 1px solid var(--line); background: var(--bg); cursor: pointer; font-size: 1.2rem; color: var(--ink-2); transition: background .2s, border-color .2s; line-height: 1; }
.cal__nav:hover:not(:disabled) { background: var(--bg-soft); border-color: var(--brand-300); }
.cal__nav:disabled { opacity: .35; cursor: not-allowed; }
.cal__dow { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-bottom: 6px; }
.cal__dow span { text-align: center; font-size: .74rem; font-weight: 700; color: var(--muted-2); letter-spacing: .04em; }
.cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal__cell { aspect-ratio: 1; border: 0; background: transparent; border-radius: 10px; cursor: pointer; font-family: var(--font); font-size: .95rem; font-weight: 500; color: var(--ink-2); transition: background .15s; position: relative; }
.cal__cell:hover:not(:disabled):not(.is-selected) { background: var(--bg-tint); }
.cal__cell:disabled { color: var(--line); cursor: default; }
.cal__cell.is-empty { pointer-events: none; }
.cal__cell.is-today::after { content: ""; position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%); width: 4px; height: 4px; border-radius: 50%; background: var(--brand); }
.cal__cell.is-selected { background: var(--brand); color: #fff; font-weight: 700; box-shadow: 0 6px 14px rgba(21,89,214,.34); }
.cal__cell.is-selected.is-today::after { background: #fff; }

/* Slots */
.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(98px, 1fr)); gap: 10px; min-height: 44px; }
.slots__empty { grid-column: 1/-1; color: var(--muted-2); margin: 0; font-size: .95rem; }
.slots__loading { grid-column: 1/-1; color: var(--muted-2); margin: 0; font-size: .95rem; display: flex; align-items: center; gap: 10px; }
.slots__spin { width: 16px; height: 16px; border: 2px solid var(--line); border-top-color: var(--brand); border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.slot { border: 1px solid var(--line); background: var(--bg); border-radius: 10px; padding: 11px 8px; cursor: pointer; font-family: var(--font); font-weight: 600; font-size: .92rem; color: var(--ink-2); transition: all .18s var(--ease); }
.slot:hover { border-color: var(--brand-300); color: var(--brand); transform: translateY(-1px); }
.slot.is-selected { background: var(--brand); border-color: var(--brand); color: #fff; box-shadow: 0 6px 14px rgba(21,89,214,.3); }

/* Fields */
.field { display: block; margin-bottom: 16px; }
.field__label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 7px; color: var(--ink-2); }
.field__label em { color: var(--muted-2); font-style: normal; font-weight: 500; }
.field input, .field select { width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px; font-family: var(--font); font-size: 1rem; color: var(--ink); background: var(--bg); transition: border-color .2s, box-shadow .2s; }
.field select { appearance: none; -webkit-appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235b6577' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; padding-right: 42px; }
.field input:focus, .field select:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(21,89,214,.14); }
.field input.is-error { border-color: #e0455e; box-shadow: 0 0 0 4px rgba(224,69,94,.12); }
.field__note { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: .86rem; margin: 4px 0 18px; }
.field__note .ic { fill: var(--good); }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.booker__error { color: #e0455e; font-weight: 600; font-size: .9rem; margin: 0 0 12px; }
.booker__submit { width: 100%; }
.booker__submit:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }
.booker__submit.is-loading { opacity: .8; cursor: progress; }
.booker__fineprint { color: var(--muted-2); font-size: .78rem; margin: 14px 0 0; line-height: 1.5; }

/* Summary rail */
.booker__summary { background: var(--bg-soft); color: var(--ink); padding: clamp(28px, 4vw, 44px); display: flex; align-items: center; }
.summary-card { width: 100%; }
.summary-card__title { font-family: var(--display); font-weight: 600; font-size: 1.5rem; margin: 0 0 24px; }
.summary-card__list { margin: 0 0 28px; display: grid; gap: 18px; }
.summary-card__list div { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; border-bottom: 1px solid var(--line); padding-bottom: 14px; }
.summary-card__list dt { color: var(--muted); font-size: .88rem; margin: 0; }
.summary-card__list dd { margin: 0; font-weight: 600; text-align: right; }
.summary-card__assure { display: flex; align-items: center; gap: 10px; background: rgba(16,185,129,.14); border: 1px solid rgba(16,185,129,.3); border-radius: 12px; padding: 13px 15px; font-size: .9rem; font-weight: 500; }
.summary-card__assure .ic { fill: var(--good); }

/* Success */
.booker__done { position: absolute; inset: 0; background: var(--bg); display: grid; place-items: center; padding: 40px; }
.booker__done[hidden] { display: none; }
.done-card { text-align: center; max-width: 420px; }
.done-card__check svg { width: 84px; height: 84px; margin: 0 auto 22px; }
.done-card h3 { font-family: var(--display); font-weight: 600; font-size: 1.8rem; margin: 0 0 10px; }
.done-card p { color: var(--muted); margin: 0 0 26px; }
@media (max-width: 860px) { .booker { grid-template-columns: 1fr; } .booker__summary { order: -1; } }

/* Booking section CTA (opens the overlay) */
.book__cta { text-align: center; }
.book__cta-note { color: var(--muted-2); font-size: .9rem; margin: 16px 0 0; }

/* ---------- Modal / booking overlay ---------- */
body.modal-open { overflow: hidden; }
.modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: clamp(12px, 3vw, 28px); }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(11,18,32,.55); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); animation: modalFade .25s var(--ease); }
.modal__dialog {
  position: relative; width: 100%; max-width: 940px; max-height: 92vh; overflow: auto;
  border-radius: var(--radius-lg); filter: drop-shadow(0 30px 60px rgba(11,18,32,.32));
  animation: modalPop .3s var(--ease);
}
.modal__dialog:focus { outline: none; }
.modal .booker { box-shadow: none; }
.modal__close {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  width: 38px; height: 38px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.92); color: var(--ink); font-size: 1.5rem; line-height: 1;
  box-shadow: var(--shadow-sm); transition: background .2s, transform .2s;
}
.modal__close:hover { background: #fff; transform: scale(1.06); }
@keyframes modalFade { from { opacity: 0; } }
@keyframes modalPop { from { opacity: 0; transform: translateY(16px) scale(.985); } }
@media (prefers-reduced-motion: reduce) { .modal__backdrop, .modal__dialog { animation: none; } }

/* ---------- FAQ ---------- */
.faq { padding: clamp(64px, 8vw, 120px) 0; background: var(--bg-soft); border-block: 1px solid var(--line); }
.faq__list { max-width: 820px; margin: 8px auto 0; }
.qa { border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg); margin-bottom: 14px; overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.qa[open] { box-shadow: var(--shadow); border-color: #dbe3f2; }
.qa summary { list-style: none; cursor: pointer; padding: 22px 26px; font-weight: 600; font-size: 1.08rem; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.qa summary::-webkit-details-marker { display: none; }
.qa__icon { position: relative; width: 18px; height: 18px; flex: none; }
.qa__icon::before, .qa__icon::after { content: ""; position: absolute; background: var(--brand); border-radius: 2px; transition: transform .3s var(--ease); }
.qa__icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.qa__icon::after { top: 0; left: 8px; width: 2px; height: 18px; }
.qa[open] .qa__icon::after { transform: rotate(90deg); opacity: 0; }
.qa__body { padding: 0 26px 24px; }
.qa__body p { margin: 0; color: var(--muted); }

/* ---------- CTA ---------- */
.cta { padding: clamp(64px, 8vw, 120px) 0; }
.cta__inner {
  text-align: center; background: linear-gradient(150deg, var(--brand), #103a98 70%, #0c2f7e);
  color: #fff; border-radius: var(--radius-lg); padding: clamp(48px, 7vw, 88px); position: relative; overflow: hidden;
}
.cta__inner::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 80% at 80% 0%, rgba(255,255,255,.18), transparent 60%); }
.cta__inner > * { position: relative; }
.cta__inner h2 { font-family: var(--display); font-weight: 600; font-size: clamp(1.8rem, 1.2rem + 2.4vw, 2.9rem); letter-spacing: -.02em; margin: 0 0 14px; }
.cta__inner p { color: rgba(255,255,255,.85); font-size: 1.15rem; margin: 0 0 32px; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #c4ccdb; padding: 64px 0 40px; }
.footer__inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__brand { max-width: 320px; }
.footer__brand .brand { color: #fff; margin-bottom: 14px; }
.footer__brand .brand__name-light { color: #8a93a3; }
.footer__brand p { color: #8a93a3; font-size: .95rem; margin: 0; }
.footer__links { display: flex; flex-wrap: wrap; gap: 14px 28px; align-content: start; }
.footer__links a { color: #c4ccdb; font-size: .95rem; transition: color .2s; }
.footer__links a:hover { color: #fff; }
.footer__legal { padding-top: 26px; }
.footer__legal p { color: #6b7488; font-size: .8rem; line-height: 1.6; margin: 0 0 10px; max-width: 75ch; }

/* ---------- Responsive grids ---------- */
@media (max-width: 860px) {
  .promise__grid, .how__grid { grid-template-columns: 1fr; }
}

/* ---------- Legal / Privacy page ---------- */
.legal-hero { padding: clamp(56px, 8vw, 104px) 0 clamp(28px, 4vw, 48px); border-bottom: 1px solid var(--line); }
.legal-hero h1 { font-family: var(--display); font-weight: 600; font-size: clamp(2rem, 1.4rem + 2.4vw, 3.2rem); letter-spacing: -.02em; margin: 0 0 12px; }
.legal-hero p { color: var(--muted); font-size: 1.05rem; margin: 0; }
.legal-hero .updated { color: var(--muted-2); font-size: .9rem; margin-top: 10px; }
.legal { padding: clamp(40px, 6vw, 72px) 0 clamp(56px, 8vw, 100px); }
.legal__wrap { max-width: 760px; margin: 0 auto; }
.legal__toc { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 26px; margin-bottom: 44px; }
.legal__toc h2 { font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin: 0 0 14px; }
.legal__toc ol { margin: 0; padding-left: 20px; columns: 2; column-gap: 32px; }
.legal__toc li { margin-bottom: 8px; }
.legal__toc a { color: var(--brand); }
.legal__toc a:hover { text-decoration: underline; }
.legal section { margin-bottom: 40px; scroll-margin-top: 90px; }
.legal h2 { font-family: var(--display); font-weight: 600; font-size: 1.5rem; letter-spacing: -.01em; margin: 0 0 14px; }
.legal h3 { font-size: 1.05rem; margin: 24px 0 8px; }
.legal p, .legal li { color: var(--ink-2); line-height: 1.7; }
.legal p { margin: 0 0 14px; }
.legal ul { margin: 0 0 14px; padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--brand); }
.legal a:hover { text-decoration: underline; }
.legal__note { background: var(--bg-tint); border: 1px solid #dbe3f2; border-radius: var(--radius-sm); padding: 16px 20px; font-size: .92rem; color: var(--ink-2); }
.legal__back { display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; font-weight: 600; color: var(--brand); }
@media (max-width: 560px) { .legal__toc ol { columns: 1; } }
