/* ==========================================================================
   BlackRent — design system v1 (see docs/DESIGN.md)
   Monochrome brand: black / white, one configurable accent (default: white).
   Mobile-first. Font: Outfit (self-hosted, variable 100–900).
   ========================================================================== */

@font-face {
  font-family: "Outfit";
  src: url("../fonts/Outfit.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --bg: #0B0B0C;
  --bg-2: #141417;
  --bg-3: #1D1D21;
  --fg: #FFFFFF;
  --fg-2: rgba(255, 255, 255, .72);
  --fg-3: rgba(255, 255, 255, .48);
  --line: rgba(255, 255, 255, .12);
  --accent: #FFFFFF;
  --accent-fg: #0B0B0C;
  --r-sm: 8px;
  --r: 16px;
  --r-lg: 28px;
  --max: 1200px;
  --pad: clamp(18px, 4vw, 44px);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* light sections invert the palette (like the BLACK box in the logo) */
.light {
  --bg: #FFFFFF;
  --bg-2: #F3F3F4;
  --bg-3: #E9E9EB;
  --fg: #0B0B0C;
  --fg-2: rgba(11, 11, 12, .72);
  --fg-3: rgba(11, 11, 12, .5);
  --line: rgba(11, 11, 12, .12);
  --accent: #0B0B0C;
  --accent-fg: #FFFFFF;
  background: var(--bg);
  color: var(--fg);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 84px; /* room for the mobile sticky bar */
}
@media (min-width: 900px) { body { padding-bottom: 0; } }

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3 { margin: 0; font-weight: 900; letter-spacing: -.025em; line-height: 1.02; }
h2 { font-size: clamp(1.9rem, 4.2vw, 3.4rem); }
h3 { font-size: 1.35rem; letter-spacing: -.01em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
.muted { color: var(--fg-3); }
.hide-m { display: none !important; }
@media (min-width: 900px) { .hide-m { display: inline-flex !important; } }

.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.wrap.narrow { max-width: 820px; }
section { padding: clamp(64px, 9vw, 120px) 0; }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .78rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--fg-3);
  margin: 0 0 14px;
}
.kicker .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--fg); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(.7); } }

.lead { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--fg-2); max-width: 44ch; }
.sec-head { max-width: 860px; margin-bottom: clamp(32px, 5vw, 56px); }
.sec-head .lead { margin-top: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--accent); color: var(--accent-fg);
  font: inherit; font-weight: 700; font-size: 1rem;
  padding: 15px 24px; border-radius: 999px; border: 0; cursor: pointer; text-decoration: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -12px rgba(0, 0, 0, .6); }
.btn:active { transform: translateY(0); }
.btn.small { padding: 11px 18px; font-size: .95rem; }
.btn.wide { width: 100%; padding: 17px 24px; font-size: 1.05rem; }
.btn.ghost { background: transparent; color: var(--fg); border: 1px solid var(--line); }
.btn.ghost:hover { background: var(--bg-2); }
.btn.icon { padding: 13px; }
/* speed-lines sweep on hover */
.btn::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, transparent 30%, rgba(255, 255, 255, .25) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform .6s var(--ease);
}
.light .btn::after { background: linear-gradient(100deg, transparent 30%, rgba(255, 255, 255, .18) 50%, transparent 70%); }
.btn:hover::after { transform: translateX(120%); }

