/* ═══════════════════════════════════════════════════════════
   REVLAB — ultra-premium dark / liquid-glass design system
   PPF · Color Wraps · Detailing — Boca Raton, FL
   Monochrome platinum on true black, with a faint iridescent
   sheen that nods to fresh PPF & color-shift film.
═══════════════════════════════════════════════════════════ */
:root {
  --bg-0: #000000;
  --bg-1: #050506;
  --bg-2: #0A0A0C;
  --bg-card: rgba(255,255,255,0.035);
  --bg-card-hover: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.09);
  --border-hover: rgba(255,255,255,0.20);
  --text-primary: #F4F5F7;
  --text-secondary: #A6ABB4;
  --text-muted: #5C616B;
  --accent: #E9ECF1;          /* platinum */
  --accent-soft: #AEB6C4;     /* cool steel */
  --accent-glow: rgba(255,255,255,0.10);
  /* iridescent film sheen */
  --irid-1: #8EC9FF;
  --irid-2: #C9A6FF;
  --irid-3: #8FF4D8;
  --radius: 18px;
  --radius-sm: 12px;
  --max-width: 1180px;
  --font: 'Inter', -apple-system, 'SF Pro Text', 'Helvetica Neue', system-ui, sans-serif;
  --script: 'Sacramento', cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; background: #000; -webkit-text-size-adjust: 100%; }
html, body { min-height: 100%; overflow-x: clip; max-width: 100vw; }

/* The page background is fixed and full-bleed (viewport-fit=cover), so it flows
   seamlessly under the iPhone notch / status bar — no separate fill needed. */

body {
  font-family: var(--font);
  background:
    radial-gradient(120% 80% at 50% -10%, #101117 0%, #060608 38%, #000000 72%) fixed,
    #000000;
  color: var(--text-primary);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; transition: color .22s ease, opacity .22s ease; }
a:hover { color: #fff; }
img { max-width: 100%; display: block; }

::selection { background: rgba(255,255,255,0.16); color: #fff; }
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.14); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.28); }

/* ══ AMBIENT LAYERS — particles + drifting light fields ══ */
#rv-particles { position: fixed; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
.page-aurora { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.page-aurora div { position: absolute; width: 80vw; height: 80vw; border-radius: 50%; opacity: .10; will-change: transform; filter: blur(20px); }
.page-aurora .pa1 { top: 6%; left: -40%; background: radial-gradient(circle, rgba(174,182,196,.55), rgba(174,182,196,0) 64%); animation: paDrift 30s ease-in-out infinite; }
.page-aurora .pa2 { bottom: -22%; right: -42%; background: radial-gradient(circle, rgba(142,201,255,.30), rgba(142,201,255,0) 64%); animation: paDrift 38s ease-in-out infinite reverse; }
@keyframes paDrift { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(60px,-44px) scale(1.12); } }

#app-content, footer { position: relative; z-index: 1; }

