/* =========================================================
   EyeHub , Laser Vision Free Online Assessment Landing Page
   Design tokens derived from eyehub.net.au theme
   ========================================================= */

:root {
  /* Brand palette (from client theme) */
  --charcoal: #272B27;
  --sand: #D6CBB8;
  --gold: #B9A280;
  --cream: #F5F3EF;
  --rust: #8D5138;
  --rust-dark: #74412C;
  --brown: #8D5138;     /* LASIK card: EyeHub rust */
  --forest: #394C39;
  --forest-deep: #394C39;   /* one green only */
  --white: #FFFFFF;

  --ink: var(--charcoal);
  --ink-soft: rgba(39, 43, 39, 0.8);
  --ink-mute: rgba(39, 43, 39, 0.68);   /* 4.9:1 on cream, 5.1:1 on white */
  --line: rgba(39, 43, 39, 0.10);
  --line-strong: rgba(39, 43, 39, 0.18);

  --bg: var(--cream);
  --surface: var(--white);

  --font: "Inter", "Inter Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --r-sm: 0.625rem;   /* 10px */
  --r-md: 1rem;       /* 16px */
  --r-lg: 1.25rem;    /* 20px , brand card radius */
  --r-xl: 1.75rem;    /* 28px */
  --r-pill: 999px;

  --shadow-sm: 0 4px 14px rgba(39, 43, 39, 0.06);
  --shadow-md: 0 14px 40px rgba(39, 43, 39, 0.08);
  --shadow-lg: 0 30px 80px rgba(39, 43, 39, 0.14);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);
  --dur: 0.6s;

  --container: 1180px;
  --gutter: 24px;
  --header-h: 72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
p svg, span svg, b svg, a svg, .inc svg { display: inline-block; vertical-align: -0.15em; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--rust); outline-offset: 3px; border-radius: 6px; }
.on-dark :focus-visible, .proc.featured :focus-visible, .calc-tile.hot :focus-visible, .footer :focus-visible, .final :focus-visible, .modal :focus-visible, .day.selected:focus-visible, .slot.selected:focus-visible, .choice.selected:focus-visible { outline-color: var(--sand); }
.final .booking :focus-visible { outline-color: var(--rust); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rust);
}
.eyebrow::before { content: ""; width: 22px; height: 1.5px; background: currentColor; opacity: 0.7; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ""; width: 22px; height: 1.5px; background: currentColor; opacity: 0.7; }
.on-dark .eyebrow { color: var(--sand); }

.h1 {
  font-size: clamp(2.5rem, 5.4vw, 4.35rem);
  font-weight: 500; line-height: 1.02; letter-spacing: -0.028em;
  text-wrap: balance;
}
.h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 500; line-height: 1.08; letter-spacing: -0.024em;
  text-wrap: balance;
}
.h3 { font-size: 1.35rem; font-weight: 500; letter-spacing: -0.015em; line-height: 1.25; }
.lead { font-size: clamp(1.1rem, 1.35vw, 1.25rem); line-height: 1.55; color: var(--ink-soft); text-wrap: pretty; }
.muted { color: var(--ink-mute); }
.small { font-size: 0.9rem; }
.em { font-style: italic; font-weight: 400; color: var(--rust); }
.on-dark .em { color: var(--sand); }
.section-head { max-width: 720px; margin: 0 auto clamp(28px, 5vw, 56px); text-align: center; }
.section-head .h2 { margin: 18px 0 16px; }
.section-head.left { margin-left: 0; text-align: left; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
/* grid children must be allowed to shrink below their content's intrinsic width (scrollable rows etc.) */
.hero .container > *, .final .container > *, .pain-wrap > *, .why-wrap > *, .doc-wrap > *, .calc > *, .booking, .days { min-width: 0; }
.section { padding: clamp(56px, 9vw, 120px) 0; position: relative; }
.section.tight { padding: clamp(48px, 6vw, 72px) 0; }
.on-dark { background: var(--forest); color: var(--cream); }
.on-dark .lead { color: rgba(245, 243, 239, 0.78); }
.on-dark .muted { color: rgba(245, 243, 239, 0.6); }
.on-white { background: var(--white); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 17px 30px; border-radius: var(--r-pill);
  font-weight: 600; font-size: 1rem; line-height: 1; letter-spacing: -0.005em;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
  white-space: nowrap; user-select: none;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn-primary { background: var(--rust); color: var(--white); box-shadow: 0 10px 24px rgba(141, 81, 56, 0.28); }
.btn-primary:hover { background: var(--rust-dark); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(141, 81, 56, 0.34); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line-strong); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--ink); transform: translateY(-2px); }
.on-dark .btn-ghost { color: var(--cream); box-shadow: inset 0 0 0 1.5px rgba(245, 243, 239, 0.35); }
.on-dark .btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--cream); }
.btn-sm { padding: 12px 20px; font-size: 0.92rem; }
.btn-lg { padding: 20px 36px; font-size: 1.08rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.6; cursor: not-allowed; transform: none !important; }

/* ---------- Header ---------- */
/* A solid bar that the hero starts beneath: nothing bleeds through it and nothing sits under it. */
.header {
  position: sticky; top: 0; z-index: 50;
  height: var(--header-h);
  display: flex; align-items: center;
  background: var(--cream);
  transition: box-shadow 0.4s var(--ease);
}
.header.scrolled { box-shadow: 0 1px 0 var(--line), 0 10px 30px rgba(39, 43, 39, 0.06); }
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: nowrap; }
.logo { flex: none; display: block; }
.logo img { height: 44px; width: auto; }
.header-right { display: flex; align-items: center; gap: 20px; flex: none; }
.phone-link { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: 0.98rem; color: var(--ink); white-space: nowrap; }
.phone-link svg { width: 18px; height: 18px; color: var(--rust); flex: none; }
.phone-link span small { display: block; font-size: 10.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); line-height: 1; margin-bottom: 4px; }
@media (max-width: 900px) { .phone-link span small { display: none; } }
@media (max-width: 720px) {
  :root { --header-h: 62px; }
  .header-right .btn { display: none; }
  .logo img { height: 36px; }
  .phone-link { padding: 9px 14px 9px 12px; border-radius: var(--r-pill); box-shadow: inset 0 0 0 1.5px var(--line-strong); font-size: 0.92rem; }
  .phone-link svg { width: 16px; height: 16px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(32px, 4.5vw, 64px) 0 clamp(64px, 7vw, 96px);
}
/* the sand texture fades in below the header instead of being cut off by it */
.hero-bg::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 140px; z-index: 1; background: linear-gradient(180deg, var(--cream) 0%, rgba(245, 243, 239, 0) 100%); }
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.hero-bg img {
  position: absolute; right: -8%; top: -10%; width: 70%; height: 120%; object-fit: cover;
  opacity: 0.55;
  -webkit-mask-image: radial-gradient(70% 70% at 70% 40%, #000 30%, transparent 75%);
  mask-image: radial-gradient(70% 70% at 70% 40%, #000 30%, transparent 75%);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(245, 243, 239,0) 60%, var(--cream) 100%);
}
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero-copy { max-width: 600px; }
.hero-copy .h1 { margin: 22px 0 22px; }
.hero-copy .lead { max-width: 540px; }
.hero-actions { display: flex; align-items: center; gap: 18px; margin-top: 34px; flex-wrap: wrap; }
.micro-trust { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 26px; }
.micro-trust li { display: inline-flex; align-items: center; gap: 8px; font-size: 0.92rem; color: var(--ink-soft); font-weight: 500; }
.micro-trust svg { width: 16px; height: 16px; color: var(--forest); flex: none; }

/* headline blur-to-clear */
.h1 .w { display: inline-block; opacity: 0; filter: blur(14px); transform: translateY(0.25em); animation: unblur 1.1s var(--ease) forwards; animation-delay: calc(0.15s + var(--i) * 0.07s); }
@keyframes unblur { to { opacity: 1; filter: blur(0); transform: translateY(0); } }
.js .fade-up { opacity: 0; transform: translateY(18px); animation: fadeUp 0.9s var(--ease) forwards; animation-delay: var(--d, 0s); }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-copy { max-width: 640px; }
  .hero-bg img { width: 110%; right: -20%; top: -20%; opacity: 0.35; }
}

/* ---------- Booking card ---------- */
.booking {
  position: relative;
  background: var(--surface);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(39,43,39,0.05);
  padding: 26px 26px 24px;
  transition: box-shadow 0.5s var(--ease), transform 0.5s var(--ease);
}
.booking.pulse { animation: pulseCard 1.4s var(--ease) 1; }
@keyframes pulseCard {
  0% { box-shadow: var(--shadow-lg), 0 0 0 0 rgba(141, 81, 56,0.0); }
  30% { box-shadow: var(--shadow-lg), 0 0 0 10px rgba(141, 81, 56,0.22); }
  100% { box-shadow: var(--shadow-lg), 0 0 0 1px rgba(39,43,39,0.05); }
}
.booking-head { display: grid; grid-template-columns: 1fr auto; grid-template-areas: "h pill" "p p"; align-items: start; column-gap: 14px; row-gap: 5px; margin-bottom: 16px; }
.booking-head h2, .booking-head h3 { grid-area: h; }
.booking-head .free-pill { grid-area: pill; }
.booking-head p { grid-area: p; }
.booking-head h2, .booking-head h3 { margin: 0; font-size: 1.28rem; font-weight: 600; letter-spacing: -0.02em; line-height: 1.2; }
.booking-head p { color: var(--ink-mute); font-size: 0.92rem; margin: 0; }
.free-pill { flex: none; display: inline-flex; align-items: center; gap: 6px; padding: 7px 12px; border-radius: var(--r-pill); background: rgba(57,76,57,0.09); color: var(--forest); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.free-pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--forest); box-shadow: 0 0 0 0 rgba(57,76,57,0.5); animation: ping 2s infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(57,76,57,0.45); } 70% { box-shadow: 0 0 0 8px rgba(57,76,57,0); } 100% { box-shadow: 0 0 0 0 rgba(57,76,57,0); } }

