/* =========================================================
   MERIDIAN — premium chauffeur site
   Design system: black / white / signature gold-yellow
   ========================================================= */

/* ---------- TOKENS ---------- */
:root {
  --ink:      #0B0B0C;
  --ink-2:    #101012;
  --ink-3:    #17171a;
  --card:     #141417;
  --line:     rgba(255,255,255,.09);
  --line-2:   rgba(255,255,255,.05);

  --white:    #FFFFFF;
  --smoke:    #B7B7BE;
  --smoke-2:  #8A8A92;

  --gold:     #FFD21E;
  --gold-2:   #F4B301;
  --gold-glow: rgba(255,210,30,.35);

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body:    "Manrope", system-ui, sans-serif;
  --font-serif:   "Fraunces", Georgia, serif;

  --wrap: 1220px;
  --gutter: clamp(1.15rem, 4vw, 3rem);
  --radius: 18px;
  --radius-lg: 26px;

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  --shadow: 0 30px 70px -30px rgba(0,0,0,.75);
  --shadow-gold: 0 20px 50px -18px var(--gold-glow);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--white);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--gold); color: #000; }

.container { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.04; letter-spacing: -.02em; }
em { font-style: normal; }

.section-eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.section-title {
  font-size: clamp(1.9rem, 4.6vw, 3.4rem);
  max-width: 16ch;
}
.section-title em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--gold); }
.section-note { color: var(--smoke); margin-top: 1rem; max-width: 46ch; }
.section-head { margin-bottom: clamp(2.2rem, 5vw, 3.6rem); }
.lead { color: var(--smoke); font-size: clamp(1rem, 1.6vw, 1.18rem); max-width: 52ch; }

/* ---------- OVERLAYS: grain, vignette ---------- */
.grain, .vignette { position: fixed; inset: 0; pointer-events: none; z-index: 9000; }
.grain {
  opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.vignette { box-shadow: inset 0 0 260px 40px rgba(0,0,0,.55); z-index: 8000; }

/* ---------- SCROLL PROGRESS ---------- */
.scrollbar {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  z-index: 10000; box-shadow: 0 0 12px var(--gold-glow);
}

/* ---------- CUSTOM CURSOR ---------- */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 9500;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold); pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width .28s var(--ease), height .28s var(--ease), background .28s;
  mix-blend-mode: difference;
  display: none;
}
.cursor.is-active { width: 74px; height: 74px; background: var(--gold); }
.cursor__label {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-size: .58rem; font-weight: 700; color: #000; text-transform: uppercase; letter-spacing: .05em;
  opacity: 0; transition: opacity .2s;
}
.cursor.is-active .cursor__label { opacity: 1; }
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }

/* ---------- PRELOADER ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 10001; background: var(--ink);
  display: grid; place-items: center;
  transition: opacity .7s var(--ease), visibility .7s;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__mark { display: flex; align-items: center; gap: .9rem; margin-bottom: 1.4rem; }
.preloader__line { display: block; width: 0; height: 1px; background: var(--gold); animation: pl-line 1.1s var(--ease-out) forwards; }
.preloader__word {
  font-family: var(--font-display); font-weight: 600; letter-spacing: .42em; font-size: 1.05rem;
  color: #fff; padding-left: .42em; opacity: 0; animation: pl-word .8s .25s var(--ease) forwards;
}
.preloader__bar { width: min(220px, 46vw); height: 2px; background: rgba(255,255,255,.12); border-radius: 2px; overflow: hidden; }
.preloader__bar i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--gold), var(--gold-2)); animation: pl-bar 1.2s .1s var(--ease) forwards; }
@keyframes pl-line { to { width: 46px; } }
@keyframes pl-word { to { opacity: 1; } }
@keyframes pl-bar { to { width: 100%; } }

/* ---------- BUTTONS ---------- */
.btn {
  --pad-y: .85rem; --pad-x: 1.4rem;
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: var(--pad-y) var(--pad-x);
  font-family: var(--font-display); font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  border-radius: 100px; white-space: nowrap;
  transition: transform .35s var(--ease), background .3s, color .3s, box-shadow .35s, border-color .3s;
  will-change: transform;
}
.btn svg { transition: transform .35s var(--ease); }
.btn--gold { background: var(--gold); color: #0A0A0A; box-shadow: var(--shadow-gold); }
.btn--gold:hover { background: #ffdb45; box-shadow: 0 24px 60px -16px var(--gold-glow); }
.btn--gold:hover svg { transform: translateX(4px); }
.btn--ghost { border: 1px solid var(--line); color: #fff; background: rgba(255,255,255,.02); backdrop-filter: blur(4px); }
.btn--ghost:hover { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.06); }
.btn--lg { --pad-y: 1.08rem; --pad-x: 1.9rem; font-size: 1rem; }
.btn--sm { --pad-y: .62rem; --pad-x: 1.1rem; font-size: .85rem; }
.btn--block { width: 100%; }

/* button loading + success states */
.btn__spin {
  position: absolute; width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid rgba(0,0,0,.25); border-top-color: #000; opacity: 0;
  animation: spin .7s linear infinite;
}
.btn.is-loading .btn__text { opacity: 0; }
.btn.is-loading .btn__spin { opacity: 1; }
.btn.is-loading { pointer-events: none; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 7000;
  transition: background .4s var(--ease), backdrop-filter .4s, border-color .4s, transform .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(10,10,11,.72);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav.is-hidden { transform: translateY(-100%); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.4rem; height: 74px; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.brand { display: inline-flex; align-items: center; gap: .6rem; color: #fff; }
.brand__mark { color: #fff; transition: transform .6s var(--ease); }
.brand:hover .brand__mark { transform: rotate(90deg); }
.brand__name { font-family: var(--font-display); font-weight: 600; letter-spacing: .3em; font-size: .95rem; padding-left: .1em; }
.nav__links { display: flex; gap: 2rem; }
.nav__links a { position: relative; font-size: .92rem; color: var(--smoke); transition: color .3s; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px; background: var(--gold); transition: width .35s var(--ease); }
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: 1.1rem; }
.nav__phone { font-size: .9rem; color: var(--smoke); letter-spacing: .02em; }
.nav__phone:hover { color: var(--gold); }
.nav__burger { display: none; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav__burger span { width: 17px; height: 1.5px; background: #fff; transition: transform .35s var(--ease), opacity .3s; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(3.25px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { transform: translateY(-3.25px) rotate(-45deg); }

/* language switcher */
.langsw { display: inline-flex; align-items: center; gap: 2px; padding: 3px; border: 1px solid var(--line); border-radius: 100px; background: rgba(255,255,255,.03); }
.langsw__btn { font-family: var(--font-display); font-size: .72rem; font-weight: 600; letter-spacing: .03em; color: var(--smoke); padding: .34rem .56rem; border-radius: 100px; line-height: 1; transition: color .3s, background .3s; }
.langsw__btn:hover { color: #fff; }
.langsw__btn.is-active { background: var(--gold); color: #0a0a0a; }

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 6900; background: rgba(8,8,9,.97);
  backdrop-filter: blur(20px);
  display: grid; place-items: center;
  opacity: 0; visibility: hidden; transition: opacity .45s var(--ease), visibility .45s;
}
.drawer.is-open { opacity: 1; visibility: visible; }
.drawer__links { display: flex; flex-direction: column; gap: 1.4rem; text-align: center; }
.drawer__links a { font-family: var(--font-display); font-size: 1.7rem; color: #fff; }
.drawer__links a:not(.btn) { opacity: .85; }
.drawer__phone { font-size: 1rem !important; color: var(--gold) !important; font-family: var(--font-body) !important; }

/* ======================================================
   HERO
   ====================================================== */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; padding-bottom: clamp(3rem, 8vh, 6rem); overflow: hidden; }
.hero__media { position: absolute; inset: -8% 0 0 0; z-index: 0; will-change: transform; }
.hero__img { width: 100%; height: 116%; object-fit: cover; object-position: center 40%; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,11,12,.55) 0%, rgba(11,11,12,.15) 35%, rgba(11,11,12,.75) 78%, var(--ink) 100%),
    radial-gradient(120% 80% at 15% 90%, rgba(11,11,12,.85), transparent 60%);
}
.hero__particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero__content { position: relative; z-index: 2; max-width: 900px; }

.eyebrow { display: inline-flex; align-items: center; gap: .7rem; text-transform: uppercase; letter-spacing: .24em; font-size: .74rem; font-weight: 600; color: #fff; margin-bottom: 1.4rem; }
.eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px var(--gold-glow); animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 var(--gold-glow); } 50% { box-shadow: 0 0 0 6px rgba(255,210,30,0); } }

.hero__title { font-size: clamp(2.7rem, 8.5vw, 6.4rem); font-weight: 600; letter-spacing: -.03em; margin-bottom: 1.6rem; }
.hero__title .line { display: block; overflow: hidden; }
.hero__title em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--gold); }
.hero__sub { font-size: clamp(1rem, 1.9vw, 1.28rem); color: var(--smoke); max-width: 52ch; margin-bottom: 2.4rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }

.hero__proof { list-style: none; display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 4vw, 3.2rem); border-top: 1px solid var(--line); padding-top: 1.6rem; }
.hero__proof li { display: flex; flex-direction: column; }
.hero__proof strong { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; }
.hero__proof span { font-size: .82rem; color: var(--smoke-2); }

.hero__scroll { position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .6rem; font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--smoke); }
.hero__scroll i { width: 1px; height: 42px; background: linear-gradient(var(--gold), transparent); position: relative; overflow: hidden; }
.hero__scroll i::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--gold); animation: scroll-drop 1.8s var(--ease) infinite; }
@keyframes scroll-drop { to { top: 120%; } }