/* ══ NAVBAR — floating liquid-glass pill rail ══ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 16px; padding-top: calc(18px + env(safe-area-inset-top, 0px));
  pointer-events: none;
}
.nav-inner {
  max-width: 1060px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.nav-inner > * { pointer-events: auto; }
.nav-logo {
  font-family: var(--script); font-size: 1.9rem; line-height: 1; color: #fff;
  padding-left: 4px; opacity: .96; transition: opacity .25s, text-shadow .25s;
  text-shadow: 0 0 22px rgba(255,255,255,0.15);
}
.nav-logo:hover { opacity: 1; text-shadow: 0 0 30px rgba(255,255,255,0.35); }
.nav-logo img { height: 30px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 2px;
  padding: 5px; border-radius: 999px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
  -webkit-backdrop-filter: blur(22px) saturate(1.4); backdrop-filter: blur(22px) saturate(1.4);
  box-shadow: 0 8px 30px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.10);
}
/* icon-only pills (no text) — Coastmotive mobile treatment, everywhere */
.nav-links { position: relative; }
/* liquid blob indicator gliding behind the icons */
.nav-ind {
  position: absolute; z-index: 0; left: 0; top: 5px; width: 42px; height: 42px;
  background: rgba(255,255,255,0.14); box-shadow: inset 0 1px 0 rgba(255,255,255,0.22);
  border-radius: 46% 54% 52% 48% / 50% 47% 53% 50%; pointer-events: none;
  transition: left .5s cubic-bezier(.16,1,.3,1), top .5s cubic-bezier(.16,1,.3,1), width .5s cubic-bezier(.16,1,.3,1), height .5s cubic-bezier(.16,1,.3,1);
  animation: navBlob 5s ease-in-out infinite;
}
@keyframes navBlob {
  0%,100% { border-radius: 46% 54% 52% 48% / 50% 47% 53% 50%; }
  50%     { border-radius: 54% 46% 47% 53% / 47% 53% 50% 50%; }
}
.nav-link {
  width: 42px; height: 42px; padding: 0; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-secondary); position: relative; z-index: 1;
  transition: color .25s ease;
}
.nav-link svg { width: 19px; height: 19px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.nav-link:hover { color: #fff; }
.nav-link.active { color: #fff; }
.nav-cta { color: var(--text-secondary); background: transparent; }
.nav-cta:hover { color: #fff; }
.nav-cta.active { color: #fff; }
@media (max-width: 560px) {
  .nav-logo { font-size: 1.6rem; }
  .nav-link { width: 40px; height: 40px; }
  .nav-ind { width: 40px; height: 40px; }
}

/* ══ HERO MODE TOGGLE — Marine / Automotive segmented liquid pill ══ */
.mode-toggle {
  position: relative; display: inline-flex; padding: 5px; margin: 0 auto 6px; border-radius: 999px;
  background: rgba(255,255,255,0.045); border: 1px solid rgba(255,255,255,0.10);
  -webkit-backdrop-filter: blur(22px) saturate(1.4); backdrop-filter: blur(22px) saturate(1.4);
  box-shadow: 0 8px 30px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.10);
  opacity: 0; animation: rise 1s cubic-bezier(.16,1,.3,1) .28s forwards;
}
.mode-thumb {
  position: absolute; z-index: 0; top: 5px; bottom: 5px; left: 5px; width: calc(50% - 5px);
  border-radius: 999px; background: var(--accent);
  box-shadow: 0 4px 18px rgba(255,255,255,0.18);
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.mode-toggle.marine .mode-thumb { transform: translateX(0); }
.mode-toggle.auto .mode-thumb { transform: translateX(100%); }
.mode-btn {
  position: relative; z-index: 1; flex: 1; min-width: 124px; padding: 10px 24px;
  background: none; border: none; cursor: pointer; font-family: var(--font);
  font-size: .9rem; font-weight: 700; letter-spacing: .2px; color: var(--text-secondary);
  transition: color .3s ease; white-space: nowrap;
}
.mode-btn.active { color: #08080A; }
@media (max-width: 460px) { .mode-btn { min-width: 104px; padding: 10px 16px; font-size: .84rem; } }

/* ══ HERO 3D HOLOGRAM VIEWER ══ */
.hero3d { position: relative; width: 100%; max-width: 720px; height: 360px; margin: 6px auto 2px; }
.hero3d canvas { display: block; margin: 0 auto; }
.r3d-loading { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: .82rem; letter-spacing: 1.5px; text-transform: uppercase; transition: opacity .6s ease; }
.hero3d.is-loaded .r3d-loading { opacity: 0; pointer-events: none; }
@media (max-width: 768px) { .hero3d { height: 300px; } }

/* ══ HERO ══ */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; padding: 96px 24px 150px;
}
.hero-aurora { position: absolute; width: 70vw; height: 70vw; border-radius: 50%; opacity: .5; pointer-events: none; filter: blur(8px); will-change: transform; }
.hero-aurora.h1 { top: -22%; left: -16%; background: radial-gradient(circle, rgba(174,182,196,.30), transparent 66%); animation: hFloat 18s ease-in-out infinite; }
.hero-aurora.h2 { bottom: -18%; right: -18%; background: radial-gradient(circle, rgba(142,201,255,.18), transparent 66%); animation: hFloat 24s ease-in-out infinite reverse; }
@keyframes hFloat { 0%,100% { transform: translate(0,0) scale(1);} 50% { transform: translate(40px,-30px) scale(1.1);} }
.hero-stars { position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,.7), transparent),
    radial-gradient(1px 1px at 70% 60%, rgba(255,255,255,.5), transparent),
    radial-gradient(1px 1px at 45% 80%, rgba(255,255,255,.6), transparent),
    radial-gradient(1px 1px at 85% 25%, rgba(255,255,255,.45), transparent);
  background-repeat: repeat; background-size: 340px 340px; opacity: .4;
  animation: twinkle 5s ease-in-out infinite;
  -webkit-mask-image: linear-gradient(to bottom,#000 0%,#000 40%,transparent 74%);
          mask-image: linear-gradient(to bottom,#000 0%,#000 40%,transparent 74%);
}
@keyframes twinkle { 0%,100%{opacity:.25} 50%{opacity:.5} }

.hero-inner { position: relative; z-index: 2; max-width: 880px; }
.hero-eyebrow {
  font-size: .74rem; font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
  color: var(--text-secondary); margin-bottom: 26px;
  opacity: 0; animation: rise .9s cubic-bezier(.16,1,.3,1) .1s forwards;
}
.hero-logo {
  font-family: var(--script); font-weight: 400;
  font-size: clamp(4.2rem, 14vw, 9rem); line-height: .9; color: #fff;
  text-shadow: 0 0 60px rgba(255,255,255,0.22), 0 2px 40px rgba(142,201,255,0.10);
  opacity: 0; animation: rise 1.1s cubic-bezier(.16,1,.3,1) .2s forwards;
}
.hero-logo img { height: clamp(56px, 11vw, 104px); width: auto; margin: 0 auto; filter: drop-shadow(0 0 40px rgba(255,255,255,0.2)); }
/* iPhone: large, clean, centered logo above the location text */
@media (max-width: 600px) {
  .hero-logo { width: 100%; }
  .hero-logo img { width: min(40vw, 140px); height: auto; margin: 0 auto 4px; }
  .nav-logo { display: none; }            /* hide top-left logo on mobile */
  .nav-inner { justify-content: center; } /* center the icon pills */
  /* clear the fixed nav + notch so it doesn't overlap the hero logo */
  .hero { padding-top: calc(120px + env(safe-area-inset-top, 0px)); }
  .page-head { padding-top: calc(120px + env(safe-area-inset-top, 0px)); }
}
.hero-tagline {
  font-size: clamp(1.05rem, 2.4vw, 1.5rem); font-weight: 500; letter-spacing: -.2px;
  color: var(--text-primary); margin-top: 22px;
  opacity: 0; animation: rise 1.1s cubic-bezier(.16,1,.3,1) .38s forwards;
}
.hero-sub {
  font-size: 1rem; color: var(--text-secondary); max-width: 540px; margin: 16px auto 0;
  opacity: 0; animation: rise 1.1s cubic-bezier(.16,1,.3,1) .5s forwards;
}
.hero-cta-row {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 38px;
  opacity: 0; animation: rise 1.1s cubic-bezier(.16,1,.3,1) .62s forwards;
}
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

/* ══ BUTTONS ══ */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font); font-size: .95rem; font-weight: 700; letter-spacing: .2px;
  padding: 15px 30px; border-radius: 999px; cursor: pointer; border: none; overflow: hidden;
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s, background .3s;
}
.btn-primary { background: var(--accent); color: #08080A; box-shadow: 0 10px 34px rgba(255,255,255,0.10); }
.btn-primary:hover { background: #fff; color: #000; transform: translateY(-3px); box-shadow: 0 16px 44px rgba(255,255,255,0.22); }
.btn-primary::before {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-18deg); transition: left .6s ease;
}
.btn-primary:hover::before { left: 130%; }
.btn-ghost {
  background: rgba(255,255,255,0.04); color: var(--text-primary);
  border: 1px solid var(--border); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
}
.btn-ghost:hover { border-color: var(--border-hover); background: rgba(255,255,255,0.08); transform: translateY(-3px); color: #fff; }

/* ══ SCROLL CUE ══ */
.scroll-cue { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 6px; opacity: .55; }
.scroll-cue svg { width: 22px; height: 22px; stroke: var(--text-secondary); fill: none; stroke-width: 1.6; animation: bob 2s ease-in-out infinite; }
@keyframes bob { 0%,100%{ transform: translateY(0); opacity: .4;} 50%{ transform: translateY(5px); opacity: 1;} }

/* ══ SECTIONS ══ */
.section { padding: 96px 24px; position: relative; }
.section-inner { max-width: var(--max-width); margin: 0 auto; position: relative; z-index: 2; }
.section-label { font-size: .74rem; font-weight: 600; letter-spacing: 3.5px; text-transform: uppercase; color: var(--accent-soft); text-align: center; margin-bottom: 14px; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.9rem); font-weight: 800; letter-spacing: -.8px; text-align: center; line-height: 1.08; }
.section-title .grad { background: linear-gradient(100deg, var(--irid-1), var(--irid-2) 50%, var(--irid-3)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.section-subtitle { color: var(--text-secondary); font-size: 1.02rem; max-width: 600px; margin: 18px auto 0; text-align: center; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }

/* ══ GLASS CARDS ══ */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.glass-card {
  position: relative; padding: 32px 28px; border-radius: var(--radius);
  background: var(--bg-card); border: 1px solid var(--border);
  -webkit-backdrop-filter: blur(20px) saturate(1.3); backdrop-filter: blur(20px) saturate(1.3);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 14px 40px rgba(0,0,0,0.4);
  transition: transform .5s cubic-bezier(.16,1,.3,1), border-color .4s, background .4s, box-shadow .4s;
  overflow: hidden;
}
.glass-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; opacity: 0; transition: opacity .5s;
  background: radial-gradient(120% 80% at 50% 0%, rgba(142,201,255,0.10), transparent 60%);
  pointer-events: none;
}
.glass-card:hover { transform: translateY(-8px); border-color: var(--border-hover); background: var(--bg-card-hover); box-shadow: inset 0 1px 0 rgba(255,255,255,0.10), 0 24px 60px rgba(0,0,0,0.55); }
.glass-card:hover::before { opacity: 1; }
.card-icon { width: 46px; height: 46px; margin-bottom: 20px; }
.card-icon svg { width: 100%; height: 100%; stroke: var(--accent); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; transition: filter .4s, transform .4s; }
.glass-card:hover .card-icon svg { filter: drop-shadow(0 0 14px var(--accent-glow)); transform: scale(1.06); }
.glass-card h3 { font-size: 1.22rem; font-weight: 700; letter-spacing: -.3px; margin-bottom: 10px; }
.glass-card .lede { color: var(--text-secondary); font-size: .94rem; }
.glass-card ul { list-style: none; margin-top: 18px; }
.glass-card li { color: var(--text-secondary); font-size: .89rem; padding: 6px 0 6px 20px; position: relative; transition: color .35s, padding-left .4s; }
.glass-card li::before { content: ""; position: absolute; left: 2px; top: 14px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-soft); opacity: .7; }
.glass-card li:hover { color: var(--text-primary); padding-left: 26px; }
.price-tag { display: inline-block; margin-top: 22px; font-size: .82rem; font-weight: 700; letter-spacing: .4px; color: var(--text-primary); padding: 7px 16px; border-radius: 999px; background: rgba(255,255,255,0.06); border: 1px solid var(--border); }

/* ══ FEATURE / SPLIT ROWS ══ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-top: 64px; }
.split + .split { margin-top: 96px; }
.split-solo { max-width: 780px; margin: 52px auto 0; }
.split.flip .split-media { order: 2; }
.split h3 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; letter-spacing: -.5px; margin-bottom: 14px; }
.split p { color: var(--text-secondary); font-size: 1rem; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.chip { font-size: .8rem; font-weight: 600; color: var(--text-secondary); padding: 7px 14px; border-radius: 999px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); }
.split-media {
  aspect-ratio: 4/3; border-radius: 22px; position: relative; overflow: hidden;
  border: 1px solid var(--border);
  background:
    radial-gradient(130% 100% at 30% 10%, rgba(142,201,255,.10), transparent 55%),
    radial-gradient(130% 100% at 80% 90%, rgba(201,166,255,.10), transparent 55%),
    linear-gradient(135deg, #0d0d10, #070708);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 24px 60px rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
}
.split-media .ph-label { font-size: .76rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); }
.split-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split-media .sheen { position: absolute; inset: 0; background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.06) 48%, transparent 60%); transform: translateX(-100%); animation: sheen 6s ease-in-out infinite; }
@keyframes sheen { 0%,70%{ transform: translateX(-100%);} 100%{ transform: translateX(100%);} }

/* ══ PROCESS STEPS ══ */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 52px; }
.step { padding: 28px 22px; border-radius: var(--radius); background: var(--bg-card); border: 1px solid var(--border); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); transition: transform .5s, border-color .4s; }
.step:hover { transform: translateY(-6px); border-color: var(--border-hover); }
.step-num { font-size: 2rem; font-weight: 800; letter-spacing: -1px; background: linear-gradient(180deg,#fff,#6a6f79); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.step h4 { font-size: 1.05rem; font-weight: 700; margin: 10px 0 6px; }
.step p { color: var(--text-secondary); font-size: .88rem; }

/* ══ STATS STRIP ══ */
.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 52px; }
.stat { text-align: center; padding: 30px 18px; border-radius: var(--radius); background: var(--bg-card); border: 1px solid var(--border); }
.stat .n { font-size: clamp(2rem,5vw,2.8rem); font-weight: 800; letter-spacing: -1px; }
.stat .l { color: var(--text-secondary); font-size: .85rem; margin-top: 6px; letter-spacing: .3px; }

/* ══ CTA BAND ══ */
.cta-band { text-align: center; }
.cta-band .glass-card { max-width: 760px; margin: 0 auto; padding: 56px 40px; }

/* ══ FAQ ══ */
.faq { max-width: 760px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; text-align: left; background: none; border: none; color: var(--text-primary); font-family: var(--font); font-size: 1.05rem; font-weight: 600; padding: 22px 40px 22px 0; cursor: pointer; position: relative; }
.faq-q::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 1.4rem; color: var(--accent-soft); transition: transform .3s; }
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .4s ease; color: var(--text-secondary); font-size: .95rem; }
.faq-item.open .faq-a { max-height: 240px; padding-bottom: 22px; }

/* ══ FORMS / WIZARD (booking) ══ */
.wizard { max-width: 560px; margin: 40px auto 0; position: relative; }
.wiz-progress { display: flex; justify-content: center; gap: 8px; margin-bottom: 36px; }
.wiz-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.14); transition: background .3s, transform .3s; }
.wiz-dot.on { background: var(--accent); transform: scale(1.25); }
.wiz-step { position: absolute; left: 0; right: 0; opacity: 0; transform: translateY(24px); pointer-events: none; transition: opacity .5s cubic-bezier(.16,1,.3,1), transform .5s cubic-bezier(.16,1,.3,1); }
.wiz-step.on { position: relative; opacity: 1; transform: none; pointer-events: auto; }
.wiz-q { font-size: clamp(1.35rem,3vw,1.8rem); font-weight: 800; letter-spacing: -.4px; text-align: center; margin-bottom: 8px; }
.wiz-q .grad { background: linear-gradient(100deg,var(--irid-1),var(--irid-2),var(--irid-3)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.wiz-hint { text-align: center; color: var(--text-muted); font-size: .9rem; margin-bottom: 22px; }
.wiz-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.wiz-opts.one { grid-template-columns: 1fr; }
.wiz-opt {
  padding: 20px 18px; border-radius: var(--radius-sm); cursor: pointer; text-align: left;
  background: var(--bg-card); border: 1px solid var(--border);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  transition: transform .35s cubic-bezier(.16,1,.3,1), border-color .3s, background .3s, box-shadow .3s;
}
.wiz-opt:hover { transform: translateY(-3px); background: var(--bg-card-hover); border-color: var(--border-hover); }
.wiz-opt.sel { border-color: var(--accent); background: rgba(255,255,255,0.08); box-shadow: 0 0 0 1px var(--accent), 0 0 26px rgba(255,255,255,0.10); }
.wiz-opt h4 { font-size: 1rem; font-weight: 700; }
.wiz-opt p { color: var(--text-muted); font-size: .82rem; margin-top: 4px; }
.wiz-fields { display: flex; flex-direction: column; gap: 14px; max-width: 440px; margin: 0 auto; }
.field input, .field textarea, .wiz-fields input, .wiz-fields textarea, .wiz-fields select, .form input, .form textarea, .form select {
  width: 100%; box-sizing: border-box; background: rgba(255,255,255,0.03);
  border: 1px solid var(--border); border-radius: 12px; padding: 14px 16px;
  color: var(--text-primary); font-family: var(--font); font-size: .98rem; transition: border-color .3s, background .3s;
}
input::placeholder, textarea::placeholder { color: var(--text-muted); }
.field input:focus, .wiz-fields input:focus, .wiz-fields textarea:focus, .wiz-fields select:focus, .form input:focus, .form textarea:focus, .form select:focus { outline: none; border-color: var(--accent); background: rgba(255,255,255,0.05); }
.form select option, .wiz-fields select option { background: #0A0A0C; }
.wiz-nav { display: flex; justify-content: center; margin-top: 26px; }
.wiz-back { background: none; border: none; color: var(--text-muted); font-family: var(--font); font-size: .9rem; cursor: pointer; padding: 10px; transition: color .25s; }
.wiz-back:hover { color: var(--text-primary); }
.bk-error { display: none; text-align: center; color: #FF8A8A; font-size: .9rem; margin-top: 14px; }
.bk-note { text-align: center; color: var(--text-muted); font-size: .82rem; margin-top: 14px; }

/* ══ CALENDAR ══ */
.bk-cal { max-width: 420px; margin: 0 auto; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); }
.bk-cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.bk-cal-title { font-weight: 700; font-size: 1rem; }
.bk-cal-btn { background: rgba(255,255,255,0.05); border: 1px solid var(--border); color: var(--text-primary); width: 34px; height: 34px; border-radius: 10px; cursor: pointer; font-size: 1.1rem; transition: background .25s; }
.bk-cal-btn:hover { background: rgba(255,255,255,0.12); }
.bk-dow { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; margin-bottom: 6px; }
.bk-dow span { text-align: center; font-size: .7rem; color: var(--text-muted); font-weight: 600; }
.bk-days { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; }
.bk-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; border-radius: 10px; font-size: .9rem; color: var(--text-primary); cursor: pointer; transition: background .2s, color .2s, transform .2s; }
.bk-day:not(.off):not(.sel):hover { background: rgba(255,255,255,0.10); transform: scale(1.06); }
.bk-day.off { color: var(--text-muted); opacity: .3; pointer-events: none; }
.bk-day.sel { background: var(--accent); color: #08080A; font-weight: 700; }
.bk-times { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 16px; }
.bk-pill { padding: 10px 18px; border-radius: 999px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); cursor: pointer; font-size: .9rem; transition: background .25s, border-color .25s; }
.bk-pill.sel { background: var(--accent); color: #08080A; font-weight: 700; border-color: var(--accent); }
.bk-label { font-size: .74rem; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; color: var(--accent-soft); margin-bottom: 12px; text-align: center; }

/* ══ CONTACT ══ */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; max-width: 1000px; margin: 52px auto 0; text-align: left; }
.form { display: flex; flex-direction: column; gap: 14px; }
.form label { font-size: .82rem; font-weight: 600; color: var(--text-secondary); margin-bottom: -6px; }
.form textarea { min-height: 110px; resize: vertical; }
.form-success { display: none; color: var(--irid-3); font-size: .92rem; margin-top: 6px; }
.contact-aside h4 { font-size: .98rem; font-weight: 700; margin-bottom: 6px; }
.contact-aside p { color: var(--text-secondary); font-size: .92rem; margin-bottom: 22px; }

/* ══ MARQUEE (trust strip) ══ */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg,transparent,#000 12%,#000 88%,transparent); mask-image: linear-gradient(90deg,transparent,#000 12%,#000 88%,transparent); }
.marquee-track { display: flex; gap: 56px; width: max-content; animation: scroll-x 26s linear infinite; }
.marquee-track span { font-size: .9rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); white-space: nowrap; }
@keyframes scroll-x { from { transform: translateX(0);} to { transform: translateX(-50%);} }

/* ══ FOOTER ══ */
footer { border-top: 1px solid var(--border); padding: 48px 24px; margin-top: 40px; }
.footer-inner { max-width: var(--max-width); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-logo { font-family: var(--script); font-size: 2rem; color: #fff; }
.footer-logo img { height: 40px; width: auto; opacity: .92; }
.footer-meta { color: var(--text-muted); font-size: .8rem; }
.footer-social { display: flex; gap: 18px; }
.footer-social a { color: var(--text-secondary); font-size: .85rem; }
.footer-social a:hover { color: #fff; }

/* ══ PAGE HEADER (sub-pages) ══ */
.page-head { padding: 150px 24px 30px; text-align: center; position: relative; }
.page-head h1 { font-size: clamp(2.2rem,5.5vw,3.6rem); font-weight: 800; letter-spacing: -1px; }
.page-head .grad { background: linear-gradient(100deg,var(--irid-1),var(--irid-2),var(--irid-3)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.page-head p { color: var(--text-secondary); max-width: 560px; margin: 16px auto 0; }

/* ══ RESPONSIVE ══ */
@media (max-width: 900px) {
  .card-grid { grid-template-columns: 1fr; }
  .split, .split.flip .split-media { grid-template-columns: 1fr; }
  .split.flip .split-media { order: 0; }
  .steps { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .section { padding: 72px 20px; }
  .steps { grid-template-columns: 1fr; }
  .wiz-opts { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001s !important; transition-duration: .15s !important; }
}