/* ---------- Header ---------- */
.hdr {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 11, 12, .72);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.hdr .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 68px; }
.logo img { height: 34px; width: auto; }
@media (min-width: 900px) { .hdr .wrap { height: 76px; } .logo img { height: 38px; } }
.nav { display: none; gap: 30px; }
.nav a { color: var(--fg-2); text-decoration: none; font-weight: 500; font-size: .98rem; transition: color .2s; position: relative; }
.nav a:hover { color: var(--fg); }
.nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px; background: var(--fg); transition: right .3s var(--ease); }
.nav a:hover::after { right: 0; }
@media (min-width: 1000px) { .nav { display: flex; } }
.hdr-right { display: flex; align-items: center; gap: 12px; }
.lang { display: flex; border: 1px solid var(--line); border-radius: 999px; padding: 3px; }
.lang a, .lang span {
  color: var(--fg-3); font-weight: 700; font-size: .85rem; text-decoration: none;
  padding: 6px 12px; border-radius: 999px; transition: all .2s; line-height: 1.2;
}
.lang a:hover { color: var(--fg); }
.lang .on { background: var(--fg); color: #0B0B0C; }
.hdr.scrolled { background: rgba(11, 11, 12, .88); }

/* ---------- Hero ---------- */
.hero { position: relative; isolation: isolate; padding: 0 0 clamp(40px, 5vw, 64px); }
.hero-top { position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 78%; animation: kenburns 16s var(--ease) both; transform-origin: 65% 80%; }
@keyframes kenburns { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-shade { position: absolute; inset: 0; z-index: -1; }
.hero-copy { animation: rise .9s var(--ease) both .1s; }
.hero .widget { animation: rise .9s var(--ease) both .3s; }
@keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.hero .lead { color: rgba(255,255,255,.84); }

/* phones & tablets: photo band on top, text and widget below */
@media (max-width: 999px) {
  .hero-bg { position: relative; inset: auto; height: clamp(230px, 64vw, 540px); }
  .hero-bg img { object-position: 50% 70%; }
  .hero-shade { inset: 0 0 auto 0; height: clamp(230px, 64vw, 540px);
    background: linear-gradient(180deg, rgba(11,11,12,.3) 0%, rgba(11,11,12,0) 28%, rgba(11,11,12,0) 60%, rgba(11,11,12,1) 100%); }
  .hero-top .wrap { margin-top: -26px; position: relative; }
  .hero-bar { margin-top: 30px; }
}
/* desktop: full-bleed photo with the cars on the right, booking bar underneath */
@media (min-width: 1000px) {
  .hero-top { height: clamp(560px, calc(100vh - 230px), 760px); display: flex; align-items: center; }
  .hero-top .wrap { width: 100%; padding-bottom: 40px; }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(11,11,12,.95) 0%, rgba(11,11,12,.86) 34%, rgba(11,11,12,.5) 50%, rgba(11,11,12,0) 68%),
      linear-gradient(0deg, rgba(11,11,12,1) 0%, rgba(11,11,12,0) 16%),
      linear-gradient(180deg, rgba(11,11,12,.6) 0%, rgba(11,11,12,0) 14%);
  }
  .hero-copy { max-width: 620px; }
  .hero h1 { font-size: clamp(3rem, 5.4vw, 5.2rem); }
  .hero-bar { margin-top: -58px; position: relative; z-index: 2; }
  .hero .widget { display: grid; grid-template-columns: 1.25fr .8fr 1.25fr .8fr minmax(180px, 1fr) auto; column-gap: 12px; align-items: end; padding: 20px 22px 16px; }
  .hero .widget-head { grid-column: 1 / -1; margin-bottom: 14px; }
  .hero .widget .row { display: contents; }
  .hero .widget .total { margin: 0 0 0 10px; padding: 0 0 3px; border: 0; display: block; }
  .hero .widget .total .big { font-size: 2rem; margin-top: 2px; }
  .hero .widget .tier-badge { display: none; }
  .hero .widget .btn.wide { width: auto; padding: 16px 28px; min-height: 52px; }
  .hero .widget .field input, .hero .widget .field select { height: 52px; min-height: 52px; }
  .hero .widget .fine { grid-column: 1 / -1; text-align: left; margin-top: 12px; }
}
h1 { font-size: clamp(2.7rem, 7vw, 6rem); margin: 0 0 22px; }
h1 .price { white-space: nowrap; }
h1 .unit { font-size: .45em; font-weight: 700; color: var(--fg-3); letter-spacing: 0; margin-left: .1em; }
.hero .lead { margin-bottom: 26px; color: rgba(255,255,255,.82); }

.usp-inline { display: flex; flex-wrap: wrap; gap: 8px 18px; color: var(--fg-2); font-weight: 500; font-size: .95rem; }
.usp-inline li { display: inline-flex; align-items: center; gap: 8px; }
.usp-inline li::before { content: ""; width: 14px; height: 3px; border-radius: 2px; background: var(--fg); opacity: .9; }
.usp-inline b { color: var(--fg); font-weight: 700; }