/* ======================================================
   INTRO + STATS
   ====================================================== */
.intro { padding: clamp(5rem, 12vh, 9rem) var(--gutter); }
.intro__grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: end; }
.intro__text .section-title { margin-bottom: 1.6rem; }
.stats { display: grid; gap: 1.6rem; }
.stat { border-top: 1px solid var(--line); padding-top: 1.1rem; display: grid; grid-template-columns: auto 1fr; align-items: baseline; column-gap: .2rem; }
.stat__num { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 600; color: #fff; line-height: 1; }
.stat__unit { font-family: var(--font-display); font-size: 1.4rem; color: var(--gold); align-self: flex-start; }
.stat p { grid-column: 1 / -1; color: var(--smoke); font-size: .9rem; margin-top: .3rem; }

/* ======================================================
   SERVICES — 3D tilt cards
   ====================================================== */
.services { padding: clamp(3rem, 6vh, 5rem) var(--gutter) clamp(5rem, 12vh, 8rem); }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.card {
  position: relative; padding: 2rem 1.6rem 1.8rem; border-radius: var(--radius);
  background: linear-gradient(160deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line); overflow: hidden;
  transform-style: preserve-3d;
  transition: border-color .4s, box-shadow .4s;
  min-height: 320px; display: flex; flex-direction: column;
}
.card:hover { border-color: rgba(255,210,30,.35); box-shadow: var(--shadow); }
.card__glow {
  position: absolute; width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow), transparent 65%);
  top: var(--my, 50%); left: var(--mx, 50%); transform: translate(-50%,-50%);
  opacity: 0; transition: opacity .4s; pointer-events: none; filter: blur(6px);
}
.card:hover .card__glow { opacity: .55; }
.card__num { font-family: var(--font-display); font-size: .8rem; color: var(--smoke-2); letter-spacing: .1em; transform: translateZ(30px); }
.card__icon { margin: 1.6rem 0 1.2rem; color: var(--gold); transform: translateZ(45px); }
.card h3 { font-size: 1.35rem; margin-bottom: .7rem; transform: translateZ(35px); }
.card p { color: var(--smoke); font-size: .93rem; flex: 1; transform: translateZ(20px); }
.card__link { margin-top: 1.2rem; font-size: .82rem; font-weight: 600; color: var(--gold); transform: translateZ(30px); }

