/* =============================================================================
   Lucid Headlights — Design System
   -----------------------------------------------------------------------------
   Concept: "optical clarity." Clarity is treated as a measurable property.
   Mono spec labels, a clean cool-white canvas, deep navy ink, and a single
   brand blue. One restrained amber "haze" accent stands in for the before state.

   Sections:
     1. Tokens (custom properties)
     2. Reset & base
     3. Typography helpers
     4. Layout primitives (container, sections, grid)
     5. Header / navigation
     6. Footer
     7. Buttons
     8. Components (cards, eyebrows, pills, gauges, badges)
     9. Before/after slider
     10. Forms
     11. Page-specific blocks (hero, pricing, steps, legal, etc.)
     12. Motion / scroll reveal
     13. Responsive
   ========================================================================== */

/* 1. TOKENS ---------------------------------------------------------------- */
:root {
  /* Brand */
  --brand: #3566A7;
  --brand-700: #2b548b;
  --brand-900: #1d3a63;
  --brand-bright: #669fe9;

  /* Ink & surfaces */
  --ink: #0f1e33;          /* primary text, dark sections */
  --ink-2: #1b2c45;
  --ink-soft: #51617a;     /* secondary text */
  --ink-faint: #8696ad;    /* captions */
  --bg: #f4f7fb;           /* cool off-white canvas */
  --bg-2: #eaf0f8;
  --surface: #ffffff;
  --line: #e2e9f3;         /* hairlines */
  --line-strong: #cfd9e8;

  /* Accents */
  --haze: #c8902f;         /* the "before" / haze state, used sparingly */
  --haze-soft: #f4e6c8;
  --good: #2f9e6b;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(15, 30, 51, .06);
  --shadow-md: 0 10px 30px -12px rgba(15, 30, 51, .18);
  --shadow-lg: 0 30px 60px -20px rgba(15, 30, 51, .28);
  --ring: 0 0 0 3px rgba(53, 102, 167, .35);

  /* Type */
  --font-display: "Sora", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  /* Rhythm */
  --radius: 14px;
  --radius-lg: 22px;
  --radius-sm: 9px;
  --container: 1180px;
  --header-h: 72px;

  --section-y: clamp(4rem, 9vw, 7.5rem);
}

/* 2. RESET & BASE ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

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

img, svg, picture, video { display: block; max-width: 100%; }
img { height: auto; }

a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-700); }

ul, ol { padding-left: 1.2em; }

:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: 4px;
}

::selection { background: var(--brand); color: #fff; }

/* Skip link for keyboard users */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--ink);
  color: #fff;
  padding: .6rem 1rem;
  border-radius: 8px;
  z-index: 200;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; color: #fff; }

/* 3. TYPOGRAPHY ------------------------------------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.1rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p { color: var(--ink-soft); }
.lead { font-size: clamp(1.1rem, 2vw, 1.3rem); color: var(--ink-soft); line-height: 1.6; }

strong { color: var(--ink); font-weight: 600; }

/* Mono "spec" eyebrow — the signature label treatment */
.eyebrow {
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}
.eyebrow::before {
  content: "";
  width: 1.6rem;
  height: 1px;
  background: var(--brand);
  opacity: .6;
}
.eyebrow.is-light { color: var(--brand-bright); }
.eyebrow.is-light::before { background: var(--brand-bright); }
.eyebrow.no-rule::before { display: none; }

.text-mono { font-family: var(--font-mono); }
.text-center { text-align: center; }
.measure { max-width: 62ch; }
.measure-sm { max-width: 48ch; }