.steps { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 18px; }
.step-ind { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: var(--r-sm); background: rgba(39,43,39,0.04); color: var(--ink-mute); font-size: 0.86rem; font-weight: 600; transition: all 0.4s var(--ease); }
.step-ind .n { width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; font-size: 12px; background: rgba(39,43,39,0.08); color: var(--ink-soft); transition: all 0.4s var(--ease); }
.step-ind.active { background: rgba(141, 81, 56,0.09); color: var(--rust); }
.step-ind.active .n { background: var(--rust); color: #fff; }
.step-ind.done { color: var(--forest); background: rgba(57,76,57,0.08); }
.step-ind.done .n { background: var(--forest); color: #fff; }

.pane { display: none; }
.pane.active { display: block; animation: paneIn 0.5s var(--ease); }
@keyframes paneIn { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: none; } }

.field-label { display: flex; align-items: center; justify-content: space-between; font-size: 0.86rem; font-weight: 600; letter-spacing: 0.02em; color: var(--ink-soft); margin: 0 0 10px; }
.field-label .hint { font-weight: 500; color: var(--ink-mute); letter-spacing: 0; }

.days { display: flex; gap: 8px; overflow-x: auto; padding: 4px 2px 10px; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: var(--sand) transparent; }
.days::-webkit-scrollbar { height: 5px; }
.days::-webkit-scrollbar-thumb { background: var(--sand); border-radius: 10px; }
.day { flex: none; width: 64px; scroll-snap-align: start; padding: 10px 6px 9px; border-radius: 14px; border: 1.5px solid var(--line); background: #fff; text-align: center; transition: all 0.25s var(--ease); }
.day small { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); }
.day b { display: block; font-size: 1.25rem; font-weight: 600; line-height: 1.15; margin: 3px 0 1px; letter-spacing: -0.02em; }
.day em { display: block; font-style: normal; font-size: 11px; color: var(--ink-mute); }
.day:hover { border-color: var(--ink); transform: translateY(-2px); }
.day.selected { background: var(--charcoal); border-color: var(--charcoal); color: var(--cream); }
.day.selected small, .day.selected em { color: rgba(245, 243, 239,0.7); }

.slots-wrap { margin-top: 18px; }
.slot-group { margin-bottom: 14px; }
.slot-group h5, .slot-title { margin: 0 0 8px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); font-weight: 700; }
.slots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.slot { padding: 10px 6px; border-radius: var(--r-sm); border: 1.5px solid var(--line); background: #fff; font-size: 0.92rem; font-weight: 600; letter-spacing: -0.01em; transition: all 0.22s var(--ease); position: relative; }
.slot:hover { border-color: var(--ink); transform: translateY(-1px); }
.slot.selected { background: var(--rust); border-color: var(--rust); color: #fff; box-shadow: 0 8px 20px rgba(141, 81, 56,0.28); }
.slot.held { color: rgba(39,43,39,0.5); border-style: dashed; border-color: var(--line-strong); cursor: not-allowed; background: transparent; }
.slot.held:hover, .slot.held:active { transform: none; border-color: var(--line-strong); }
@media (max-width: 360px) { .field-label { flex-wrap: wrap; gap: 2px 8px; } }
.slots-call { margin: 4px 0 0; font-size: 0.82rem; line-height: 1.5; color: var(--ink-mute); }
.slots-call a { color: var(--rust); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }
.slots-empty { padding: 20px; border-radius: var(--r-sm); background: rgba(39,43,39,0.04); color: var(--ink-mute); font-size: 0.92rem; text-align: center; }
.tz-note { margin-top: 12px; font-size: 0.8rem; color: var(--ink-mute); display: flex; align-items: center; gap: 6px; }
.tz-note svg { width: 14px; height: 14px; }

.chosen { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 14px; border-radius: var(--r-md); background: rgba(57,76,57,0.07); border: 1px solid rgba(57,76,57,0.15); margin-bottom: 18px; }
.chosen .ic { width: 38px; height: 38px; border-radius: 10px; background: var(--forest); color: #fff; display: grid; place-items: center; flex: none; }
.chosen .ic svg { width: 18px; height: 18px; }
.chosen .txt { flex: 1; min-width: 0; }
.chosen .txt b { display: block; font-size: 0.98rem; font-weight: 600; letter-spacing: -0.01em; }
.chosen .txt span { display: block; font-size: 0.82rem; color: var(--ink-mute); }
.chosen .change { font-size: 0.85rem; font-weight: 600; color: var(--rust); text-decoration: underline; text-underline-offset: 3px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-grid .full { grid-column: 1 / -1; }
.input-wrap { position: relative; }
.input-wrap label { position: absolute; left: 16px; top: 15px; font-size: 0.95rem; color: var(--ink-mute); pointer-events: none; transition: all 0.2s var(--ease); background: #fff; padding: 0 4px; }
.input {
  width: 100%; height: 54px; padding: 18px 16px 4px; border-radius: 12px;
  border: 1.5px solid rgba(39, 43, 39, 0.5); background: #fff; outline: none;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.input:focus { border-color: var(--rust); box-shadow: 0 0 0 4px rgba(141, 81, 56,0.12); }
.input:focus + label, .input:not(:placeholder-shown) + label { top: 7px; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; color: var(--ink-mute); }
.input.invalid { border-color: #b8432e; }
.input.invalid + label { color: #b8432e; }
.err { display: none; font-size: 0.8rem; color: #b8432e; margin-top: 6px; }
.input-wrap.has-error .err { display: block; }

.choice-row { display: flex; flex-wrap: wrap; gap: 8px; }
.choice { padding: 10px 14px; border-radius: var(--r-pill); border: 1.5px solid var(--line); background: #fff; font-size: 0.88rem; font-weight: 600; transition: all 0.22s var(--ease); }
.choice:hover { border-color: var(--ink); }
.choice.selected { background: var(--charcoal); border-color: var(--charcoal); color: var(--cream); }

.privacy { font-size: 0.78rem; color: var(--ink-mute); line-height: 1.5; margin-top: 14px; text-align: center; }
.privacy a { text-decoration: underline; text-underline-offset: 2px; }
.privacy svg { width: 12px; height: 12px; display: inline-block; vertical-align: -2px; margin-right: 2px; }
.form-msg { display: none; margin-top: 12px; padding: 12px 14px; border-radius: var(--r-sm); font-size: 0.88rem; }
.form-msg.error { display: block; background: rgba(184,67,46,0.08); color: #9b3822; }
.honey { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

.booking-actions { display: flex; gap: 10px; margin-top: 18px; }
.booking-actions .btn { flex: 1; }
.btn.loading { pointer-events: none; }
.btn.loading .lbl { opacity: 0; }
.btn .spin { position: absolute; width: 20px; height: 20px; border: 2.5px solid rgba(255,255,255,0.35); border-top-color: #fff; border-radius: 50%; animation: spin 0.8s linear infinite; display: none; }
.btn.loading .spin { display: block; }
.btn { position: relative; }
@keyframes spin { to { transform: rotate(360deg); } }

/* success state */
.success { text-align: center; padding: 8px 0 4px; }
.check-ring { width: 84px; height: 84px; margin: 4px auto 18px; border-radius: 50%; background: rgba(57,76,57,0.1); display: grid; place-items: center; }
.check-ring svg { width: 40px; height: 40px; color: var(--forest); }
.check-ring svg path { stroke-dasharray: 60; stroke-dashoffset: 60; animation: draw 0.7s var(--ease) 0.2s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.success h4 { font-size: 1.35rem; font-weight: 600; letter-spacing: -0.02em; margin: 0 0 8px; }
.success p { color: var(--ink-soft); font-size: 0.95rem; }
.success .summary { margin: 18px 0; padding: 14px; border-radius: var(--r-md); background: rgba(39,43,39,0.04); text-align: left; font-size: 0.92rem; }
.success .summary div { display: flex; justify-content: space-between; gap: 12px; padding: 4px 0; }
.success .summary div span:first-child { color: var(--ink-mute); }
.next-steps { text-align: left; margin: 16px 0 6px; }
.next-steps li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; color: var(--ink-soft); padding: 6px 0; }
.next-steps li svg { width: 18px; height: 18px; color: var(--forest); flex: none; margin-top: 2px; }

@media (max-width: 480px) {
  .booking { padding: 22px 18px 20px; border-radius: var(--r-lg); }
  .slots { grid-template-columns: repeat(3, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
}

/* ---------- Trust bar ---------- */
.trust { padding: 10px 0 0; }
.trust-inner { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 26px 0; display: flex; align-items: center; gap: 28px 40px; flex-wrap: wrap; justify-content: center; }
.trust-inner p { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); font-weight: 600; flex: 0 1 auto; max-width: 100%; text-align: center; line-height: 1.6; }
.trust-logos { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: center; }
.trust-logos img { height: 34px; width: auto; filter: grayscale(1) contrast(0.9); opacity: 0.6; transition: all 0.4s var(--ease); }
.trust-logos img:hover { filter: none; opacity: 1; }
@media (max-width: 720px) { .trust-logos { gap: 18px 22px; } .trust-logos img { height: 24px; } .trust-inner { gap: 16px; padding: 20px 0; } }

/* ---------- Compare (blur → clear) ---------- */
.compare-section { padding: clamp(56px, 7vw, 96px) 0 0; }
.compare { position: relative; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 16 / 8.2; box-shadow: var(--shadow-lg); user-select: none; isolation: isolate; background: var(--sand); }
.compare img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.compare .blur { filter: blur(9px) saturate(0.85) brightness(0.96); transform: scale(1.04); }
.compare .clear { clip-path: inset(0 0 0 var(--pos, 50%)); }
.compare .handle { position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 2px; background: rgba(255,255,255,0.95); transform: translateX(-50%); box-shadow: 0 0 20px rgba(0,0,0,0.25); pointer-events: none; }
.compare .knob { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 58px; height: 58px; border-radius: 50%; background: rgba(255,255,255,0.95); display: grid; place-items: center; box-shadow: 0 10px 30px rgba(0,0,0,0.25); color: var(--charcoal); }
.compare .knob svg { width: 26px; height: 26px; }
.compare input[type=range] { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; -webkit-appearance: none; appearance: none; z-index: 3; }
.compare input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 60px; height: 100%; }
.compare .tag { position: absolute; bottom: 20px; padding: 9px 14px; border-radius: var(--r-pill); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); z-index: 2; pointer-events: none; }
.compare .tag.l { left: 20px; background: rgba(39,43,39,0.78); color: rgba(255,255,255,0.92); }
.compare .tag.r { right: 20px; background: rgba(255,255,255,0.85); color: var(--charcoal); }
.compare-caption { text-align: center; margin-top: 18px; color: var(--ink-mute); font-size: 0.92rem; display: flex; align-items: center; justify-content: center; gap: 8px; }
.compare-caption svg { width: 16px; height: 16px; }
@media (max-width: 720px) { .compare { aspect-ratio: 4 / 4.2; border-radius: var(--r-lg); } .compare .tag { bottom: 14px; font-size: 10px; } .compare .tag.l { left: 12px; } .compare .tag.r { right: 12px; } }

/* ---------- Why EyeHub (dark) ---------- */
.why-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.why-media { position: relative; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4 / 4.4; box-shadow: 0 30px 80px rgba(0,0,0,0.35); }
.why-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.why-media .stamp { position: absolute; top: 20px; left: 20px; background: rgba(245, 243, 239,0.92); color: var(--charcoal); border-radius: var(--r-md); padding: 12px 16px; backdrop-filter: blur(8px); }
.why-media .stamp b { display: block; font-size: 1.6rem; letter-spacing: -0.03em; line-height: 1; font-weight: 600; }
.why-media .stamp span { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); }
.why-media .zeiss { position: absolute; bottom: 20px; right: 20px; left: 20px; display: flex; gap: 12px; align-items: center; background: rgba(39,43,39,0.72); color: #fff; border-radius: var(--r-md); padding: 12px 14px; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.why-media .zeiss b { display: block; font-size: 0.95rem; }
.why-media .zeiss span { font-size: 0.8rem; opacity: 0.75; }
.why-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 34px; }
.why-item { padding: 20px 20px 18px; border-radius: var(--r-md); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); transition: background 0.4s var(--ease), transform 0.4s var(--ease); }
.why-item:hover { background: rgba(255,255,255,0.09); transform: translateY(-3px); }
.why-item svg { width: 22px; height: 22px; color: var(--sand); margin-bottom: 12px; }
.why-item b { display: block; font-weight: 600; letter-spacing: -0.01em; font-size: 1rem; margin-bottom: 5px; }
.why-item p { font-size: 0.9rem; color: rgba(245, 243, 239,0.72); line-height: 1.5; }
@media (max-width: 980px) { .why-wrap { grid-template-columns: 1fr; } .why-media { aspect-ratio: 16 / 11; } }
@media (max-width: 560px) { .why-list { grid-template-columns: 1fr; } }

/* ---------- How it works ---------- */
.how { position: relative; }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; counter-reset: step; }
.how-steps::before { content: ""; position: absolute; top: 34px; left: 12%; right: 12%; height: 1.5px; background: linear-gradient(90deg, transparent, var(--line-strong) 15%, var(--line-strong) 85%, transparent); transform-origin: left; transition: transform 1.4s var(--ease) 0.2s; }
.js .how-steps::before { transform: scaleX(0); }
.js .how-steps.in::before { transform: scaleX(1); }
.how-step { position: relative; text-align: center; padding: 0 12px; }
.how-step .num { width: 68px; height: 68px; margin: 0 auto 20px; border-radius: 50%; background: var(--white); border: 1.5px solid var(--line-strong); display: grid; place-items: center; font-size: 1.15rem; font-weight: 600; color: var(--rust); position: relative; z-index: 1; transition: all 0.5s var(--ease); }
.how-step:hover .num { background: var(--rust); color: #fff; border-color: var(--rust); transform: scale(1.06); }
.how-step .t { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; color: var(--ink-mute); margin-bottom: 8px; }
.how-step h3 { font-size: 1.22rem; font-weight: 600; letter-spacing: -0.015em; margin-bottom: 8px; }
.how-step p { color: var(--ink-soft); font-size: 0.96rem; line-height: 1.55; }
.how-cta { text-align: center; margin-top: 48px; }
@media (max-width: 860px) { .how-steps { grid-template-columns: 1fr; gap: 30px; } .how-steps::before { display: none; } }

/* ---------- Calculator ---------- */
.calc { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; background: var(--white); border-radius: var(--r-xl); border: 1px solid var(--line); box-shadow: var(--shadow-md); padding: clamp(28px, 4vw, 52px); }
.calc .h2 { font-size: clamp(1.7rem, 2.8vw, 2.4rem); margin: 14px 0 14px; }
.range-wrap { margin: 26px 0 6px; }
.range-out { display: flex; align-items: baseline; gap: 10px; margin-bottom: 14px; }
.range-out b { font-size: clamp(2rem, 3.4vw, 2.8rem); letter-spacing: -0.03em; font-weight: 600; line-height: 1; }
.range-out span { color: var(--ink-mute); font-size: 0.95rem; }
input[type=range].range { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 10px; background: linear-gradient(90deg, var(--rust) var(--fill, 30%), rgba(39,43,39,0.12) var(--fill, 30%)); }
input[type=range].range::-webkit-slider-thumb { -webkit-appearance: none; width: 28px; height: 28px; border-radius: 50%; background: #fff; border: 3px solid var(--rust); box-shadow: 0 6px 16px rgba(141, 81, 56,0.35); cursor: grab; transition: transform 0.2s var(--ease); }
input[type=range].range::-webkit-slider-thumb:hover { transform: scale(1.1); }
input[type=range].range::-moz-range-thumb { width: 28px; height: 28px; border-radius: 50%; background: #fff; border: 3px solid var(--rust); box-shadow: 0 6px 16px rgba(141, 81, 56,0.35); cursor: grab; }
.range-ticks { display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--ink-mute); margin-top: 8px; }
.calc-result { display: grid; gap: 12px; }
.calc-tile { padding: 22px 24px; border-radius: var(--r-lg); background: var(--cream); border: 1px solid var(--line); }
.calc-tile.hot { background: var(--charcoal); color: var(--cream); border-color: var(--charcoal); }
.calc-tile small { display: block; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; color: var(--ink-mute); margin-bottom: 8px; }
.calc-tile.hot small { color: rgba(245, 243, 239,0.6); }
.calc-tile b { display: block; font-size: clamp(1.8rem, 3vw, 2.5rem); letter-spacing: -0.03em; font-weight: 600; line-height: 1; font-variant-numeric: tabular-nums; }
.calc-tile span { display: block; margin-top: 8px; font-size: 0.9rem; color: var(--ink-mute); }
.calc-tile.hot span { color: rgba(245, 243, 239,0.7); }
.calc-tile .vs { display: inline-block; margin-top: 12px; padding: 6px 10px; border-radius: var(--r-pill); background: rgba(214, 203, 184,0.2); color: var(--sand); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
@media (max-width: 900px) { .calc { grid-template-columns: 1fr; } }

/* ---------- Pricing ---------- */
.price-table { background: var(--white); border-radius: var(--r-xl); border: 1px solid var(--line); overflow: hidden; box-shadow: var(--shadow-md); }
.price-row { display: grid; grid-template-columns: 1.3fr 1.7fr 0.8fr; gap: 20px; align-items: center; padding: 26px 32px; border-top: 1px solid var(--line); transition: background 0.3s var(--ease); }
.price-row:first-child { border-top: 0; }
.price-row:hover { background: rgba(245, 243, 239,0.6); }
.price-row h3 { font-size: 1.2rem; font-weight: 600; letter-spacing: -0.015em; }
.price-row h3 small { display: block; font-size: 0.82rem; font-weight: 500; color: var(--ink-mute); margin-top: 4px; letter-spacing: 0; }
.price-row .inc { font-size: 0.92rem; color: var(--ink-soft); }
.price-row .inc svg { width: 15px; height: 15px; color: var(--forest); vertical-align: -2px; margin-right: 6px; display: inline-block; }
.price-row .amt { text-align: right; }
.price-row .amt b { display: block; font-size: 1.7rem; letter-spacing: -0.03em; font-weight: 600; line-height: 1; }
.price-row .amt span { display: block; font-size: 0.8rem; color: var(--ink-mute); margin-top: 6px; }
.price-foot { padding: 22px 32px; background: var(--cream); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; border-top: 1px solid var(--line); }
.price-foot p { font-size: 0.9rem; color: var(--ink-soft); }
.fin-logos { display: flex; align-items: center; gap: 10px; }
.fin-logos span { display: inline-flex; align-items: center; gap: 6px; padding: 8px 12px; border-radius: var(--r-pill); background: #fff; border: 1px solid var(--line); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.02em; }
@media (max-width: 860px) { .price-row { grid-template-columns: 1fr; gap: 10px; padding: 22px 20px; } .price-row .amt { text-align: left; display: flex; align-items: baseline; gap: 10px; } .price-foot { padding: 18px 20px; } }

/* ---------- Doctor ---------- */
.doc-wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.doc-media { position: relative; }
.doc-media img { width: 100%; border-radius: var(--r-xl); box-shadow: var(--shadow-lg); aspect-ratio: 1; object-fit: cover; }
.doc-media .cred { position: absolute; right: -14px; bottom: 28px; background: var(--white); border-radius: var(--r-md); padding: 14px 18px; box-shadow: var(--shadow-md); display: flex; gap: 12px; align-items: center; max-width: 280px; }
.doc-media .cred img { width: 44px; height: 44px; border-radius: 12px; box-shadow: none; aspect-ratio: 1; object-fit: contain; background: var(--charcoal); padding: 8px; }
.doc-media .cred b { display: block; font-size: 0.9rem; letter-spacing: -0.01em; }
.doc-media .cred span { font-size: 0.8rem; color: var(--ink-mute); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 26px; }
.chip { padding: 8px 13px; border-radius: var(--r-pill); background: var(--white); border: 1px solid var(--line); font-size: 0.82rem; font-weight: 600; color: var(--ink-soft); }
.quote { position: relative; padding: 22px 26px; border-left: 3px solid var(--rust); background: var(--white); border-radius: 0 var(--r-lg) var(--r-lg) 0; font-size: 1.1rem; line-height: 1.55; font-style: italic; color: var(--ink); }
.quote cite { display: block; margin-top: 12px; font-style: normal; font-size: 0.86rem; color: var(--ink-mute); font-weight: 600; }
@media (max-width: 980px) { .doc-wrap { grid-template-columns: 1fr; } .doc-media { max-width: 480px; } .doc-media .cred { right: 12px; } }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 4px; text-align: left; font-size: 1.08rem; font-weight: 600; letter-spacing: -0.01em; transition: color 0.3s var(--ease); }
.faq-q:hover { color: var(--rust); }
.faq-q .pm { flex: none; width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--line-strong); display: grid; place-items: center; transition: all 0.4s var(--ease); }
.faq-q .pm svg { width: 16px; height: 16px; transition: transform 0.4s var(--ease); }
.faq-item.open .faq-q .pm { background: var(--charcoal); border-color: var(--charcoal); color: var(--cream); }
.faq-item.open .faq-q .pm svg { transform: rotate(45deg); }
.faq-a { display: grid; grid-template-rows: 1fr; transition: grid-template-rows 0.5s var(--ease); }
.js .faq-a { grid-template-rows: 0fr; }
.js .faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p { padding: 0 60px 22px 4px; color: var(--ink-soft); line-height: 1.6; }
@media (max-width: 560px) { .faq-a p { padding-right: 4px; } }

/* ---------- Final CTA ---------- */
.final { position: relative; overflow: hidden; color: var(--cream); }
.final-bg { position: absolute; inset: 0; }
.final-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.final-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(57, 76, 57,0.92) 0%, rgba(57, 76, 57,0.78) 45%, rgba(57, 76, 57,0.45) 100%); }
.final .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.final .h2 { margin: 18px 0 16px; }
.final .booking { color: var(--ink); }
.final .lead { color: rgba(245, 243, 239,0.82); }
.final .ok-list { margin-top: 26px; display: grid; gap: 10px; }
.final .ok-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.98rem; color: rgba(245, 243, 239,0.88); }
.final .ok-list svg { width: 18px; height: 18px; flex: none; color: var(--sand); margin-top: 3px; }
@media (max-width: 980px) { .final .container { grid-template-columns: 1fr; } .final-bg::after { background: linear-gradient(180deg, rgba(57, 76, 57,0.9) 0%, rgba(57, 76, 57,0.85) 100%); } }

/* ---------- Footer ---------- */
.footer { background: var(--charcoal); color: rgba(245, 243, 239,0.7); padding: 56px 0 120px; font-size: 0.88rem; }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-top img { height: 120px; width: auto; }
.footer-contact { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-contact a { display: inline-flex; align-items: center; gap: 8px; color: var(--cream); font-weight: 500; }
.footer-contact svg { width: 16px; height: 16px; color: var(--sand); }
.footer-note { padding: 24px 0 0; display: grid; gap: 12px; max-width: 900px; line-height: 1.55; }
.footer-note strong { color: rgba(245, 243, 239,0.9); }
.footer-bottom { margin-top: 26px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.8rem; color: rgba(245, 243, 239,0.68); }
.footer-bottom a { text-decoration: underline; text-underline-offset: 2px; }
@media (min-width: 1024px) { .footer { padding-bottom: 56px; } }

/* ---------- Mobile sticky bar ---------- */
.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 -8px 30px rgba(39,43,39,0.12);
  display: flex; gap: 10px; align-items: center;
  transform: translateY(110%); visibility: hidden; transition: transform 0.5s var(--ease), visibility 0s linear 0.5s;
}
.sticky-bar.show { transform: translateY(0); visibility: visible; transition-delay: 0s; }
.sticky-bar .btn { flex: 1; padding: 15px 14px; font-size: 0.95rem; }
.sticky-bar .call { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: var(--cream); color: var(--charcoal); flex: none; box-shadow: inset 0 0 0 1.5px var(--line-strong); }
.sticky-bar .call svg { width: 20px; height: 20px; }
@media (min-width: 1024px) { .sticky-bar { display: none; } }

/* ---------- Scroll reveal ---------- */
/* entrance states apply only once JS has booted (html.js), so no-JS viewers and thumbnails see the page at rest */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); transition-delay: calc(var(--i, 0) * 90ms); }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal-scale { opacity: 0; transform: scale(0.96); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.js .reveal-scale.in { opacity: 1; transform: none; }

/* ---------- Utilities ---------- */
.center { text-align: center; }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; } .mt-5 { margin-top: 48px; }
.divider-soft { height: 1px; background: var(--line); }
.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; }

/* ---------- No-effects mode (?nofx or reduced motion): everything visible, no entrances ---------- */
.nofx .reveal, .nofx .reveal-scale, .nofx .fade-up, .nofx .h1 .w { opacity: 1 !important; transform: none !important; filter: none !important; animation: none !important; transition: none !important; }
.nofx .how-steps::before { transform: scaleX(1); transition: none; }
.nofx .free-pill::before { animation: none; }

/* ---------- Calculator link ---------- */
.calc-tile a.vs { text-decoration: none; }
.calc-tile a.vs:hover { background: rgba(214, 203, 184,0.32); }

/* ---------- Social proof ---------- */
.proof { background: var(--cream); }
.rating { display: inline-flex; align-items: center; gap: 12px; margin-top: 6px; padding: 10px 16px; border-radius: var(--r-pill); background: var(--white); border: 1px solid var(--line); font-size: 0.9rem; color: var(--ink-soft); }
.stars { color: #8F6A1C; letter-spacing: 0.08em; font-size: 0.95rem; }
.rating .rt b { color: var(--ink); font-weight: 600; }
.videos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 22px; }
.video { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 16 / 10; text-align: left; display: block; width: 100%; box-shadow: var(--shadow-sm); transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); background: var(--charcoal); }
.video img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.video::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(39,43,39,0) 40%, rgba(39,43,39,0.75) 100%); }
.video:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.video:hover img { transform: scale(1.06); }
.play { position: absolute; z-index: 2; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,0.92); color: var(--charcoal); display: grid; place-items: center; box-shadow: 0 10px 30px rgba(0,0,0,0.3); transition: transform 0.4s var(--ease), background 0.4s var(--ease); }
.play svg { width: 26px; height: 26px; margin-left: 3px; }
.video:hover .play { transform: translate(-50%, -50%) scale(1.08); background: var(--rust); color: #fff; }
.vmeta { position: absolute; z-index: 2; left: 18px; right: 18px; bottom: 16px; color: #fff; }
.vmeta b { display: block; font-weight: 600; font-size: 1rem; letter-spacing: -0.01em; }
.vmeta span { font-size: 0.82rem; opacity: 0.8; }
.quotes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.quote-card { margin: 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px 22px 20px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease); }
.quote-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.quote-card .stars { font-size: 0.85rem; margin-bottom: 12px; }
.quote-card blockquote { margin: 0 0 16px; font-size: 0.98rem; line-height: 1.55; color: var(--ink); flex: 1; }
.quote-card figcaption b { display: block; font-size: 0.92rem; font-weight: 600; }
.quote-card figcaption span { font-size: 0.8rem; color: var(--ink-mute); }
.proof-note { margin-top: 18px; text-align: center; font-size: 0.78rem; color: var(--ink-mute); }
@media (max-width: 1100px) { .quotes { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 860px) {
  .videos { grid-template-columns: 1fr; gap: 12px; }
  .video { aspect-ratio: 16 / 9; }
  .quotes { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px 4px 14px; margin: 0 -4px; scrollbar-width: thin; scrollbar-color: var(--sand) transparent; }
  .quote-card { flex: 0 0 82%; scroll-snap-align: start; }
}

/* ---------- Video modal ---------- */
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal-bg { position: absolute; inset: 0; background: rgba(39,43,39,0.72); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); animation: fadeIn 0.3s var(--ease); }
.modal-box { position: relative; width: min(920px, 100%); border-radius: var(--r-lg); overflow: hidden; background: var(--charcoal); box-shadow: var(--shadow-lg); animation: paneIn 0.45s var(--ease); }
.modal-x { position: absolute; top: 10px; right: 12px; z-index: 2; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.15); color: #fff; font-size: 26px; line-height: 1; display: grid; place-items: center; }
.modal-x:hover { background: rgba(255,255,255,0.3); }
.modal-frame { aspect-ratio: 16 / 9; position: relative; }
.modal-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.modal-empty { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: 8px; color: var(--cream); text-align: center; background: radial-gradient(60% 80% at 50% 50%, rgba(57,76,57,0.7), var(--charcoal)); }
.modal-empty .play { position: static; transform: none; margin-bottom: 8px; }
.modal-empty b { font-size: 1.2rem; }
.modal-empty span { font-size: 0.9rem; opacity: 0.7; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---------- Mobile-only helpers ---------- */
.show-m { display: none; }
@media (max-width: 640px) { .hide-m { display: none; } .show-m { display: inline; } }

/* ---------- Small additions ---------- */
.bridge { margin-top: 24px; padding: 16px 18px; border-radius: var(--r-md); background: rgba(57,76,57,0.07); border-left: 3px solid var(--forest); font-size: 0.98rem; color: var(--ink); line-height: 1.55; }
.footer-contact .loc { display: inline-flex; align-items: center; gap: 8px; }
.footer-contact .loc svg { width: 16px; height: 16px; color: var(--sand); }
.how-cta .small { max-width: 560px; margin-left: auto; margin-right: auto; }

/* ---------- Review pass additions ---------- */
.range:focus-visible::-webkit-slider-thumb { box-shadow: 0 0 0 4px var(--white), 0 0 0 7px var(--rust); }
.range:focus-visible::-moz-range-thumb { box-shadow: 0 0 0 4px var(--white), 0 0 0 7px var(--rust); }
.range:focus-visible { outline: none; }
.compare:has(input:focus-visible) .knob { outline: 3px solid var(--rust); outline-offset: 3px; }
.bk-terms { margin: 16px 0 0; padding-top: 14px; border-top: 1px solid var(--line); font-size: 0.78rem; line-height: 1.5; color: var(--ink-mute); }
.booking.done .bk-terms { display: none; }
.demo-tag { font-weight: 600; color: var(--rust); }
.success h4:focus { outline: none; }
.warn { max-width: 820px; margin: 28px auto 0; padding: 16px 20px; border-radius: var(--r-md); border: 1px solid var(--line-strong); background: rgba(245, 243, 239, 0.7); font-size: 0.95rem; line-height: 1.55; color: var(--ink-soft); text-align: center; }
.on-white .warn { background: var(--cream); }
.warn strong { color: var(--ink); }
.rating .rt { font-size: 0.9rem; }
.chosen .change { padding: 8px 4px; }

/* ---------- Mobile + robustness pass ---------- */
.btn svg, .tz-note svg, .compare-caption svg, .micro-trust svg, .ok-list svg { flex: none; }
@media (max-width: 480px) {
  .btn { white-space: normal; text-align: center; text-wrap: balance; line-height: 1.2; max-width: 100%; padding-left: 22px; padding-right: 22px; }
  .btn-lg { font-size: 1rem; }
  .booking-actions .btn-lg { padding: 18px 12px; font-size: 0.95rem; gap: 8px; }
  .why-media { aspect-ratio: 1 / 1; }
}
@media (max-width: 360px) { .slot { padding: 10px 2px; font-size: 0.86rem; white-space: nowrap; } }
/* iOS safe areas (the viewport meta opts in with viewport-fit=cover) */
.container { padding-left: max(var(--gutter), env(safe-area-inset-left)); padding-right: max(var(--gutter), env(safe-area-inset-right)); }
.sticky-bar { padding-left: max(14px, env(safe-area-inset-left)); padding-right: max(14px, env(safe-area-inset-right)); }
/* video modal must fit a phone held in landscape */
.modal-box { width: min(920px, 100%, calc((100vh - 40px) * 16 / 9)); width: min(920px, 100%, calc((100dvh - 40px) * 16 / 9)); }
/* review cards inside the horizontal scroller never wait on a scroll-reveal */
@media (max-width: 860px) { .js .quotes .quote-card.reveal { opacity: 1; transform: none; transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease); } }
/* compare slider: pointer input is handled on the container; the range input serves keyboard and screen readers */
.compare { touch-action: pan-y; cursor: ew-resize; }
.compare input[type=range] { pointer-events: none; }
/* no-JS / failed-JS fallback inside the booking cards */
.js .bk-fallback { visibility: hidden; }
.bk-fallback .booking-head { margin-bottom: 0; }
.bk-fallback a { text-decoration: underline; text-underline-offset: 3px; }

/* =========================================================
   v2: annoyances showcase + five options
   ========================================================= */

/* ---------- Pain: persona tabs + tickable hassles ---------- */
.pain-top { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px, 5vw, 72px); align-items: center; margin-bottom: clamp(28px, 4vw, 44px); }
.pain-top > * { min-width: 0; }
.pain-photo { position: relative; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 16 / 10.5; box-shadow: var(--shadow-md); }
.pain-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 46%; }
.pain-float { position: absolute; left: 16px; right: 16px; bottom: 16px; display: flex; gap: 12px; align-items: center; padding: 12px 14px; border-radius: var(--r-md); background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.pain-float .ic { flex: none; width: 38px; height: 38px; border-radius: 11px; background: var(--forest); color: #fff; display: grid; place-items: center; }
.pain-float .ic svg { width: 18px; height: 18px; }
.pain-float b { display: block; font-size: 0.95rem; letter-spacing: -0.01em; line-height: 1.25; }
.pain-float span { font-size: 0.82rem; color: var(--ink-mute); }

.persona-tabs { display: inline-flex; gap: 4px; padding: 5px; border-radius: var(--r-pill); background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm); margin-bottom: 22px; max-width: 100%; }
.persona-tab { display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px; border-radius: var(--r-pill); font-size: 0.95rem; font-weight: 600; color: var(--ink-soft); white-space: nowrap; transition: background 0.3s var(--ease), color 0.3s var(--ease); }
.persona-tab svg { width: 17px; height: 17px; flex: none; }
.persona-tab:hover { color: var(--ink); }
.persona-tab.active { background: var(--charcoal); color: var(--cream); }
.persona-tab.active:focus-visible { outline-color: var(--rust); }

.panel-title { font-size: 1.05rem; font-weight: 600; margin: 18px 0 12px; }
.js .panel-title { display: none; }
.js .pain-panel:not(.active) { display: none; }
.pain-panel.active .hassle { animation: hassleIn 0.5s var(--ease) both; animation-delay: calc(var(--n, 0) * 35ms); }
@keyframes hassleIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.nofx .pain-panel.active .hassle { animation: none; }

.hassle-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.hassle { position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: 12px; text-align: left; padding: 18px 18px 20px; border-radius: var(--r-md); background: var(--white); border: 1.5px solid var(--line); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease); }
.hassle:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.hassle .hx { flex: none; width: 40px; height: 40px; border-radius: 12px; background: rgba(141, 81, 56, 0.08); color: var(--rust); display: grid; place-items: center; transition: background 0.25s var(--ease), color 0.25s var(--ease); }
.hassle .hx svg { width: 19px; height: 19px; }
.hassle .ht { display: block; padding-right: 4px; }
.hassle .ht b { display: block; font-size: 1rem; font-weight: 600; letter-spacing: -0.012em; line-height: 1.3; margin-bottom: 5px; color: var(--ink); }
.hassle .ht span { display: block; font-size: 0.9rem; line-height: 1.5; color: var(--ink-soft); }
.hassle .tick { position: absolute; top: 16px; right: 16px; width: 24px; height: 24px; border-radius: 50%; border: 1.5px solid var(--line-strong); display: grid; place-items: center; color: transparent; transition: all 0.25s var(--ease); }
.hassle .tick svg { width: 13px; height: 13px; }
.hassle[aria-pressed="true"] { border-color: var(--rust); background: rgba(141, 81, 56, 0.045); }
.hassle[aria-pressed="true"] .hx { background: var(--rust); color: #fff; }
.hassle[aria-pressed="true"] .tick { background: var(--rust); border-color: var(--rust); color: #fff; transform: scale(1.08); }

.tally { margin-top: 22px; display: flex; align-items: center; gap: 20px; padding: 16px 18px 16px 22px; border-radius: var(--r-lg); background: var(--charcoal); color: var(--cream); }
.tally-n { flex: none; display: flex; align-items: baseline; gap: 8px; }
.tally-n b { font-size: 2.2rem; font-weight: 600; letter-spacing: -0.03em; line-height: 1; font-variant-numeric: tabular-nums; min-width: 1.1ch; text-align: right; }
.tally-n span { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245, 243, 239, 0.6); }
.tally p { flex: 1; min-width: 0; font-size: 1rem; line-height: 1.45; color: rgba(245, 243, 239, 0.88); }
.tally .btn { flex: none; }
.tally.bump .tally-n b { animation: bump 0.4s var(--ease); }
@keyframes bump { 40% { transform: scale(1.25); } }
.tally :focus-visible { outline-color: var(--sand); }
.pain-bridge { margin-top: 16px; text-align: center; font-size: 0.95rem; color: var(--ink-mute); }

@media (max-width: 1100px) { .hassle-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 860px) {
  .pain-top { grid-template-columns: 1fr; }
  .pain-photo { aspect-ratio: 16 / 9; order: -1; }
  .tally { flex-wrap: wrap; gap: 12px 16px; padding: 18px; }
  .tally p { flex: 1 1 60%; }
  .tally .btn { flex: 1 1 100%; }
}
@media (max-width: 640px) {
  .persona-tabs { display: flex; width: 100%; }
  .persona-tab { flex: 1; justify-content: center; padding: 11px 6px; font-size: 0.82rem; gap: 6px; white-space: normal; text-align: center; line-height: 1.2; }
  .persona-tab svg { display: none; }
  .hassle-grid { grid-template-columns: 1fr; gap: 10px; }
  .hassle { flex-direction: row; align-items: flex-start; gap: 14px; padding: 15px 50px 15px 15px; }
  .pain-photo { aspect-ratio: 4 / 3; }
}

/* ---------- Options: quick matcher + 2 + 3 grid ---------- */
.match { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; max-width: 900px; margin: -18px auto 34px; }
.match-label { width: 100%; text-align: center; font-size: 0.9rem; color: var(--ink-mute); margin-bottom: 6px; }
.match-chip { padding: 10px 17px; border-radius: var(--r-pill); border: 1.5px solid var(--line-strong); background: var(--white); font-size: 0.9rem; font-weight: 600; color: var(--ink); transition: all 0.25s var(--ease); }
.match-chip:hover { border-color: var(--ink); transform: translateY(-1px); }
.match-chip[aria-pressed="true"] { background: var(--rust); border-color: var(--rust); color: #fff; box-shadow: 0 8px 20px rgba(141, 81, 56, 0.25); }

.opt-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.opt { grid-column: span 2; position: relative; display: flex; flex-direction: column; padding: 28px 28px 26px; border-radius: var(--r-lg); background: var(--cream); border: 1px solid var(--line); transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), opacity 0.4s var(--ease), filter 0.4s var(--ease); }
.opt.lead { grid-column: span 3; padding: 34px 36px 32px; }
.opt:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.opt.dark { background: var(--charcoal); border-color: var(--charcoal); color: var(--cream); }
.opt.forest { background: var(--forest); border-color: var(--forest); color: var(--cream); }
.opt-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 22px; }
.opt-ic { flex: none; width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; background: rgba(141, 81, 56, 0.09); color: var(--rust); }
.opt-ic svg { width: 28px; height: 28px; }
.opt.dark .opt-ic, .opt.forest .opt-ic { background: rgba(245, 243, 239, 0.1); color: var(--sand); }
.opt-badge { display: inline-flex; align-items: center; gap: 7px; padding: 7px 12px; border-radius: var(--r-pill); background: var(--sand); color: var(--charcoal); font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; line-height: 1.3; text-align: right; }
.opt-badge::before { content: ""; flex: none; width: 6px; height: 6px; border-radius: 50%; background: var(--rust); }
.opt h3 { font-size: 1.5rem; font-weight: 600; letter-spacing: -0.022em; line-height: 1.1; }
.opt.lead h3 { font-size: clamp(1.7rem, 2.4vw, 2.1rem); }
.opt h3 sup { font-size: 0.5em; top: -0.8em; position: relative; }
.opt-tech { margin-top: 6px; font-size: 0.86rem; color: var(--ink-mute); }
.opt.dark .opt-tech, .opt.forest .opt-tech { color: rgba(245, 243, 239, 0.62); }
.opt-suits { margin-top: 16px; font-size: 0.98rem; font-weight: 600; letter-spacing: -0.01em; }
.opt-suits span { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rust); margin-bottom: 3px; }
.opt.dark .opt-suits span, .opt.forest .opt-suits span { color: var(--sand); }
.opt-desc { margin-top: 12px; font-size: 0.96rem; line-height: 1.58; color: var(--ink-soft); }
.opt.lead .opt-desc { font-size: 1.02rem; max-width: 46ch; }
.opt.dark .opt-desc, .opt.forest .opt-desc { color: rgba(245, 243, 239, 0.82); }
.opt-list { display: grid; gap: 9px; margin-top: 16px; }
.opt-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.94rem; line-height: 1.45; }
.opt-list svg { flex: none; width: 17px; height: 17px; margin-top: 3px; color: var(--sand); }
.opt-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; padding-top: 22px; }
.opt-pills li { padding: 6px 11px; border-radius: var(--r-pill); font-size: 0.78rem; font-weight: 600; background: var(--white); border: 1px solid var(--line); color: var(--ink-soft); }
.opt.dark .opt-pills li, .opt.forest .opt-pills li { background: rgba(245, 243, 239, 0.08); border-color: rgba(245, 243, 239, 0.16); color: rgba(245, 243, 239, 0.86); }
.opt.dark :focus-visible, .opt.forest :focus-visible { outline-color: var(--sand); }
/* matcher states */
.opt-grid.has-match .opt:not(.is-match) { opacity: 0.34; filter: saturate(0.5); }
.opt-grid.has-match .opt:not(.is-match):hover { transform: none; box-shadow: none; }
.opt.is-match { box-shadow: 0 0 0 2.5px var(--rust), var(--shadow-md); transform: translateY(-4px); }