/* ======================================================
   SHOWCASE — Apple-style sticky scrub
   ====================================================== */
.showcase { position: relative; height: 320vh; background: var(--ink); }
.showcase__sticky { position: sticky; top: 0; height: 100svh; overflow: hidden; display: grid; place-items: center; }
.showcase__bg {
  position: absolute; inset: 0;
  background: radial-gradient(70% 60% at 50% 45%, rgba(255,210,30,.10), transparent 60%), var(--ink);
}
.showcase__stage { position: relative; z-index: 2; width: min(760px, 84vw); aspect-ratio: 4/5; max-height: 78vh; display: grid; place-items: center; }
.showcase__ring {
  position: absolute; width: 118%; aspect-ratio: 1; border-radius: 50%;
  border: 1px solid rgba(255,210,30,.25);
  box-shadow: 0 0 120px rgba(255,210,30,.12) inset;
}
.showcase__car {
  width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg);
  box-shadow: 0 60px 120px -40px rgba(0,0,0,.9);
  transform: scale(.72) rotateY(0deg);
  will-change: transform;
}
.showcase__copy { position: absolute; z-index: 3; text-align: center; pointer-events: none; padding-inline: 1rem; }
.showcase__title { font-size: clamp(2rem, 7vw, 5rem); font-weight: 600; letter-spacing: -.03em; line-height: 1.02; text-shadow: 0 10px 40px rgba(0,0,0,.6); }
.showcase__title span, .showcase__title em { display: inline-block; }
.showcase__title em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--gold); }
.showcase__you { color: var(--gold); }
.showcase__specs { position: absolute; z-index: 4; bottom: clamp(1.4rem, 5vh, 3rem); left: 50%; transform: translateX(-50%); display: flex; gap: clamp(1rem, 4vw, 3rem); list-style: none; text-align: center; flex-wrap: wrap; justify-content: center; padding-inline: 1rem; }
.showcase__specs li { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.showcase__specs li.is-in { opacity: 1; transform: none; }
.showcase__specs b { display: block; font-family: var(--font-display); font-size: 1rem; }
.showcase__specs span { font-size: .82rem; color: var(--smoke); }

/* ======================================================
   FLEET
   ====================================================== */
.fleet { padding: clamp(5rem, 12vh, 8rem) var(--gutter); }
.fleet__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; align-items: stretch; }
.plan {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line); display: flex; flex-direction: column;
  transform-style: preserve-3d; transition: border-color .4s, box-shadow .4s, transform .4s;
}
.plan:hover { border-color: rgba(255,255,255,.22); box-shadow: var(--shadow); }
.plan--featured { border-color: rgba(255,210,30,.45); box-shadow: 0 30px 80px -30px var(--gold-glow); }
.plan--featured::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: linear-gradient(160deg, var(--gold), transparent 40%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.plan__flag { position: absolute; top: 1rem; right: 1rem; z-index: 3; background: var(--gold); color: #000; font-family: var(--font-display); font-weight: 600; font-size: .72rem; letter-spacing: .04em; padding: .4rem .8rem; border-radius: 100px; }
.plan__media { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.plan__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.plan:hover .plan__media img { transform: scale(1.06); }
.plan__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(20,20,23,.9)); }
.plan__body { padding: 1.6rem 1.6rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.plan__body h3 { font-size: 1.6rem; margin-bottom: .25rem; }
.plan__cars { color: var(--gold); font-size: .84rem; font-weight: 600; letter-spacing: .02em; margin-bottom: 1.2rem; }
.plan__list { list-style: none; display: grid; gap: .6rem; margin-bottom: 1.4rem; flex: 1; }
.plan__list li { position: relative; padding-left: 1.4rem; color: var(--smoke); font-size: .9rem; }
.plan__list li::before { content: ""; position: absolute; left: 0; top: .55em; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.plan__price { display: flex; align-items: baseline; gap: .35rem; margin-bottom: 1.3rem; }
.plan__price span { color: var(--smoke-2); font-size: .8rem; }
.plan__price b { font-family: var(--font-display); font-size: 2rem; font-weight: 600; }
.plan__price i { color: var(--smoke); font-style: normal; font-size: .9rem; }
.fleet__disclaimer { text-align: center; margin-top: 2rem; color: var(--smoke-2); font-size: .84rem; }

/* ======================================================
   PROCESS
   ====================================================== */
.process { padding: clamp(3rem, 6vh, 5rem) var(--gutter) clamp(5rem, 12vh, 8rem); }
.steps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; counter-reset: s; }
.step { position: relative; padding: 2.2rem 1.8rem; border-radius: var(--radius); background: var(--ink-2); border: 1px solid var(--line); }
.step__n { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--gold); color: var(--gold); font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; margin-bottom: 1.4rem; }
.step h3 { font-size: 1.35rem; margin-bottom: .6rem; }
.step p { color: var(--smoke); font-size: .93rem; }
.step:not(:last-child)::after { content: ""; position: absolute; top: 3.3rem; right: -.85rem; width: 1.7rem; height: 1px; background: var(--line); }

/* ======================================================
   EXPERIENCE / GUARANTEES
   ====================================================== */
.experience { position: relative; padding: clamp(5rem, 14vh, 9rem) 0; overflow: hidden; }
.experience__media { position: absolute; inset: 0; z-index: 0; }
.experience__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.experience__scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,11,12,.96) 0%, rgba(11,11,12,.8) 45%, rgba(11,11,12,.55) 100%), linear-gradient(0deg, var(--ink), transparent 30%, transparent 70%, var(--ink)); }
.experience__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.experience__copy .section-title { margin-bottom: 1.2rem; }
.guarantees { list-style: none; display: grid; gap: 1.1rem; }
.guarantee { display: flex; gap: 1.1rem; padding: 1.3rem 1.4rem; border-radius: var(--radius); background: rgba(20,20,23,.6); border: 1px solid var(--line); backdrop-filter: blur(8px); transition: border-color .35s, transform .35s; }
.guarantee:hover { border-color: rgba(255,210,30,.4); transform: translateX(6px); }
.guarantee__ico { flex: none; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--gold); color: #000; font-weight: 800; font-size: .85rem; }
.guarantee b { display: block; font-family: var(--font-display); font-size: 1.02rem; margin-bottom: .2rem; }
.guarantee p { color: var(--smoke); font-size: .88rem; }