/* 4. LAYOUT ---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2rem);
}
.container-narrow { max-width: 820px; }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(3rem, 6vw, 4.5rem); }

/* Dark section treatment */
.section--ink {
  background: var(--ink);
  color: #d7e0ee;
  position: relative;
  overflow: hidden;
}
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: #fff; }
.section--ink p { color: #aab9cf; }
.section--ink strong { color: #fff; }

.section--alt { background: var(--bg-2); }

.section-head { max-width: 720px; margin-bottom: clamp(2.2rem, 4vw, 3.2rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: .8rem; }
.section-head p { margin-top: 1rem; }

.grid { display: grid; gap: 1.4rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.stack-sm > * + * { margin-top: .6rem; }
.stack > * + * { margin-top: 1rem; }
.stack-lg > * + * { margin-top: 1.6rem; }

/* 5. HEADER --------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 247, 251, .82);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(244, 247, 251, .92);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
  font-size: 1.15rem;
}
.brand:hover { color: var(--ink); }
.brand img { height: 30px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: .35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--ink-2);
  font-weight: 500;
  font-size: .96rem;
  padding: .5rem .8rem;
  border-radius: 8px;
  transition: background .18s ease, color .18s ease;
}
.nav-links a:hover { background: var(--bg-2); color: var(--ink); }
.nav-links a[aria-current="page"] { color: var(--brand); }

.nav-cta { display: flex; align-items: center; gap: .6rem; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after { transform: translateY(4px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(1px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-1px) rotate(-45deg); }

/* 6. FOOTER --------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: #aab9cf;
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
}
.site-footer h4 {
  color: #fff;
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.1rem;
}
.site-footer a { color: #c2cfe2; }
.site-footer a:hover { color: #fff; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li + li { margin-top: .65rem; }
.footer-brand img { height: 38px; margin-bottom: 1rem; }
.footer-brand p { color: #8a9ab2; max-width: 30ch; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; margin-bottom: .7rem; }
.footer-contact svg { flex: none; margin-top: .2rem; color: var(--brand-bright); }
.footer-bottom {
  margin-top: 2.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .85rem;
  color: #7e8eaa;
}
.footer-bottom a { color: #7e8eaa; }
.footer-disclaimer { font-size: .8rem; color: #6b7b96; max-width: 60ch; }
.social-row { display: flex; gap: .6rem; }
.social-row a {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  color: #c2cfe2;
  transition: background .18s ease, border-color .18s ease;
}
.social-row a:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.3); color:#fff; }

/* 7. BUTTONS -------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: .95rem 1.5rem;
  border-radius: 11px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
  text-align: center;
}
.btn:active { transform: translateY(1px); }
.btn svg { flex: none; }

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(53,102,167,.6);
}
.btn-primary:hover { background: var(--brand-700); color: #fff; box-shadow: 0 12px 26px -8px rgba(53,102,167,.7); }

.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.35);
}
.btn-outline-light:hover { background: rgba(255,255,255,.1); color: #fff; border-color: #fff; }

.btn-lg { padding: 1.1rem 1.9rem; font-size: 1.05rem; }
.btn-sm { padding: .65rem 1rem; font-size: .9rem; }
.btn-block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; align-items: center; }

/* 8. COMPONENTS ----------------------------------------------------------- */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card.is-hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }

.card-icon {
  width: 52px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 13px;
  background: linear-gradient(160deg, rgba(53,102,167,.14), rgba(102,159,233,.16));
  color: var(--brand);
  margin-bottom: 1.1rem;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: .5rem; }
.card p { font-size: .98rem; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .04em;
  padding: .4rem .8rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink-soft);
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--good); }
.pill.on-ink { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); color: #c2cfe2; }

.stat { }
.stat .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3rem);
  color: var(--brand);
  letter-spacing: -.03em;
  line-height: 1;
}
.stat .num .unit { font-family: var(--font-mono); font-size: .9rem; color: var(--ink-faint); font-weight: 500; letter-spacing: 0; }
.stat .label { font-size: .9rem; color: var(--ink-soft); margin-top: .5rem; }
.section--ink .stat .num { color: var(--brand-bright); }
.section--ink .stat .label { color: #93a3bc; }

/* Checklist */
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: .8rem;
  color: var(--ink-soft);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: .15rem;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(47,158,107,.14)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232f9e6b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center / 12px no-repeat;
}
.checklist.on-ink li { color: #aab9cf; }

/* Divider */
.divider { height: 1px; background: var(--line); border: 0; }

/* 9. BEFORE/AFTER SLIDER -------------------------------------------------- */
.ba {
  --pos: 50%;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--ink);
  aspect-ratio: 3 / 2;
  user-select: none;
  touch-action: pan-y;
  border: 1px solid var(--line);
}
.ba img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba .ba-after { z-index: 1; }   /* clean, full base layer */
.ba .ba-before {                /* dirty, occupies the area right of the handle */
  z-index: 2;
  clip-path: inset(0 0 0 var(--pos));
}
.ba-label {
  position: absolute;
  bottom: 14px;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: rgba(15,30,51,.62);
  color: #fff;
  backdrop-filter: blur(4px);
  pointer-events: none;
  transition: opacity .3s ease;
}
/* Clean (after) is revealed on the left of the handle; dirty (before) sits on the right. */
.ba-label.after { left: 14px; }
.ba-label.before { right: 14px; }