/* animated speed lines in the hero background */
.lines { position: absolute; inset: 0; pointer-events: none; }
.lines svg { width: 100%; height: 100%; fill: #FFFFFF; opacity: .05; }
.lines g { animation: sweep 9s var(--ease) infinite; transform-origin: left center; }
.lines .l2 { animation-delay: .35s; }
.lines .l3 { animation-delay: .7s; }
@keyframes sweep {
  0%   { transform: translateX(-60%); opacity: 0; }
  15%  { opacity: 1; }
  60%  { transform: translateX(45%); opacity: 1; }
  100% { transform: translateX(110%); opacity: 0; }
}

/* ---------- Widget ---------- */
.widget {
  background: rgba(20, 20, 23, .86); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(18px, 3vw, 28px);
  box-shadow: 0 30px 80px -40px rgba(0, 0, 0, .9);
}
.widget-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 10px 12px; margin-bottom: 18px; }
.widget-head strong { font-size: 1.15rem; font-weight: 700; }
.chip { font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--fg-3); border: 1px solid var(--line); border-radius: 999px; padding: 6px 10px; white-space: nowrap; }
.row { display: grid; grid-template-columns: 1.6fr 1fr; gap: 10px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--fg-3); }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg-3); border: 1px solid var(--line); color: var(--fg);
  border-radius: 12px; padding: 13px 12px; font: inherit; font-size: 1rem; color-scheme: dark; min-height: 50px;
  transition: border-color .2s, box-shadow .2s; -webkit-appearance: none; appearance: none;
}
.field select {
  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='%23fff' stroke-opacity='.6' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px;
}
.field textarea { resize: vertical; min-height: 90px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: rgba(255, 255, 255, .55); box-shadow: 0 0 0 3px rgba(255,255,255,.08); }
.field.has-err input, .field.has-err textarea { border-color: #ff6b6b; }
.total { display: flex; justify-content: space-between; align-items: flex-end; gap: 12px; margin: 20px 0 16px; padding-top: 18px; border-top: 1px solid var(--line); }
.total .big { font-size: clamp(2rem, 4vw, 2.6rem); font-weight: 900; letter-spacing: -.03em; line-height: 1; margin-top: 4px; transition: transform .2s var(--ease); }
.total .big.bump { transform: scale(1.06); }
.tier-badge { font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; background: var(--fg); color: #0B0B0C; border-radius: 999px; padding: 8px 12px; white-space: nowrap; }
.fine { margin-top: 12px; font-size: .82rem; color: var(--fg-3); text-align: center; }

/* ---------- Tiers ---------- */
.tiers { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 700px) { .tiers { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .tiers { grid-template-columns: repeat(5, 1fr); gap: 14px; } }
.tier {
  position: relative; display: flex; flex-direction: column; gap: 6px;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r);
  padding: 22px 20px 20px; min-height: 160px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .2s;
}
.tier:hover { transform: translateY(-4px); }
.tier.active { border-color: var(--fg); box-shadow: 0 0 0 2px var(--fg) inset; }
.tier .t-label { font-weight: 700; font-size: 1.05rem; color: var(--fg-2); }
.tier .t-label em { font-style: normal; font-weight: 500; }
.tier .t-price { font-size: clamp(2.6rem, 4vw, 3.4rem); font-weight: 900; letter-spacing: -.04em; line-height: 1; margin-top: auto; }
.tier .t-unit { font-size: .85rem; color: var(--fg-3); font-weight: 600; }
.tier.best { background: #0B0B0C; color: #FFFFFF; border-color: #0B0B0C; --fg-2: rgba(255,255,255,.72); --fg-3: rgba(255,255,255,.55); padding-top: 46px; }
.tier.best.active { box-shadow: 0 0 0 2px #FFFFFF inset; }
.tier .t-flag { position: absolute; top: 12px; right: 12px; font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; background: #FFFFFF; color: #0B0B0C; border-radius: 999px; padding: 5px 9px; }
@media (max-width: 699px) { .tier.best { grid-column: 1 / -1; } }
.notes { margin-top: 28px; display: grid; gap: 12px 28px; color: var(--fg-2); font-size: .98rem; }
@media (min-width: 800px) { .notes { grid-template-columns: 1fr 1fr; } }
.notes li { padding-left: 24px; position: relative; }
.notes li::before { content: ""; position: absolute; left: 0; top: .6em; width: 14px; height: 3px; border-radius: 2px; background: var(--fg); }
.notes b { color: var(--fg); }

/* ---------- Steps ---------- */
.steps { display: grid; gap: 18px; counter-reset: step; }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.steps li { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 26px 30px; transition: transform .3s var(--ease); }
.steps li:hover { transform: translateY(-4px); }
.steps .num { display: block; font-size: 3rem; font-weight: 900; letter-spacing: -.04em; line-height: 1; color: var(--fg); opacity: .18; margin-bottom: 26px; }
.steps h3 { margin-bottom: 10px; }
.steps p { color: var(--fg-2); }

/* ---------- Car ---------- */
.car-grid { display: grid; gap: 36px; align-items: center; }
@media (min-width: 1000px) { .car-grid { grid-template-columns: 1.1fr .9fr; gap: 64px; } }
.placeholder {
  aspect-ratio: 4 / 3; border-radius: var(--r-lg); border: 1px dashed rgba(255, 255, 255, .25);
  background:
    radial-gradient(120% 80% at 30% 20%, rgba(255, 255, 255, .08), transparent 60%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .035) 0 2px, transparent 2px 14px),
    var(--bg-2);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  color: var(--fg-3); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; font-size: .8rem; text-align: center; padding: 20px;
}
.placeholder img { opacity: .9; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 28px; }
.chips li { border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px; font-weight: 600; font-size: .92rem; color: var(--fg-2); }

/* ---------- FAQ ---------- */
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 44px 20px 0; font-weight: 700; font-size: 1.1rem; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 14px; height: 14px; transform: translateY(-50%);
  background:
    linear-gradient(var(--fg), var(--fg)) center / 14px 2px no-repeat,
    linear-gradient(var(--fg), var(--fg)) center / 2px 14px no-repeat;
  transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq p { padding: 0 0 22px; color: var(--fg-2); max-width: 62ch; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: 32px; }
@media (min-width: 1000px) { .contact-grid { grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center; } }
.contact-cards { display: grid; gap: 12px; }
@media (min-width: 600px) { .contact-cards { grid-template-columns: 1fr 1fr; } }
.ccard {
  display: flex; flex-direction: column; gap: 6px; text-decoration: none;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r); padding: 22px 22px;
  transition: transform .3s var(--ease), border-color .2s;
}
a.ccard:hover { transform: translateY(-3px); border-color: rgba(255, 255, 255, .4); }
.ck { font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--fg-3); }
.cv { font-weight: 700; font-size: 1.15rem; letter-spacing: -.01em; word-break: break-word; }

/* ---------- Car gallery ---------- */
.gal-main { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); background: var(--bg-2); aspect-ratio: 16 / 10; }
.gal-slide { position: absolute; inset: 0; margin: 0; opacity: 0; transition: opacity .45s var(--ease); pointer-events: none; }
.gal-slide.on { opacity: 1; pointer-events: auto; }
.gal-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gal-slide figcaption { position: absolute; left: 14px; bottom: 14px; background: rgba(11,11,12,.72); color: #fff; font-weight: 700; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; padding: 7px 12px; border-radius: 999px; backdrop-filter: blur(6px); }
.gal-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; border: 0; background: rgba(11,11,12,.6); color: #fff; font-size: 1.6rem; line-height: 1; cursor: pointer; display: grid; place-items: center; padding-bottom: 3px; backdrop-filter: blur(6px); transition: background .2s; }
.gal-nav:hover { background: rgba(11,11,12,.85); }
.gal-nav.prev { left: 12px; } .gal-nav.next { right: 12px; }
.gal-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-top: 10px; }
.gal-thumb { position: relative; padding: 0; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: var(--bg-2); cursor: pointer; aspect-ratio: 16 / 10; opacity: .6; transition: opacity .2s, border-color .2s; }
.gal-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gal-thumb span { position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 6px 5px; font-size: .68rem; font-weight: 700; color: #fff; text-align: center; background: linear-gradient(0deg, rgba(11,11,12,.8), rgba(11,11,12,0)); }
.gal-thumb.on, .gal-thumb:hover { opacity: 1; border-color: rgba(255,255,255,.7); }
.gal-note { margin-top: 10px; font-size: .74rem; line-height: 1.5; color: var(--fg-3); }
.gal-note a { color: inherit; }
@media (max-width: 599px) { .gal-thumb span { display: none; } .gal-nav { width: 38px; height: 38px; } }

/* ---------- Landing pages (airport / long-term / automatic) ---------- */
.lp-hero { position: relative; isolation: isolate; overflow: hidden; padding: 0 0 clamp(48px, 6vw, 80px); }
.lp-hero-bg { position: relative; height: clamp(220px, 62vw, 460px); z-index: -1; }
.lp-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 62%; animation: kenburns 16s var(--ease) both; }
.lp-hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,11,12,.35) 0%, rgba(11,11,12,0) 30%, rgba(11,11,12,0) 55%, var(--bg) 100%); }
.lp-copy { position: relative; margin-top: -30px; animation: rise .9s var(--ease) both .1s; }
.lp-hero h1 { font-size: clamp(2.3rem, 5.2vw, 4.4rem); margin-bottom: 18px; }
.lp-hero .lead { margin-bottom: 26px; max-width: 48ch; }
.lp-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
@media (min-width: 1000px) {
  .lp-hero { padding: 0; min-height: clamp(540px, calc(100vh - 76px), 720px); display: flex; align-items: center; }
  .lp-hero-bg { position: absolute; top: 0; right: 0; bottom: 0; width: 60%; height: auto; }
  .lp-hero-bg::after { background: linear-gradient(90deg, var(--bg) 0%, rgba(11,11,12,.7) 22%, rgba(11,11,12,0) 55%), linear-gradient(0deg, var(--bg) 0%, rgba(11,11,12,0) 18%); }
  .lp-hero > .wrap { width: 100%; }
  .lp-copy { margin-top: 0; max-width: 620px; padding: 60px 0; }
}
.lp-blocks { padding-top: clamp(24px, 4vw, 48px); }
.lp-grid { display: grid; gap: 18px; }
@media (min-width: 800px) { .lp-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.lp-block { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 26px 30px; transition: transform .3s var(--ease); }
.lp-block:hover { transform: translateY(-4px); }
.lp-block .num { display: block; font-size: 3rem; font-weight: 900; letter-spacing: -.04em; line-height: 1; opacity: .18; margin-bottom: 22px; }
.lp-block h2 { font-size: clamp(1.35rem, 2vw, 1.6rem); margin-bottom: 12px; line-height: 1.12; }
.lp-block p { color: var(--fg-2); }
.lp-grid .lp-block.reveal:nth-child(2) { transition-delay: .12s; }
.lp-grid .lp-block.reveal:nth-child(3) { transition-delay: .24s; }
.lp-final { padding-top: 0; }
.lp-final-box { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(32px, 6vw, 64px) clamp(22px, 5vw, 56px); text-align: center; }
.lp-final-box h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); margin-bottom: 16px; }
.lp-final-box .lead { margin: 0 auto 28px; }
.ftr-seo a { color: var(--fg); font-weight: 600; }