/* ======================================================
   TESTIMONIALS
   ====================================================== */
.testimonials { padding: clamp(5rem, 12vh, 8rem) var(--gutter); }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.quote { padding: 2rem 1.8rem; border-radius: var(--radius); background: linear-gradient(160deg, var(--ink-3), var(--ink-2)); border: 1px solid var(--line); }
.quote__stars { color: var(--gold); letter-spacing: .18em; font-size: .9rem; margin-bottom: 1.1rem; }
.quote blockquote { font-family: var(--font-display); font-size: 1.12rem; line-height: 1.5; font-weight: 500; margin-bottom: 1.2rem; }
.quote figcaption { color: var(--smoke); font-size: .85rem; }

/* ======================================================
   BOOKING
   ====================================================== */
.booking { padding: clamp(4rem, 10vh, 7rem) 0; background: linear-gradient(180deg, var(--ink), var(--ink-2)); border-top: 1px solid var(--line); }
.booking__inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.booking__intro .section-title { margin-bottom: 1.2rem; }
.booking__usps { list-style: none; display: grid; gap: .8rem; margin: 1.8rem 0; }
.booking__usps li { display: flex; align-items: center; gap: .7rem; color: var(--smoke); font-size: .92rem; }
.booking__usps span { color: var(--gold); font-weight: 800; }
.booking__assure { display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.2rem; border-radius: var(--radius); background: rgba(255,255,255,.03); border: 1px solid var(--line); }
.booking__avatar { flex: none; width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(140deg, var(--gold), var(--gold-2)); color: #000; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; }
.booking__assure p { font-size: .85rem; color: var(--smoke); }

/* form */
.bookform { position: relative; padding: clamp(1.6rem, 4vw, 2.4rem); border-radius: var(--radius-lg); background: linear-gradient(180deg, var(--ink-3), rgba(20,20,23,.6)); border: 1px solid var(--line); box-shadow: var(--shadow); }
.bookform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.bookform__row--3 { grid-template-columns: 1fr 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: .45rem; }
.field label { font-size: .82rem; font-weight: 600; letter-spacing: .01em; color: #eaeaea; }
.field__hint { color: var(--smoke-2); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem .95rem; border-radius: 12px;
  background: rgba(255,255,255,.03); border: 1px solid var(--line); color: #fff;
  font: inherit; font-size: .92rem; transition: border-color .3s, background .3s, box-shadow .3s;
}
.field textarea { resize: vertical; min-height: 58px; }
.field input::placeholder, .field textarea::placeholder { color: var(--smoke-2); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: rgba(255,210,30,.05); box-shadow: 0 0 0 3px rgba(255,210,30,.12); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23FFD21E' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .95rem center; padding-right: 2.2rem; }
.field__err { color: #ff8a8a; font-size: .76rem; height: 0; opacity: 0; transition: opacity .25s; }
.field.is-invalid input, .field.is-invalid select { border-color: #ff6b6b; background: rgba(255,80,80,.06); }
.field.is-invalid .field__err { height: auto; opacity: 1; }
.field__km { display: flex; align-items: center; gap: .9rem; }
.field__km output { font-family: var(--font-display); font-weight: 600; color: var(--gold); min-width: 66px; font-size: .95rem; }

/* range slider */
input[type=range] { -webkit-appearance: none; appearance: none; height: 4px; border-radius: 4px; background: rgba(255,255,255,.14); flex: 1; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--gold); cursor: grab; box-shadow: 0 4px 14px var(--gold-glow); border: 3px solid #0b0b0c; }
input[type=range]::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: var(--gold); cursor: grab; border: 3px solid #0b0b0c; }

/* estimate */
.estimate { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; padding: 1.1rem 1.3rem; margin: .4rem 0 1.2rem; border-radius: 14px; background: linear-gradient(120deg, rgba(255,210,30,.08), rgba(255,210,30,.02)); border: 1px solid rgba(255,210,30,.28); }
.estimate__label { font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; color: var(--smoke); }
.estimate__value { display: flex; flex-direction: column; }
.estimate__value span { font-family: var(--font-display); font-size: 1.9rem; font-weight: 600; color: var(--gold); line-height: 1; }
.estimate__value small { color: var(--smoke-2); font-size: .74rem; margin-top: .25rem; }
.estimate__bar { flex: 1; min-width: 120px; height: 4px; border-radius: 4px; background: rgba(255,255,255,.1); overflow: hidden; }
.estimate__bar i { display: block; height: 100%; width: 40%; background: linear-gradient(90deg, var(--gold-2), var(--gold)); transition: width .5s var(--ease); }

.bookform__legal { color: var(--smoke-2); font-size: .74rem; margin-top: .9rem; text-align: center; }

/* form success */
.bookform__success { position: absolute; inset: 0; z-index: 5; border-radius: var(--radius-lg); background: linear-gradient(180deg, var(--ink-3), var(--ink-2)); display: grid; place-content: center; text-align: center; padding: 2rem; gap: .3rem; animation: fade .5s var(--ease); }
.bookform__check { margin: 0 auto 1rem; }
.bookform__check path { stroke-dasharray: 60; stroke-dashoffset: 60; animation: draw .7s .2s var(--ease-out) forwards; }
.bookform__check circle { stroke-dasharray: 152; stroke-dashoffset: 152; animation: draw 1s var(--ease-out) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.bookform__success h3 { font-size: 1.7rem; margin-bottom: .4rem; }
.bookform__success p { color: var(--smoke); margin-bottom: 1.4rem; max-width: 40ch; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

/* ======================================================
   FINAL CTA
   ====================================================== */
.finalcta { position: relative; padding: clamp(5rem, 14vh, 9rem) 0; text-align: center; overflow: hidden; }
.finalcta__bg { position: absolute; inset: 0; background: var(--ink-2); }
.finalcta__bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.finalcta__bg::after { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 130% at 50% 0%, rgba(255,210,30,.16), transparent 55%), linear-gradient(0deg, var(--ink) 0%, rgba(11,11,12,.55) 45%, rgba(11,11,12,.7) 100%); }
.finalcta__inner { position: relative; z-index: 1; display: grid; gap: 1.4rem; justify-items: center; }
.finalcta h2 { font-size: clamp(2.2rem, 6vw, 4.2rem); }
.finalcta p { color: var(--smoke); font-size: 1.1rem; }

/* ======================================================
   FOOTER
   ====================================================== */
.footer { background: var(--ink); border-top: 1px solid var(--line); padding-top: clamp(3.5rem, 8vh, 5.5rem); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer__brand p { color: var(--smoke); font-size: .9rem; margin-top: 1.1rem; max-width: 34ch; }
.footer__mini { color: var(--smoke-2) !important; font-size: .8rem !important; }
.footer__col h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .16em; color: var(--smoke-2); margin-bottom: 1.1rem; font-family: var(--font-body); font-weight: 700; }
.footer__col a { display: block; color: var(--smoke); font-size: .92rem; margin-bottom: .7rem; transition: color .3s; }
.footer__col a:hover { color: var(--gold); }
.footer__contact .btn { margin-top: .6rem; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.6rem 0; border-top: 1px solid var(--line); color: var(--smoke-2); font-size: .82rem; flex-wrap: wrap; }
.footer__legal { display: flex; gap: 1.4rem; }
.footer__legal a:hover { color: var(--gold); }

/* ======================================================
   REVEAL ANIMATIONS (3D fold-in)
   ====================================================== */
[data-reveal] { opacity: 0; transform: translateY(38px) rotateX(-12deg); transform-origin: top center; transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); will-change: transform, opacity; }
[data-reveal].is-in { opacity: 1; transform: none; }
.reveal-stagger > * { transition-delay: var(--d, 0s); }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero__scroll i::after, .eyebrow__dot { animation: none !important; }
}

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 1040px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .nav__links { display: none; }
  .nav__phone { display: none; }
  .nav__burger { display: flex; }
}
@media (max-width: 860px) {
  .intro__grid { grid-template-columns: 1fr; align-items: start; }
  .fleet__grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .plan--featured { order: -1; }
  .steps { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { display: none; }
  .experience__inner { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .booking__inner { grid-template-columns: 1fr; }
  .showcase { height: 260vh; }
}
@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
  .bookform__row, .bookform__row--3 { grid-template-columns: 1fr; }
  .hero__proof { gap: 1.4rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .nav__actions .btn { display: none; }
  .showcase__specs { display: none; }
}