.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos);
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  z-index: 4;
  box-shadow: 0 0 0 1px rgba(15,30,51,.15);
}
.ba-grip {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  cursor: ew-resize;
  color: var(--brand);
}
.ba-grip svg { width: 22px; height: 22px; }
.ba-range {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 5;
  margin: 0;
}
/* Clarity readout — the signature gauge */
.ba-readout {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: .6rem;
  background: rgba(15,30,51,.62);
  backdrop-filter: blur(4px);
  border-radius: 999px;
  padding: .4rem .8rem .4rem .55rem;
  font-family: var(--font-mono);
  pointer-events: none;
}
.ba-readout .gauge-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--haze);
  transition: background .2s ease;
}
.ba-readout .gauge-val { color: #fff; font-size: .8rem; font-weight: 500; min-width: 6.5ch; }
.ba-readout .gauge-cap { color: #aab9cf; font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; }

.ba-controls { display: flex; gap: .6rem; justify-content: center; margin-top: 1.2rem; }
.ba-controls button {
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .04em;
  padding: .55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .18s ease;
}
.ba-controls button:hover { border-color: var(--brand); color: var(--brand); }
.ba-controls button[aria-pressed="true"] { background: var(--brand); border-color: var(--brand); color: #fff; }

/* 10. FORMS --------------------------------------------------------------- */
.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .4rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink-2);
}
.field .req { color: var(--brand); }
.field .hint { font-size: .8rem; color: var(--ink-faint); }
.input, .textarea, .select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  padding: .85rem 1rem;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.input::placeholder, .textarea::placeholder { color: var(--ink-faint); }
.input:focus, .textarea:focus, .select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(53,102,167,.16);
}
.textarea { resize: vertical; min-height: 130px; }
.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2351617a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.6rem;
}
.form-note { font-size: .85rem; color: var(--ink-faint); }
.form-status {
  display: none;
  padding: .9rem 1.1rem;
  border-radius: 11px;
  font-size: .95rem;
  border: 1px solid transparent;
}
.form-status.is-success { display: block; background: rgba(47,158,107,.1); border-color: rgba(47,158,107,.3); color: #1d7a4f; }
.form-status.is-error { display: block; background: rgba(200,60,60,.08); border-color: rgba(200,60,60,.3); color: #b23b3b; }
.btn[aria-busy="true"] { opacity: .7; pointer-events: none; }

/* 11. PAGE BLOCKS --------------------------------------------------------- */
/* Hero */
.hero { position: relative; padding-top: clamp(3rem, 6vw, 5rem); padding-bottom: var(--section-y); overflow: clip; }
.hero::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 60vw; height: 60vw;
  max-width: 760px; max-height: 760px;
  background: radial-gradient(circle, rgba(102,159,233,.22), rgba(102,159,233,0) 62%);
  z-index: 0;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero h1 { margin-top: 1.1rem; }
.hero .lead { margin-top: 1.3rem; max-width: 46ch; }
.hero .btn-row { margin-top: 2rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: 2.2rem; }
.hero-trust .item { display: flex; align-items: center; gap: .5rem; font-size: .9rem; color: var(--ink-soft); }
.hero-trust .item svg { color: var(--brand); }

/* Service area band */
.areaband {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--ink-soft);
}
.areaband .sep { width: 5px; height: 5px; border-radius: 50%; background: var(--line-strong); }

/* Pricing */
.price-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.6rem);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.price-card.is-feature { border-color: var(--brand); box-shadow: var(--shadow-lg); }
.price-card .ribbon {
  position: absolute;
  top: 1.4rem; right: -2.6rem;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem 3rem;
  transform: rotate(45deg);
}
.price-amount {
  display: flex;
  align-items: flex-start;
  gap: .25rem;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ink);
  margin: .8rem 0;
}
.price-amount .cur { font-size: 1.5rem; margin-top: .5rem; color: var(--ink-soft); }
.price-amount .val { font-size: clamp(3rem, 7vw, 4.2rem); line-height: 1; }
.price-amount .per { font-family: var(--font-mono); font-size: .85rem; color: var(--ink-faint); align-self: flex-end; margin-bottom: .8rem; font-weight: 500; }

/* Steps / process */
.steps { counter-reset: step; display: grid; gap: 1.2rem; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  align-items: start;
}
.step .step-num {
  counter-increment: step;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: .85rem;
  color: var(--brand);
  width: 42px; height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface);
}
.step .step-num::before { content: "0" counter(step); }
.step h3 { font-size: 1.15rem; margin-bottom: .3rem; }
.step p { font-size: .96rem; }
.section--ink .step .step-num { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.16); color: var(--brand-bright); }