/* ---------- Footer ---------- */
.ftr { border-top: 1px solid var(--line); padding: 40px 0 36px; color: var(--fg-3); font-size: .9rem; }
.ftr-top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.ftr-logo { height: 84px; width: auto; }
.ftr-links { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.ftr-links a { color: var(--fg-2); text-decoration: none; }
.ftr-links a:hover { color: var(--fg); }
.legal { line-height: 1.7; }

/* ---------- Mobile sticky bar ---------- */
.stick {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  display: flex; align-items: center; gap: 10px;
  padding: 10px var(--pad) calc(10px + env(safe-area-inset-bottom));
  background: rgba(11, 11, 12, .82); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.stick .btn { flex: 1; }
.stick .btn.icon { flex: none; }
.stick-price { display: flex; flex-direction: column; line-height: 1.1; min-width: 88px; }
.stick-price .muted { font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; }
.stick-price b { font-size: 1.15rem; font-weight: 900; letter-spacing: -.02em; }
@media (min-width: 900px) { .stick { display: none; } }

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 100px; transform: translate(-50%, 20px); z-index: 60;
  background: #FFFFFF; color: #0B0B0C; font-weight: 600; padding: 14px 18px; border-radius: 14px;
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, .8); opacity: 0; pointer-events: none; transition: all .35s var(--ease);
  max-width: min(92vw, 420px); text-align: center;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
@media (min-width: 900px) { .toast { bottom: 32px; } }

/* ---------- Reveal on scroll ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.steps li.reveal:nth-child(2) { transition-delay: .12s; }
.steps li.reveal:nth-child(3) { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   v2 — photo car section, notices, booking page, calendar, confirmation, legal
   ========================================================================== */
.car-media > img { width: 100%; height: auto; border-radius: var(--r-lg); border: 1px solid var(--line); aspect-ratio: 1200 / 825; object-fit: cover; }

.notice { margin-top: 18px; padding: 14px 16px; border-radius: 14px; background: var(--bg-2); border: 1px solid var(--line); color: var(--fg-2); font-size: .95rem; }
.notice.warn { border-color: rgba(255, 196, 0, .45); background: rgba(255, 196, 0, .08); color: var(--fg); }
.notice.ok { border-color: rgba(80, 220, 140, .45); background: rgba(80, 220, 140, .08); color: var(--fg); }
.notice a { color: inherit; }

/* ---------- Booking ---------- */
.book { padding: clamp(28px, 5vw, 64px) 0 clamp(64px, 8vw, 110px); }
.book-head { max-width: 760px; margin-bottom: clamp(24px, 4vw, 40px); }
.book-head h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); margin: 0 0 14px; }
.book-grid { display: grid; gap: 22px; align-items: start; }
@media (min-width: 1000px) { .book-grid { grid-template-columns: minmax(0, 1fr) 380px; gap: 32px; } }
.book-main { display: grid; gap: 18px; min-width: 0; }
.card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(18px, 3vw, 28px); min-width: 0; }
.card-title { display: flex; align-items: center; gap: 12px; font-size: 1.3rem; font-weight: 800; letter-spacing: -.01em; margin: 0 0 18px; }
.card-title .n { width: 30px; height: 30px; border-radius: 50%; background: var(--fg); color: #0B0B0C; display: grid; place-items: center; font-size: .9rem; font-weight: 800; flex: none; }
.card-sub { color: var(--fg-3); margin: -8px 0 16px; font-size: .95rem; }

.cal-top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.cal-titles { flex: 1; display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 28px; }
.cal-title { text-align: center; font-weight: 800; font-size: 1.05rem; letter-spacing: -.01em; }
.cal-title-in { display: none; }
.cal-arrow { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: var(--bg-3); color: var(--fg); display: grid; place-items: center; cursor: pointer; transition: background .2s, opacity .2s; flex: none; }
.cal-arrow:hover:not(:disabled) { background: rgba(255,255,255,.12); }
.cal-arrow:disabled { opacity: .3; cursor: default; }
.cal-months { display: grid; gap: 28px; min-height: 300px; }
@media (min-width: 900px) { .cal-months { grid-template-columns: 1fr 1fr; } }
.cal-loading { color: var(--fg-3); display: grid; place-items: center; min-height: 280px; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-wd { text-align: center; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--fg-3); padding: 6px 0 8px; }
.cal-day {
  position: relative; aspect-ratio: 1 / 1; min-height: 40px; border: 0; border-radius: 12px; cursor: pointer;
  background: var(--bg-3); color: var(--fg); font: inherit; font-weight: 700; font-size: .98rem;
  display: grid; place-items: center; transition: background .15s, transform .15s, color .15s;
}
.cal-day span { position: relative; z-index: 1; }
@media (hover: hover) { .cal-day:hover:not(:disabled) { background: rgba(255,255,255,.16); transform: translateY(-1px); } }
.cal-day:focus-visible { outline: 2px solid var(--fg); outline-offset: 2px; }
.cal-day.s-few::after { content: ""; position: absolute; bottom: 7px; left: 50%; width: 5px; height: 5px; margin-left: -2.5px; border-radius: 50%; background: #FFC400; }
.cal-day.s-partial { background: repeating-linear-gradient(135deg, var(--bg-3) 0 6px, rgba(255,255,255,.06) 6px 12px); }
.cal-day.s-full { background: transparent; color: var(--fg-3); cursor: not-allowed; text-decoration: line-through; opacity: .55; }
.cal-day.s-past, .cal-day.s-closed { background: transparent; color: var(--fg-3); opacity: .35; cursor: default; }
.cal-day.in-range, .cal-day.preview { background: rgba(255,255,255,.2); border-radius: 6px; }
.cal-day.preview { background: rgba(255,255,255,.1); }
.cal-day.sel-start, .cal-day.sel-end, .cal-day.sel-start:hover, .cal-day.sel-end:hover { background: #FFFFFF !important; color: #0B0B0C; transform: none; }
.cal-day.preview-end { color: #0B0B0C; }
.cal-day.preview-end { background: rgba(255,255,255,.55); }
.cal-day.sel-start.s-few::after, .cal-day.sel-end.s-few::after { background: #0B0B0C; }
.cal-legend { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 16px 0 4px; color: var(--fg-3); font-size: .85rem; }
.cal-legend li { display: inline-flex; align-items: center; gap: 8px; }
.lg { width: 16px; height: 16px; border-radius: 5px; background: var(--bg-3); display: inline-block; position: relative; border: 1px solid var(--line); }
.lg.few::after { content: ""; position: absolute; left: 5px; top: 5px; width: 5px; height: 5px; border-radius: 50%; background: #FFC400; }
.lg.partial { background: repeating-linear-gradient(135deg, var(--bg-3) 0 3px, rgba(255,255,255,.18) 3px 6px); }
.lg.full { background: transparent; }
.lg.full::after { content: ""; position: absolute; left: 2px; right: 2px; top: 7px; height: 1.5px; background: var(--fg-3); }
.times { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.times .field { gap: 8px; }
.card .times .field + .field { margin-top: 0; }
.picked { font-weight: 700; font-size: 1.05rem; color: var(--fg-3); }
.picked.set { color: var(--fg); }
.hint { margin-top: 12px; color: var(--fg-3); font-size: .9rem; min-height: 1.4em; }

.seg { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.seg label { position: relative; cursor: pointer; }
.seg input { position: absolute; opacity: 0; pointer-events: none; }
.seg span { display: inline-flex; padding: 11px 16px; border-radius: 999px; border: 1px solid var(--line); color: var(--fg-2); font-weight: 600; transition: all .2s; }
.seg input:checked + span { background: var(--fg); color: #0B0B0C; border-color: var(--fg); }
.seg input:focus-visible + span { outline: 2px solid var(--fg); outline-offset: 2px; }
.card .field + .field, .card .field + .check, .return-block { margin-top: 14px; }
.check { display: flex; gap: 12px; align-items: flex-start; margin-top: 16px; cursor: pointer; color: var(--fg-2); font-size: .98rem; line-height: 1.45; }
.check input { width: 20px; height: 20px; margin: 1px 0 0; accent-color: #FFFFFF; flex: none; }
.check a { color: var(--fg); }
.check.has-err span { color: #ff8f8f; }
.grid2 { display: grid; gap: 14px; }
@media (min-width: 640px) { .grid2 { grid-template-columns: 1fr 1fr; } .grid2 .span2 { grid-column: 1 / -1; } }
.grid2 .field + .field { margin-top: 0; }
.ferr { color: #ff8f8f; font-size: .85rem; min-height: 0; }
.ferr:empty { display: none; }
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.book-sum { position: relative; }
@media (min-width: 1000px) { .book-sum { position: sticky; top: 96px; } }
.sum-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 20px; box-shadow: 0 30px 80px -50px rgba(0,0,0,.9); }
.sum-car { display: flex; gap: 14px; align-items: center; margin-bottom: 16px; }
.sum-car img { width: 104px; height: 72px; object-fit: cover; border-radius: 12px; flex: none; }
.sum-car strong { display: block; font-size: 1.1rem; }
.sum-car span { color: var(--fg-3); font-size: .88rem; }
.sum-rows { margin: 0; padding: 14px 0; border-top: 1px solid var(--line); display: grid; gap: 10px; }
.sum-rows div { display: flex; justify-content: space-between; gap: 16px; }
.sum-rows dt { color: var(--fg-3); font-size: .92rem; }
.sum-rows dd { margin: 0; font-weight: 600; text-align: right; font-size: .95rem; }
.sum-total { display: flex; justify-content: space-between; align-items: baseline; padding: 14px 0 6px; border-top: 1px solid var(--line); }
.sum-total span { font-weight: 700; }
.sum-total strong { font-size: 2rem; font-weight: 900; letter-spacing: -.03em; transition: transform .2s var(--ease); }
.sum-total.ready strong { animation: pop .35s var(--ease); }
@keyframes pop { 50% { transform: scale(1.06); } }
.sum-note { color: var(--fg-3); font-size: .85rem; margin-bottom: 12px; }
.sum-incl { display: grid; gap: 6px; margin-bottom: 16px; color: var(--fg-2); font-size: .9rem; }
.sum-incl li { padding-left: 22px; position: relative; }
.sum-incl li::before { content: ""; position: absolute; left: 2px; top: .5em; width: 10px; height: 5px; border-left: 2px solid var(--fg); border-bottom: 2px solid var(--fg); transform: rotate(-45deg); }
.sum-msg { margin-bottom: 12px; padding: 12px 14px; border-radius: 12px; background: rgba(255, 107, 107, .1); border: 1px solid rgba(255, 107, 107, .4); font-size: .92rem; }
.sum-secure { display: flex; gap: 8px; align-items: flex-start; margin-top: 12px; color: var(--fg-3); font-size: .8rem; line-height: 1.4; }
.sum-secure svg { flex: none; margin-top: 1px; }
.btn:disabled { opacity: .35; cursor: not-allowed; transform: none; box-shadow: none; }
.btn.loading { color: transparent; }
.btn.loading::before { content: ""; position: absolute; width: 20px; height: 20px; border-radius: 50%; border: 2.5px solid rgba(0,0,0,.25); border-top-color: #0B0B0C; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.book-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; display: flex; align-items: center; gap: 12px;
  padding: 10px var(--pad) calc(10px + env(safe-area-inset-bottom));
  background: rgba(11, 11, 12, .9); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-top: 1px solid rgba(255, 255, 255, .1);
}
.book-bar .bb-price { flex: 1; display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.book-bar .bb-price .muted { font-size: .78rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.book-bar b { font-size: 1.35rem; font-weight: 900; letter-spacing: -.02em; }
.book-bar .btn { min-width: 132px; }
body.booking { padding-bottom: 84px; }
@media (min-width: 1000px) { .book-bar { display: none; } body.booking { padding-bottom: 0; } }
@media (max-width: 999px) { .book-sum .btn.wide { display: none; } }

/* ---------- Confirmation ---------- */
.confirm-sec, .legal-page { padding: clamp(40px, 7vw, 96px) 0 clamp(64px, 8vw, 110px); }
.confirm-sec h1, .legal-page h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin: 0 0 14px; }
.cf-icon { width: 76px; height: 76px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 24px; font-size: 2.2rem; font-weight: 900; }
.cf-icon.ok { background: #FFFFFF; color: #0B0B0C; animation: pop .5s var(--ease); }
.cf-icon.wait { border: 1px solid var(--line); }
.cf-icon.warn { background: rgba(255,196,0,.14); color: #FFC400; border: 1px solid rgba(255,196,0,.4); }
.spinner { width: 34px; height: 34px; border-radius: 50%; border: 3px solid rgba(255,255,255,.2); border-top-color: #FFFFFF; animation: spin .9s linear infinite; }
.cf-card { margin-top: 32px; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 8px 22px 16px; }
.cf-card .sum-rows { border-top: 0; }
.cf-next { margin-top: 36px; }
.cf-next h2 { font-size: 1.5rem; margin-bottom: 14px; }
.cf-next ol { list-style: decimal; padding-left: 22px; display: grid; gap: 10px; color: var(--fg-2); }
.cf-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.confirm-sec .btn { margin-top: 8px; }

/* ---------- Legal ---------- */
.prose { margin-top: 28px; color: var(--fg-2); line-height: 1.7; font-size: 1.02rem; }
.prose h2 { font-size: 1.35rem; color: var(--fg); margin: 38px 0 12px; letter-spacing: -.01em; line-height: 1.25; }
.prose h3 { font-size: 1.08rem; color: var(--fg); margin: 22px 0 8px; letter-spacing: 0; line-height: 1.3; }
.prose p, .prose ul, .prose ol, .prose table { margin: 0 0 14px; }
.prose ul { list-style: disc; padding-left: 1.3em; }
.prose ol { list-style: decimal; padding-left: 1.4em; }
.prose li { margin: 5px 0; }
.prose li::marker { color: var(--fg-3); }
.prose ul ul { margin: 6px 0 0; list-style: circle; }
.prose strong { color: var(--fg); }
.prose table { width: 100%; border-collapse: collapse; font-size: .94rem; display: block; overflow-x: auto; }
.prose th, .prose td { text-align: left; vertical-align: top; padding: 10px 12px; border-bottom: 1px solid var(--line); }
.prose th { color: var(--fg); font-weight: 700; }
.prose a, .faq a { color: var(--fg); }

/* ---------- Perks (why BlackRent) ---------- */
.perks { padding-top: clamp(56px, 8vw, 104px); }
.perk-grid { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }
@media (min-width: 1000px) { .perk-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
.perk {
  position: relative; overflow: hidden; isolation: isolate;
  background: linear-gradient(180deg, #17171a 0%, #111113 100%);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(18px, 2.4vw, 30px);
  transition: transform .45s var(--ease), border-color .3s, opacity .7s var(--ease);
}
.perk::before {
  content: ""; position: absolute; z-index: -1; width: 260px; height: 260px; right: -110px; top: -120px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255,255,255,.10), rgba(255,255,255,0)); transition: transform .6s var(--ease), opacity .4s; opacity: .6;
}
.perk::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 3px; width: 100%; background: #FFFFFF;
  transform: scaleX(0); transform-origin: left; transition: transform .6s var(--ease);
}
@media (hover: hover) {
  .perk:hover { transform: translateY(-6px); border-color: rgba(255,255,255,.28); }
  .perk:hover::before { transform: scale(1.35); opacity: 1; }
  .perk:hover::after { transform: scaleX(1); }
  .perk:hover .perk-ico { transform: translateY(-2px) rotate(-6deg); }
}
.perk-ico { display: block; width: clamp(34px, 3.4vw, 42px); height: auto; color: #FFFFFF; margin-bottom: clamp(16px, 2.2vw, 26px); transition: transform .45s var(--ease); }
.js .perk-ico * { stroke-dasharray: 150; stroke-dashoffset: 150; }
.js .perk.in .perk-ico * { animation: draw 1.6s var(--ease) forwards; animation-delay: var(--d, .2s); }
@keyframes draw { to { stroke-dashoffset: 0; } }
.perk-stat { font-size: clamp(1.9rem, 3.6vw, 3.1rem); font-weight: 900; letter-spacing: -.045em; line-height: 1; margin-bottom: 12px; white-space: nowrap; }
.perk h3 { font-size: clamp(1rem, 1.4vw, 1.2rem); margin-bottom: 8px; letter-spacing: -.01em; }
.perk-desc { color: var(--fg-2); font-size: clamp(.86rem, 1vw, .96rem); line-height: 1.5; }
.perk:nth-child(1) { --d: .15s; } .perk:nth-child(2) { --d: .25s; transition-delay: .06s; } .perk:nth-child(3) { --d: .35s; transition-delay: .12s; }
.perk:nth-child(4) { --d: .45s; transition-delay: .18s; } .perk:nth-child(5) { --d: .55s; transition-delay: .24s; } .perk:nth-child(6) { --d: .65s; transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) { .perk-ico * { stroke-dashoffset: 0; } }

.cancel-note { margin-top: 14px; color: var(--fg-3); font-size: .82rem; line-height: 1.5; }
.cancel-note a { color: var(--fg-2); }
.cf-cancel { margin-top: 18px; color: var(--fg-3); font-size: .95rem; }