.opt-foot { margin-top: 26px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px 22px; font-size: 0.92rem; color: var(--ink-mute); }
.opt-foot a { font-weight: 600; color: var(--rust); text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }

@media (max-width: 980px) {
  .opt-grid { grid-template-columns: 1fr 1fr; }
  .opt, .opt.lead { grid-column: span 1; padding: 26px 24px 24px; }
  .opt:last-child { grid-column: 1 / -1; }
  .opt-top { flex-wrap: wrap; }
}
@media (max-width: 640px) {
  .opt-grid { grid-template-columns: 1fr; gap: 12px; }
  .opt:last-child { grid-column: auto; }
  .match { margin-top: -8px; }
  .match-chip { padding: 9px 14px; font-size: 0.86rem; }
}

/* ---------- Hero eyebrow on small screens ---------- */
@media (max-width: 560px) {
  .hero .eyebrow { font-size: 11px; letter-spacing: 0.13em; line-height: 1.5; }
  .hero .eyebrow::before { display: none; }
}

/* =========================================================
   v3: tuner, benefits, mobile polish
   ========================================================= */

/* ---------- Tuner ---------- */
.tune { position: relative; z-index: 2; margin-top: -24px; padding-bottom: clamp(8px, 2vw, 16px); }
.tune-card { background: var(--white); border-radius: var(--r-xl); border: 1px solid var(--line); box-shadow: var(--shadow-lg); padding: clamp(24px, 3.5vw, 40px); }
.tune-head { max-width: 640px; margin-bottom: 22px; }
.tune-head .h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin: 12px 0 8px; }
.tune-head p { color: var(--ink-soft); font-size: 1rem; }
.tune-q { padding-top: 18px; border-top: 1px solid var(--line); margin-top: 18px; }
.tune-q[hidden] { display: none; }
.tune-q[data-q="2"] { animation: paneIn 0.45s var(--ease); }
.tune-label { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 12px; }
.tune-opts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.tune-opt { display: flex; align-items: center; gap: 12px; padding: 16px 18px; border-radius: var(--r-md); border: 1.5px solid var(--line-strong); background: var(--white); text-align: left; transition: all 0.25s var(--ease); min-height: 60px; }
.tune-opt svg { flex: none; width: 24px; height: 24px; color: var(--rust); }
.tune-opt b { font-size: 1rem; font-weight: 600; letter-spacing: -0.01em; line-height: 1.2; }
.tune-opt small { display: block; font-size: 0.8rem; font-weight: 500; color: var(--ink-mute); margin-top: 3px; line-height: 1.3; }
.tune-opt:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.tune-opt[aria-pressed="true"] { background: var(--charcoal); border-color: var(--charcoal); color: var(--cream); }
.tune-opt[aria-pressed="true"] svg { color: var(--sand); }
.tune-opt[aria-pressed="true"] small { color: rgba(245, 243, 239, 0.65); }
.tune-opt[aria-pressed="true"]:focus-visible { outline-color: var(--rust); }
.tune-opts.rx { grid-template-columns: repeat(5, 1fr); }
.tune-opts.rx .tune-opt { display: block; padding: 14px 16px; }
.tune-result { margin-top: 20px; padding: 18px 20px; border-radius: var(--r-lg); background: rgba(57, 76, 57, 0.07); border: 1px solid rgba(57, 76, 57, 0.16); animation: paneIn 0.45s var(--ease); }
.tune-result[hidden] { display: none; }
.tune-summary { display: flex; gap: 14px; align-items: flex-start; }
.tune-check { flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--forest); color: #fff; display: grid; place-items: center; }
.tune-check svg { width: 16px; height: 16px; }
.tune-summary b { display: block; font-size: 1.08rem; font-weight: 600; letter-spacing: -0.015em; margin-bottom: 4px; }
.tune-summary span { display: block; font-size: 0.95rem; color: var(--ink-soft); line-height: 1.5; }
.tune-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 20px; margin-top: 16px; padding-left: 48px; }
.tune-jump { font-weight: 600; color: var(--rust); text-decoration: underline; text-underline-offset: 3px; font-size: 0.95rem; }
.tune-reset { font-size: 0.85rem; color: var(--ink-mute); text-decoration: underline; text-underline-offset: 3px; }
.tune-reset:hover { color: var(--ink); }
@media (max-width: 980px) {
  .tune-opts, .tune-opts.rx { grid-template-columns: repeat(2, 1fr); }
  .tune-opts.rx .tune-opt:last-child { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .tune { margin-top: -12px; }
  .tune-card { padding: 22px 18px; border-radius: var(--r-lg); }
  .tune-opt { padding: 13px 14px; gap: 10px; min-height: 54px; }
  .tune-opt b { font-size: 0.95rem; }
  .tune-opts.rx .tune-opt { padding: 12px 14px; }
  .tune-actions { padding-left: 0; }
  .tune-actions .btn { width: 100%; }
}

/* the tuned note in the annoyances section */
.tuned-note { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; padding: 8px 14px; border-radius: var(--r-pill); background: rgba(57, 76, 57, 0.08); color: var(--forest); font-size: 0.86rem; font-weight: 600; }
.tuned-note[hidden] { display: none; }
.tuned-note svg { width: 15px; height: 15px; flex: none; }

/* ---------- Benefits ---------- */
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.benefit { display: flex; flex-direction: column; gap: 12px; padding: 26px 24px; border-radius: var(--r-lg); background: var(--cream); border: 1px solid var(--line); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.benefit:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.benefit .bx { width: 44px; height: 44px; border-radius: 13px; background: var(--forest); color: var(--cream); display: grid; place-items: center; }
.benefit .bx svg { width: 21px; height: 21px; }
.benefit b { font-size: 1.15rem; font-weight: 600; letter-spacing: -0.015em; line-height: 1.25; }
.benefit p { font-size: 0.95rem; line-height: 1.55; color: var(--ink-soft); }
.benefit[data-for="readers"] { display: none; }
html[data-persona="readers"] .benefit[data-for="general"] { display: none; }
html[data-persona="readers"] .benefit[data-for="readers"] { display: flex; }
.benefit-cta { margin-top: 28px; display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center; }
.benefit-cta p { max-width: 640px; font-size: 0.92rem; color: var(--ink-mute); }
@media (max-width: 980px) { .benefit-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .benefit-grid { grid-template-columns: 1fr; gap: 10px; }
  .benefit { flex-direction: row; align-items: flex-start; padding: 16px; gap: 14px; }
  .benefit .bx { flex: none; width: 40px; height: 40px; }
  .benefit b { font-size: 1.02rem; margin-bottom: 4px; display: block; }
  .benefit p { font-size: 0.9rem; }
  .benefit-cta .btn { width: 100%; }
}

/* ---------- Mobile polish ---------- */
@media (max-width: 640px) {
  .hero { padding-top: 22px; padding-bottom: 52px; }
  .hero-copy .h1 { font-size: clamp(2.3rem, 11vw, 2.8rem); margin: 16px 0 16px; }
  .hero-copy .lead { font-size: 1.05rem; }
  .hero-actions { margin-top: 24px; }
  .hero-actions .btn { width: 100%; }
  .micro-trust { margin-top: 18px; gap: 6px 16px; }
  .micro-trust li { font-size: 0.88rem; }
  .booking { padding: 20px 16px 18px; }
  .booking-head h2 { font-size: 1.15rem; }
  .steps { margin-bottom: 14px; }
  .step-ind { padding: 9px 10px; font-size: 0.82rem; }
  .day { width: 58px; }
  .lead { font-size: 1.02rem; }
  .h2 { font-size: clamp(1.75rem, 8vw, 2.1rem); }
  .section-head .lead { font-size: 1rem; }
  .compare-section { padding-top: 40px; }
  .pain-top { margin-bottom: 20px; }
  .tally { padding: 16px; }
  .tally-n b { font-size: 1.9rem; }
  .tally p { font-size: 0.95rem; }
  .opt.lead, .opt { padding: 22px 18px 20px; }
  .opt-top { margin-bottom: 16px; }
  .opt-badge { font-size: 9.5px; padding: 6px 10px; }
  .why-list { gap: 10px; }
  .why-item { padding: 16px; }
  .how-steps { gap: 22px; }
  .calc { padding: 22px 18px; }
  .price-row { padding: 18px 16px; }
  .price-row h3 { font-size: 1.1rem; }
  .price-row .amt b { font-size: 1.5rem; }
  .price-foot { padding: 16px; }
  .chips { gap: 6px; }
  .chip { font-size: 0.78rem; padding: 7px 11px; }
  .quote { font-size: 1rem; padding: 18px 18px; }
  .faq-q { font-size: 1rem; padding: 18px 4px; }
  .footer { padding-top: 40px; }
  .footer-note { font-size: 0.82rem; }
}
/* benefits on phones: icon in the first column, title and text stacked beside it */
@media (max-width: 640px) {
  .benefit, html[data-persona="readers"] .benefit[data-for="readers"] { display: grid; grid-template-columns: 40px 1fr; column-gap: 14px; row-gap: 2px; align-items: start; }
  .benefit .bx { grid-row: 1 / span 2; }
  .benefit b { margin-bottom: 0; }
  html[data-persona="readers"] .benefit[data-for="general"], .benefit[data-for="readers"] { display: none; }
  html[data-persona="readers"] .benefit[data-for="readers"] { display: grid; }
}

/* =========================================================
   v4: client palette round (olive, card colours)
   ========================================================= */
.opt.olive { background: var(--rust); border-color: var(--rust); color: var(--cream); }
.opt.brown { background: var(--brown); border-color: var(--brown); color: var(--cream); }
.opt.charcoal { background: var(--charcoal); border-color: var(--charcoal); color: var(--cream); }
.opt.olive .opt-ic, .opt.brown .opt-ic, .opt.charcoal .opt-ic { background: rgba(255, 255, 255, 0.12); color: var(--cream); }
.opt.olive .opt-tech, .opt.brown .opt-tech, .opt.charcoal .opt-tech { color: rgba(245, 243, 239, 0.66); }
.opt.olive .opt-suits span, .opt.brown .opt-suits span, .opt.charcoal .opt-suits span { color: var(--sand); }
.opt.olive .opt-desc, .opt.brown .opt-desc, .opt.charcoal .opt-desc { color: rgba(245, 243, 239, 0.86); }
.opt.olive .opt-pills li, .opt.brown .opt-pills li, .opt.charcoal .opt-pills li { background: rgba(245, 243, 239, 0.1); border-color: rgba(245, 243, 239, 0.18); color: rgba(245, 243, 239, 0.9); }
.opt.olive :focus-visible, .opt.brown :focus-visible, .opt.charcoal :focus-visible { outline-color: var(--sand); }
.opt.dark .opt-ic { background: rgba(245, 243, 239, 0.12); color: var(--sand); }
.opt-badge { background: var(--olive-light); color: var(--charcoal); }
.opt-badge::before { background: var(--rust-dark); }
.opt.is-match { box-shadow: 0 0 0 2.5px var(--charcoal), var(--shadow-md); }
.opt.dark.is-match, .opt.forest.is-match, .opt.olive.is-match, .opt.brown.is-match, .opt.charcoal.is-match { box-shadow: 0 0 0 2.5px var(--sand), var(--shadow-md); }
.free-pill { background: var(--olive-light); color: var(--rust-dark); }
.free-pill::before { background: var(--rust); }
.hassle .hx, .icon-tile, .tune-opt svg { color: var(--rust); }
.persona-tab.active, .tune-opt[aria-pressed="true"] { background: var(--forest); border-color: var(--forest); }
.day.selected { background: var(--forest); border-color: var(--forest); }
.tally { background: var(--forest); }
.calc-tile.hot { background: var(--forest); border-color: var(--forest); }
.footer { background: var(--forest-deep); }
.footer-top { padding-bottom: 20px; }
@media (max-width: 640px) { .footer-top img { height: 96px; } }
.stars { color: var(--rust); }
/* mobile header: the wider lockup logo must leave room for the phone pill */
@media (max-width: 640px) {
  .header .container { gap: 12px; }
  .logo img { height: 32px; }
  .phone-link { padding: 8px 12px 8px 10px; font-size: 0.88rem; gap: 7px; }
}
@media (max-width: 350px) {
  .phone-link { width: 40px; height: 40px; padding: 0; justify-content: center; border-radius: 50%; }
  .phone-link span { display: none; }
  .phone-link svg { width: 18px; height: 18px; }
}

/* =========================================================
   v5: EyeHub palette, green (#394C39) reserved for buttons and controls
   ========================================================= */
.btn-primary { background: var(--forest); color: var(--cream); box-shadow: 0 10px 24px rgba(57, 76, 57, 0.28); }
.btn-primary:hover { background: var(--forest); filter: brightness(1.1); box-shadow: 0 16px 34px rgba(57, 76, 57, 0.36); }
.slot.selected { background: var(--forest); border-color: var(--forest); box-shadow: 0 8px 20px rgba(57, 76, 57, 0.28); }
.match-chip[aria-pressed="true"] { background: var(--forest); border-color: var(--forest); box-shadow: 0 8px 20px rgba(57, 76, 57, 0.25); }
.hassle[aria-pressed="true"] { border-color: var(--forest); background: rgba(57, 76, 57, 0.05); }
.hassle[aria-pressed="true"] .hx { background: var(--forest); color: #fff; }
.hassle[aria-pressed="true"] .tick { background: var(--forest); border-color: var(--forest); }
.step-ind.active { background: rgba(57, 76, 57, 0.09); color: var(--forest); }
.step-ind.active .n { background: var(--forest); }
.input:focus { border-color: var(--forest); box-shadow: 0 0 0 4px rgba(57, 76, 57, 0.12); }
input[type=range].range { background: linear-gradient(90deg, var(--forest) var(--fill, 30%), rgba(39, 43, 39, 0.12) var(--fill, 30%)); }
input[type=range].range::-webkit-slider-thumb { border-color: var(--forest); box-shadow: 0 6px 16px rgba(57, 76, 57, 0.35); }
input[type=range].range::-moz-range-thumb { border-color: var(--forest); box-shadow: 0 6px 16px rgba(57, 76, 57, 0.35); }
.range:focus-visible::-webkit-slider-thumb { box-shadow: 0 0 0 4px var(--white), 0 0 0 7px var(--forest); }
.free-pill { background: rgba(57, 76, 57, 0.09); color: var(--forest); }
.free-pill::before { background: var(--forest); }
.opt-badge { background: var(--sand); color: var(--charcoal); }
.opt-badge::before { background: var(--rust); }
.hassle .hx, .icon-tile, .tune-opt svg { color: var(--rust); }
.tune-opt[aria-pressed="true"] svg { color: var(--sand); }
.opt.gold { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }
.opt.gold .opt-ic { background: rgba(39, 43, 39, 0.1); color: var(--charcoal); }
.opt.gold .opt-tech { color: rgba(39, 43, 39, 0.7); }
.opt.gold .opt-suits span { color: var(--rust-dark); }
.opt.gold .opt-desc { color: rgba(39, 43, 39, 0.85); }
.opt.gold .opt-pills li { background: rgba(255, 255, 255, 0.4); border-color: rgba(39, 43, 39, 0.15); color: var(--charcoal); }
.opt.gold.is-match { box-shadow: 0 0 0 2.5px var(--charcoal), var(--shadow-md); }
.footer { background: var(--charcoal); }
.stars { color: #8F6A1C; }
.how-step .num { color: var(--forest); }
.how-step:hover .num { background: var(--forest); border-color: var(--forest); }
.tune-check, .pain-float .ic, .benefit .bx { background: var(--forest); }

/* ---------- Local / procedure content block ---------- */
.local { background: var(--white); }
.local-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
.local-wrap > * { min-width: 0; }
.local-copy p { color: var(--ink-soft); line-height: 1.65; }
.local-copy p + p { margin-top: 16px; }
.local-links { font-size: 0.92rem; }
.local-links a { color: var(--rust); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }
@media (max-width: 860px) { .local-wrap { grid-template-columns: 1fr; gap: 18px; } }
h1.eyebrow { font-size: 12px; line-height: 1.5; }

/* 15-minute diary: tighter slot grid */
.slots { gap: 6px; }
.slot { padding: 9px 4px; font-size: 0.88rem; }
@media (max-width: 640px) { .slots { grid-template-columns: repeat(4, 1fr); } .slot { padding: 9px 2px; font-size: 0.82rem; } }

/* =========================================================
   v6: mobile polish (headline overhang, day chips, touch feel, form flow)
   ========================================================= */
/* the blur entrance ends with no filter at all: a lingering blur(0) clipped the italic overhang of "without" */
@keyframes unblur { to { opacity: 1; filter: none; transform: none; } }
.h1 .w { padding: 0 0.05em; margin: 0 -0.05em; }
.h1 .em .w { padding-right: 0.16em; margin-right: -0.16em; }

/* touch feel: no grey tap flash, no 300ms delay, a small press instead of a hover lift */
.btn, .day, .slot, .choice, .hassle, .tune-opt, .persona-tab, .match-chip, .faq-q, .phone-link, .sticky-bar a { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
@media (hover: none) {
  .day:hover, .slot:hover, .choice:hover { transform: none; border-color: var(--line); }
  .day.selected:hover, .slot.selected:hover { border-color: var(--forest); }
  .choice.selected:hover { border-color: var(--charcoal); }
  .day:active, .slot:active, .choice:active { transform: scale(0.96); transition-duration: 0.08s; }
  .btn:hover { transform: none; }
}

/* day strip on phones: edge to edge inside the card, roomier chips, a soft fade that hints at more days */
.days-wrap { position: relative; }
@media (max-width: 640px) {
  .days-wrap { margin: 0 -16px; -webkit-mask-image: linear-gradient(90deg, #000 calc(100% - 40px), rgba(0, 0, 0, 0.12)); mask-image: linear-gradient(90deg, #000 calc(100% - 40px), rgba(0, 0, 0, 0.12)); }
  .days-wrap.at-end { -webkit-mask-image: none; mask-image: none; }
  .days { gap: 8px; padding: 4px 16px 12px; scroll-padding-left: 16px; scroll-snap-type: x proximity; scrollbar-width: none; }
  .days::-webkit-scrollbar { display: none; }
  .day { width: 66px; padding: 11px 4px 10px; border-radius: 15px; }
  .day small { font-size: 10.5px; letter-spacing: 0.06em; }
  .day b { font-size: 1.32rem; margin: 4px 0 2px; }
  .day em { font-size: 11px; }
  .slot { min-height: 42px; }
  .booking-head p { font-size: 0.86rem; }
  .booking-head .free-pill { padding: 6px 10px; font-size: 11px; }
  .chosen { padding: 12px 12px; }
  .chosen .txt b { font-size: 0.94rem; }
  .form-grid { gap: 10px; }
  .input { font-size: 16px; } /* 16px or larger: iOS will not zoom the page when a field is focused */
  .booking-actions .btn-lg { padding: 18px 20px; font-size: 1rem; }
  .privacy { font-size: 0.74rem; }
}
@media (max-width: 640px) { .success .summary div { flex-direction: column; gap: 2px; padding: 8px 0; } .success .summary div + div { border-top: 1px solid rgba(39, 43, 39, 0.08); } .success h4 { font-size: 1.22rem; } }
/* very narrow phones (320px): keep the step labels and hints on one line */
@media (max-width: 360px) { .steps { gap: 6px; } .step-ind { font-size: 0.78rem; gap: 7px; padding: 9px 8px; } .step-ind .n { width: 22px; height: 22px; font-size: 11px; } .field-label { font-size: 0.82rem; } .field-label .hint { font-size: 0.78rem; } .booking-head h2 { font-size: 1.08rem; } }

/* ---------- Compare slider: images must never start a native drag, and every pointer event lands on the container ---------- */
.compare img, .compare .handle, .compare .tag { pointer-events: none; -webkit-user-drag: none; user-drag: none; }
.videos[hidden] { display: none; }

/* ---------- Reviews strip: scrolls sideways at every width, snaps to cards, arrows below ---------- */
.quotes-wrap { position: relative; }
.quotes, .quotes[data-reviews] { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px 4px 14px; margin: 0 -4px; scrollbar-width: none; -webkit-overflow-scrolling: touch; overscroll-behavior-x: contain; }
.quotes::-webkit-scrollbar { display: none; }
.quotes:focus-visible { outline: 3px solid var(--forest); outline-offset: 4px; border-radius: var(--r-md); }
.quote-card { flex: 0 0 calc((100% - 32px) / 3); scroll-snap-align: start; min-width: 0; }
.quote-card blockquote { text-wrap: pretty; }
@media (max-width: 1100px) { .quotes { grid-template-columns: none; } .quote-card { flex-basis: calc((100% - 16px) / 2); } }
@media (max-width: 640px) { .quotes { gap: 12px; margin: 0 -16px; padding: 4px 16px 14px; scroll-padding-left: 16px; } .quote-card { flex-basis: 84%; } }
.quotes-nav { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 12px; }
.qnav { width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--line-strong); background: var(--white); display: grid; place-items: center; color: var(--ink); transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), opacity 0.25s var(--ease); -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
.qnav svg { width: 18px; height: 18px; }
.qnav[data-qprev] svg { transform: rotate(180deg); }
.qnav:hover { background: var(--forest); border-color: var(--forest); color: var(--cream); }
.qnav[disabled] { opacity: 0.3; pointer-events: none; }
.qcount { min-width: 64px; text-align: center; font-size: 0.85rem; font-weight: 600; color: var(--ink-mute); letter-spacing: 0.02em; font-variant-numeric: tabular-nums; }
.quotes-more { display: block; text-align: center; margin-top: 14px; font-size: 0.92rem; font-weight: 600; color: var(--rust); text-decoration: underline; text-underline-offset: 3px; }
.quote-card .src { display: inline-flex; align-items: center; gap: 6px; }
/* 320px phones: three columns of times, so the fourth column can never spill past the card edge */
@media (max-width: 360px) { .slots { grid-template-columns: repeat(3, 1fr); gap: 6px; } .slot { font-size: 0.84rem; padding: 9px 4px; } }
.quotes-links { text-align: center; margin-top: 16px; font-size: 0.92rem; }
.quotes-links a { font-weight: 600; color: var(--rust); text-decoration: underline; text-underline-offset: 3px; }
.quotes-links .dot { margin: 0 10px; color: var(--ink-mute); }