/* Legal / regulation block */
.reg {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--brand);
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
}
.reg .ref {
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .04em;
  color: var(--brand);
  text-transform: uppercase;
  display: block;
  margin-bottom: .5rem;
}
.reg p { color: var(--ink-soft); font-size: .98rem; }
.legal-note {
  font-size: .82rem;
  color: var(--ink-faint);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  background: var(--bg-2);
}
.legal-note strong { color: var(--ink-soft); }

/* Compare table (restore vs replace) */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.compare .col {
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--line);
  background: var(--surface);
}
.compare .col.win { border-color: var(--brand); background: linear-gradient(180deg, rgba(53,102,167,.05), rgba(53,102,167,0)); }
.compare .col h3 { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.compare .price-tag { font-family: var(--font-mono); font-size: 1.1rem; color: var(--brand); font-weight: 500; }
.compare .col.muted .price-tag { color: var(--haze); }
.compare ul { list-style: none; padding: 0; margin: 1rem 0 0; }
.compare li { display: flex; gap: .6rem; align-items: flex-start; font-size: .95rem; color: var(--ink-soft); margin-bottom: .65rem; }
.compare li svg { flex: none; margin-top: .25rem; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--brand-900), var(--brand));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 5vw, 3.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% -20%, rgba(255,255,255,.18), transparent 55%);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.85); margin: 1rem auto 0; max-width: 50ch; }
.cta-band .btn-row { justify-content: center; margin-top: 1.8rem; }

/* Booking layout */
.book-layout { display: grid; grid-template-columns: 1.55fr 1fr; gap: 2.5rem; align-items: start; }
.cal-embed-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: .5rem;
  box-shadow: var(--shadow-sm);
  min-height: 640px;
}
#my-cal-inline-book-now { width: 100%; min-height: 620px; border-radius: var(--radius); }
.book-aside .card + .card { margin-top: 1.2rem; }

/* Promo toast (hesitation offer) */
.promo-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 140%);
  z-index: 150;
  width: min(420px, calc(100vw - 32px));
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.3rem 1.4rem;
  transition: transform .45s cubic-bezier(.2,.8,.2,1), opacity .3s ease;
  opacity: 0;
}
.promo-toast.is-open { transform: translate(-50%, 0); opacity: 1; }
.promo-toast .promo-top { display: flex; align-items: center; gap: .6rem; margin-bottom: .5rem; }
.promo-toast .promo-icon { color: var(--brand); }
.promo-toast h4 { font-size: 1.05rem; }
.promo-toast p { font-size: .92rem; margin-top: .2rem; }
.promo-code {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: .08em;
  background: var(--bg-2);
  border: 1px dashed var(--brand);
  color: var(--brand-700);
  padding: .6rem .9rem;
  border-radius: 10px;
  margin: .9rem 0;
  cursor: pointer;
}
.promo-code:hover { background: rgba(53,102,167,.08); }
.promo-close {
  position: absolute;
  top: 10px; right: 10px;
  width: 32px; height: 32px;
  border: 0; background: transparent;
  color: var(--ink-faint); cursor: pointer;
  border-radius: 8px;
}
.promo-close:hover { background: var(--bg-2); color: var(--ink); }

/* FAQ */
.faq { display: grid; gap: .8rem; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 1.3rem;
  transition: border-color .2s ease;
}
.faq details[open] { border-color: var(--line-strong); }
.faq summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  padding: 1.15rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 1.4rem;
  color: var(--brand);
  transition: transform .2s ease;
  line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding-bottom: 1.2rem; margin: 0; font-size: .98rem; }

/* Image frames */
.frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  background: var(--surface);
}
.frame img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.frame.placeholder { display: grid; place-items: center; aspect-ratio: 3/2; background: var(--bg-2); color: var(--ink-faint); font-family: var(--font-mono); font-size: .8rem; }

/* Logo strip */
.feature-tile {
  display: grid;
  gap: .8rem;
}
.feature-tile .k {
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand);
}

/* About values */
.value-row { display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; align-items: start; padding: 1.4rem 0; border-bottom: 1px solid var(--line); }
.value-row:last-child { border-bottom: 0; }
.value-row .vi {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(160deg, rgba(53,102,167,.14), rgba(102,159,233,.16));
  color: var(--brand);
  display: grid; place-items: center;
}

/* 12. MOTION -------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* 13. RESPONSIVE ---------------------------------------------------------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .split { grid-template-columns: 1fr; }
  .book-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: .6rem;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
  }
  .nav-links.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: .85rem 1rem; border-radius: 10px; }
  .nav .nav-cta .btn-ghost { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  body { font-size: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
