/* ============================================================
   EASY CAR DIRECT AUTO INVENTORY - styles.css
   P2L Digital Studio · Redesign "Showroom Cinemático"
   ============================================================ */

/* ---- Tokens ---------------------------------------------- */
:root {
  --black:    #08090B;
  --carbon:   #0E0F12;
  --graphite: #15171C;
  --graphite2:#1D2026;
  --line:     #2A2E36;
  --gold:     #D6A84F;
  --gold-light:#F0D28A;
  --gold-deep:#A8822F;
  --white:    #F7F8FA;
  --silver:   #AEB7C2;
  --muted:    #7E8794;
  --wa:       #F17B3A;
  --wa-dark:  #BD4E1B;

  --ff-display: 'Rajdhani', 'Saira Condensed', system-ui, sans-serif;
  --ff-body:    'Montserrat', system-ui, -apple-system, sans-serif;

  --maxw: 1320px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --gold-grad: linear-gradient(135deg, #F0D28A 0%, #D6A84F 45%, #A8822F 100%);
  --gold-text: linear-gradient(180deg, #FBE7BF 0%, #E7C16E 40%, #C79A3F 100%);
}

/* ---- Reset ----------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  font-family: var(--ff-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ---- Film grain (fixed, perf-safe) ----------------------- */
.grain {
  position: fixed; inset: 0; z-index: 90; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ---- Typography helpers ---------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold);
}
.eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--gold); opacity: 0.7; }

.section-title {
  font-family: var(--ff-display); font-weight: 700; line-height: 0.98;
  font-size: clamp(2.4rem, 6vw, 4.6rem); letter-spacing: -0.01em; text-transform: uppercase;
}
.section-title em { font-style: italic; color: transparent; background: var(--gold-text); -webkit-background-clip: text; background-clip: text; }
.section-lead { color: var(--silver); font-size: clamp(1rem, 1.4vw, 1.12rem); max-width: 56ch; margin-top: 18px; }

/* ---- Buttons --------------------------------------------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; font-family: var(--ff-display); font-weight: 600; font-size: 1.05rem;
  letter-spacing: 0.04em; text-transform: uppercase; padding: 16px 30px; border-radius: 999px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.3s; will-change: transform;
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn:active { transform: scale(0.97) translateY(1px); }

.btn--wa { background: var(--wa); color: #04231a; box-shadow: 0 10px 30px -8px rgba(37,211,102,0.6); }
.btn--wa:hover { box-shadow: 0 16px 40px -8px rgba(37,211,102,0.75); transform: translateY(-2px); }

.btn--gold { background: var(--gold-grad); color: #1a1206; box-shadow: 0 10px 30px -10px rgba(214,168,79,0.7); }
.btn--gold:hover { box-shadow: 0 16px 44px -10px rgba(214,168,79,0.85); transform: translateY(-2px); }

.btn--ghost { background: rgba(255,255,255,0.04); color: var(--white); border: 1px solid rgba(255,255,255,0.16); backdrop-filter: blur(10px); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 18px; left: 50%; transform: translateX(-50%);
  z-index: 100; width: calc(100% - 40px); max-width: var(--maxw);
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px 12px 22px; border-radius: 999px;
  background: rgba(14,15,18,0.55); border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%);
  transition: padding 0.4s var(--ease), background 0.4s, box-shadow 0.4s, top 0.4s var(--ease);
}
.nav.scrolled { top: 10px; background: rgba(10,11,13,0.82); box-shadow: 0 14px 40px -16px rgba(0,0,0,0.8); }

.nav__logo { display: flex; align-items: center; gap: 12px; }
.nav__logo-svg { width: 38px; height: 38px; flex: none; }
.nav__logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav__logo-name { font-family: var(--ff-display); font-weight: 700; font-size: 1.25rem; letter-spacing: 0.06em; }
.nav__logo-name b { color: var(--gold); font-weight: 700; }
.nav__logo-tag { font-size: 8.5px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--silver); margin-top: 2px; }

.nav__links { display: flex; gap: 30px; }
.nav__links a { position: relative; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em; color: var(--silver); transition: color 0.3s; }
.nav__links a::after { content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 1.5px; background: var(--gold); transition: width 0.35s var(--ease); }
.nav__links a:hover { color: var(--white); } .nav__links a:hover::after { width: 100%; }

.nav__right { display: flex; align-items: center; gap: 16px; }
.nav__lang { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; font-weight: 600; color: var(--muted); }
.nav__lang a.active { color: var(--gold); } .nav__lang a:hover { color: var(--white); }
.nav__lang-sep { opacity: 0.4; }

.nav__wa-btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 999px;
  background: var(--wa); color: #04231a; font-weight: 600; font-size: 0.82rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s; box-shadow: 0 6px 18px -6px rgba(37,211,102,0.6);
}
.nav__wa-btn svg { width: 17px; height: 17px; }
.nav__wa-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -6px rgba(37,211,102,0.8); }

.nav__hamburger { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 50%; }
.nav__hamburger span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.35s var(--ease); }
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  position: fixed; inset: 0; z-index: 99; display: flex; flex-direction: column;
  justify-content: center; gap: 8px; padding: 0 40px;
  background: rgba(8,9,11,0.97); backdrop-filter: blur(20px);
  opacity: 0; visibility: hidden; transform: translateY(-12px); transition: 0.4s var(--ease);
}
.nav__mobile.open { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__mobile a { font-family: var(--ff-display); font-size: 2rem; font-weight: 600; text-transform: uppercase; color: var(--white); padding: 10px 0; border-bottom: 1px solid var(--line); }
.nav__mobile a.nav__wa-btn { justify-content: center; font-size: 1.1rem; border: none; margin-top: 24px; padding: 18px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100dvh; display: flex; align-items: flex-end; overflow: hidden; padding-bottom: clamp(40px, 8vh, 90px); }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 120%; object-fit: cover; object-position: center 38%; will-change: transform; }
.hero__media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,9,11,0.72) 0%, rgba(8,9,11,0.35) 32%, rgba(8,9,11,0.55) 62%, var(--black) 100%),
    linear-gradient(95deg, rgba(8,9,11,0.85) 0%, rgba(8,9,11,0.2) 55%, transparent 100%),
    radial-gradient(120% 80% at 80% 20%, rgba(214,168,79,0.16), transparent 55%);
}
.hero__canvas { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero__inner { position: relative; z-index: 2; width: 100%; }

.hero__eyebrow { margin-bottom: 26px; }
.hero__title {
  font-family: var(--ff-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(3rem, 9vw, 7.2rem); line-height: 0.92; letter-spacing: -0.015em;
  max-width: 16ch; text-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.hero__title .ln { display: block; overflow: hidden; }
.hero__title .ln > span { display: inline-block; }
.hero__title em { font-style: italic; color: transparent; background: var(--gold-text); -webkit-background-clip: text; background-clip: text; padding-right: 0.08em; }
.hero__sub { margin-top: 26px; max-width: 50ch; font-size: clamp(1.02rem, 1.5vw, 1.2rem); color: #D6DBE2; }
.hero__ctas { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 16px; }

/* floating real-car glass card */
.hero__card {
  position: absolute; right: 0; bottom: clamp(40px, 8vh, 90px); z-index: 2;
  display: flex; align-items: center; gap: 16px; padding: 14px 18px; border-radius: var(--r-md);
  background: rgba(20,22,27,0.55); border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(20px); box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 24px 60px -20px rgba(0,0,0,0.8);
  max-width: 320px; transition: transform 0.5s var(--ease);
}
.hero__card:hover { transform: translateY(-4px); }
.hero__card-thumb { width: 86px; height: 64px; border-radius: 10px; object-fit: cover; flex: none; }
.hero__card-meta { display: flex; flex-direction: column; gap: 4px; }
.hero__card-tag { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.hero__card-name { font-family: var(--ff-display); font-weight: 600; font-size: 1.05rem; line-height: 1.1; }
.hero__card-cta { font-size: 0.78rem; color: var(--wa); font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }

.hero__marquee {
  position: absolute; bottom: 0; left: 0; width: 100%; z-index: 2; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.07); background: rgba(8,9,11,0.45); backdrop-filter: blur(6px);
}
.hero__marquee-track { display: flex; gap: 56px; padding: 14px 0; white-space: nowrap; width: max-content; animation: marquee 28s linear infinite; }
.hero__marquee span { font-family: var(--ff-display); font-size: 1rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); display: inline-flex; align-items: center; gap: 56px; }
.hero__marquee span::after { content: '◆'; color: var(--gold); font-size: 0.6rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust { padding: clamp(60px, 9vw, 110px) 0; border-bottom: 1px solid var(--line); }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.trust__item { position: relative; padding: 30px 26px; border-radius: var(--r-md); background: linear-gradient(160deg, var(--graphite), var(--carbon)); border: 1px solid var(--line); overflow: hidden; transition: transform 0.5s var(--ease), border-color 0.4s; }
.trust__item::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: var(--gold-grad); transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease); }
.trust__item:hover { transform: translateY(-6px); border-color: rgba(214,168,79,0.4); }
.trust__item:hover::before { transform: scaleX(1); }
.trust__icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; background: rgba(214,168,79,0.12); color: var(--gold); margin-bottom: 18px; }
.trust__icon svg { width: 24px; height: 24px; }
.trust__item h3 { font-family: var(--ff-display); font-size: 1.35rem; font-weight: 600; margin-bottom: 8px; }
.trust__item p { font-size: 0.9rem; color: var(--silver); }

/* ============================================================
   FEATURED SHOWCASE (horizontal pinned)
   ============================================================ */
.showcase { position: relative; background: var(--black); }
.showcase__head { padding: clamp(70px, 10vw, 130px) 0 40px; }
.showcase__head .section-lead { margin-top: 14px; }
.showcase__pin { position: relative; height: 100dvh; overflow: hidden; }
.showcase__track { display: flex; gap: 30px; height: 100%; align-items: center; padding: 0 28px; width: max-content; }
.showcase__intro { flex: none; width: clamp(260px, 30vw, 420px); }
.showcase__intro h2 { font-family: var(--ff-display); font-size: clamp(2.4rem,5vw,4rem); text-transform: uppercase; line-height: 0.95; }
.showcase__intro h2 em { font-style: italic; color: transparent; background: var(--gold-text); -webkit-background-clip: text; background-clip: text; }

.slide {
  position: relative; flex: none; width: clamp(320px, 46vw, 620px); height: clamp(420px, 72vh, 660px);
  border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line);
  box-shadow: 0 40px 90px -40px rgba(0,0,0,0.9);
}
.slide__img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.slide:hover .slide__img { transform: scale(1.06); }
.slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(8,9,11,0.55) 70%, rgba(8,9,11,0.96) 100%); }
.slide__badge { position: absolute; top: 18px; left: 18px; z-index: 2; display: inline-flex; align-items: center; gap: 7px; padding: 7px 13px; border-radius: 999px; background: rgba(8,9,11,0.6); backdrop-filter: blur(8px); border: 1px solid rgba(214,168,79,0.4); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-light); }
.slide__content { position: absolute; left: 26px; right: 26px; bottom: 24px; z-index: 2; }
.slide__price { font-family: var(--ff-display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; color: var(--gold-light); line-height: 1; }
.slide__name { font-family: var(--ff-display); font-size: clamp(1.3rem,2vw,1.7rem); font-weight: 600; margin-top: 6px; }
.slide__specs { display: flex; flex-wrap: wrap; gap: 8px 16px; margin: 12px 0 16px; font-size: 0.78rem; color: var(--silver); }
.slide__specs span { display: inline-flex; align-items: center; gap: 6px; }
.slide__specs span::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.slide__cta { display: inline-flex; align-items: center; gap: 9px; padding: 13px 22px; border-radius: 999px; background: var(--wa); color: #04231a; font-family: var(--ff-display); font-weight: 600; font-size: 0.95rem; letter-spacing: 0.03em; transition: transform 0.3s var(--ease); }
.slide__cta svg { width: 18px; height: 18px; }
.slide__cta:hover { transform: translateY(-2px); }
.showcase__progress { position: absolute; left: 28px; right: 28px; bottom: 26px; height: 2px; background: rgba(255,255,255,0.1); border-radius: 2px; z-index: 5; }
.showcase__progress-bar { height: 100%; width: 0; background: var(--gold-grad); border-radius: 2px; }
.showcase__hint { position: absolute; right: 28px; bottom: 36px; z-index: 5; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); display: flex; align-items: center; gap: 8px; }

/* ============================================================
   INVENTORY
   ============================================================ */
.inventory { padding: clamp(80px, 11vw, 150px) 0; position: relative; }
.inventory__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 44px; }
.inventory__count { font-family: var(--ff-display); font-size: 0.95rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }

.inventory__controls { display: flex; flex-direction: column; gap: 18px; margin-bottom: 44px; }
.inventory__search-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.inventory__search { position: relative; flex: 1; min-width: 220px; max-width: 480px; }
.inventory__search svg { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; color: var(--muted); }
.inventory__search input { width: 100%; padding: 16px 18px 16px 50px; border-radius: 999px; background: var(--graphite); border: 1px solid var(--line); color: var(--white); font-size: 0.95rem; transition: border-color 0.3s, background 0.3s; }
.inventory__search input::placeholder { color: var(--muted); }
.inventory__search input:focus { border-color: var(--gold); background: var(--graphite2); outline: none; }
.inventory__sort { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.inventory__sort-label { font-size: 0.8rem; font-weight: 600; color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase; white-space: nowrap; }
.inventory__sort select { padding: 12px 36px 12px 16px; border-radius: 999px; background: var(--graphite); border: 1px solid var(--line); color: var(--silver); font-size: 0.85rem; font-weight: 500; cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; transition: border-color 0.3s, background-color 0.3s; }
.inventory__sort select:focus { border-color: var(--gold); outline: none; }
.inventory__sort select:hover { border-color: rgba(214,168,79,0.45); }

.filters { display: flex; flex-wrap: wrap; gap: 10px; }
.filter-btn { padding: 11px 22px; border-radius: 999px; background: var(--graphite); border: 1px solid var(--line); color: var(--silver); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; transition: all 0.3s var(--ease); }
.filter-btn:hover { color: var(--white); border-color: rgba(214,168,79,0.45); }
.filter-btn.active { background: var(--gold-grad); color: #1a1206; border-color: transparent; }

.inventory__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 26px; }

/* ---- Vehicle card (tilt + spotlight) -------------------- */
.vehicle-card {
  position: relative; border-radius: var(--r-md); overflow: hidden;
  background: linear-gradient(165deg, var(--graphite), var(--carbon));
  border: 1px solid var(--line); transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.4s;
  transform-style: preserve-3d; will-change: transform;
}
.vehicle-card::before {
  content: ''; position: absolute; inset: 0; z-index: 4; pointer-events: none; opacity: 0;
  background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 0%), rgba(214,168,79,0.18), transparent 45%);
  transition: opacity 0.4s; border-radius: inherit;
}
.vehicle-card:hover { border-color: rgba(214,168,79,0.45); box-shadow: 0 30px 70px -34px rgba(0,0,0,0.9), 0 0 0 1px rgba(214,168,79,0.1); }
.vehicle-card:hover::before { opacity: 1; }

.vehicle-card__img-wrap { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--carbon); }
.vehicle-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.vehicle-card:hover .vehicle-card__img { transform: scale(1.07); }
.vehicle-card__img-wrap::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(8,9,11,0.35) 0%, transparent 30%, transparent 60%, rgba(8,9,11,0.85) 100%); }

.vehicle-card__placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: #3A4049; background: repeating-linear-gradient(45deg, var(--carbon), var(--carbon) 12px, #101216 12px, #101216 24px); }
.vehicle-card__placeholder svg { width: 80px; height: 40px; }
.vehicle-card__placeholder-text { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

.vehicle-card__status-badge { position: absolute; top: 14px; left: 14px; z-index: 3; padding: 5px 12px; border-radius: 999px; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; backdrop-filter: blur(6px); }
.vehicle-card__status-badge.available { background: rgba(37,211,102,0.16); color: #4ee287; border: 1px solid rgba(37,211,102,0.4); }
.vehicle-card__status-badge.pending { background: rgba(214,168,79,0.16); color: var(--gold-light); border: 1px solid rgba(214,168,79,0.4); }
.vehicle-card__status-badge.sold { background: rgba(255,80,80,0.16); color: #ff8585; border: 1px solid rgba(255,80,80,0.4); }

.vehicle-card__easycar-badge { position: absolute; top: 14px; right: 14px; z-index: 3; display: inline-flex; align-items: center; gap: 6px; padding: 5px 11px; border-radius: 999px; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; background: rgba(8,9,11,0.6); backdrop-filter: blur(6px); color: var(--gold-light); border: 1px solid rgba(214,168,79,0.35); }
.vehicle-card__easycar-badge svg { color: var(--gold); }

.vehicle-card__stock { position: absolute; bottom: 14px; left: 14px; z-index: 3; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.06em; color: var(--silver); }
.vehicle-card__down { position: absolute; bottom: 12px; right: 14px; z-index: 3; padding: 6px 13px; border-radius: 999px; background: var(--gold-grad); color: #1a1206; font-size: 0.72rem; font-weight: 700; }

.vehicle-card__body { padding: 20px 20px 4px; }
.vehicle-card__name { font-family: var(--ff-display); font-size: 1.32rem; font-weight: 600; line-height: 1.1; }
.vehicle-card__trim { font-size: 11px; color: var(--silver); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 6px; }
.vehicle-card__price { font-family: var(--ff-display); font-size: 1.4rem; font-weight: 700; color: var(--gold-light); letter-spacing: 0; text-transform: none; }

.vehicle-card__specs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.vehicle-card__spec { display: flex; flex-direction: column; gap: 2px; }
.vehicle-card__spec-label { font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.vehicle-card__spec-val { font-size: 0.86rem; font-weight: 500; color: var(--white); }

/* --- VENDIDO overlay --- */
.vehicle-card__sold-overlay {
  position: absolute; inset: 0; z-index: 4;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.45);
  pointer-events: none;
}
.vehicle-card__sold-overlay span {
  background: #c0392b; color: #fff;
  font-size: 1.25rem; font-weight: 800; letter-spacing: .12em;
  padding: 8px 22px; border-radius: 6px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.5);
  transform: rotate(-8deg);
  text-transform: uppercase;
}
.vehicle-card--sold { opacity: .82; }
.vehicle-card--sold:hover { opacity: 1; }
/* --- coming-soon overlay (existing pattern) --- */
.vehicle-card__coming-overlay {
  position: absolute; inset: 0; z-index: 4;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.38); pointer-events: none;
}
.vehicle-card__coming-overlay span {
  background: rgba(20,20,20,.85); color: var(--gold,#D6A84F);
  font-size: 1rem; font-weight: 700; letter-spacing: .1em;
  padding: 7px 18px; border-radius: 20px;
  border: 1px solid rgba(214,168,79,.4);
}
.vehicle-card__footer { padding: 18px 20px 22px; }
.vehicle-card__microcopy { font-size: 0.68rem; color: var(--muted); margin-bottom: 12px; }
.vehicle-card__btns { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.vehicle-card__btn-wa { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 16px; border-radius: 12px; background: var(--wa); color: #04231a; font-weight: 700; font-size: 0.86rem; transition: transform 0.3s var(--ease), box-shadow 0.3s; }
.vehicle-card__btn-wa svg { width: 18px; height: 18px; }
.vehicle-card__btn-wa:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -8px rgba(37,211,102,0.7); }
.vehicle-card__btn-apply { display: inline-flex; align-items: center; justify-content: center; padding: 13px 18px; border-radius: 12px; background: rgba(255,255,255,0.05); border: 1px solid var(--line); color: var(--white); font-weight: 600; font-size: 0.84rem; transition: all 0.3s var(--ease); }
.vehicle-card__btn-apply:hover { border-color: var(--gold); color: var(--gold-light); }

.inventory__empty { grid-column: 1/-1; text-align: center; padding: 80px 20px; color: var(--muted); }
.inventory__empty svg { width: 54px; height: 54px; margin: 0 auto 18px; opacity: 0.5; }
.inventory__empty-title { font-family: var(--ff-display); font-size: 1.5rem; color: var(--white); margin-bottom: 6px; }

/* ============================================================
   REQUISITOS (bento)
   ============================================================ */
.reqs { padding: clamp(80px, 11vw, 150px) 0; background: linear-gradient(180deg, var(--black), var(--carbon)); border-top: 1px solid var(--line); }
.reqs__head { margin-bottom: 50px; max-width: 60ch; }
.reqs__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-auto-rows: minmax(150px, auto); gap: 20px; }
.req-cell { position: relative; padding: 30px; border-radius: var(--r-md); background: var(--graphite); border: 1px solid var(--line); overflow: hidden; transition: transform 0.5s var(--ease), border-color 0.4s; }
.req-cell:hover { transform: translateY(-5px); border-color: rgba(214,168,79,0.4); }
.req-cell--feature { grid-row: span 2; background: linear-gradient(160deg, rgba(214,168,79,0.14), var(--graphite) 55%); display: flex; flex-direction: column; justify-content: space-between; }
.req-cell--wide { grid-column: span 2; }
.req-cell__icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 11px; background: rgba(214,168,79,0.12); color: var(--gold); margin-bottom: 16px; }
.req-cell__icon svg { width: 23px; height: 23px; }
.req-cell h3 { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 600; margin-bottom: 10px; line-height: 1.05; }
.req-cell--feature h3 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.req-cell p { font-size: 0.92rem; color: var(--silver); }
.req-cell__list { display: flex; flex-direction: column; gap: 12px; margin-top: 18px; }
.req-cell__list li { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; color: var(--white); }
.req-cell__list svg { width: 20px; height: 20px; color: var(--gold); flex: none; }
.req-disclaimer { margin-top: 26px; font-size: 0.82rem; color: var(--muted); display: flex; align-items: flex-start; gap: 10px; }
.req-disclaimer svg { width: 18px; height: 18px; color: var(--gold); flex: none; margin-top: 2px; }

/* ============================================================
   STEPS (cómo funciona)
   ============================================================ */
.steps { padding: clamp(80px, 11vw, 150px) 0; }
.steps__head { margin-bottom: 56px; }
.steps__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; counter-reset: step; }
.step { position: relative; padding: 32px 22px; border-radius: var(--r-md); background: var(--graphite); border: 1px solid var(--line); transition: transform 0.5s var(--ease), border-color 0.4s; }
.step:hover { transform: translateY(-6px); border-color: rgba(214,168,79,0.4); }
.step__num { counter-increment: step; font-family: var(--ff-display); font-size: 3.4rem; font-weight: 700; line-height: 1; color: transparent; background: var(--gold-text); -webkit-background-clip: text; background-clip: text; opacity: 0.85; }
.step__num::before { content: '0' counter(step); }
.step h3 { font-family: var(--ff-display); font-size: 1.18rem; font-weight: 600; margin: 14px 0 8px; }
.step p { font-size: 0.85rem; color: var(--silver); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { position: relative; padding: clamp(70px, 10vw, 120px) 0; overflow: hidden; background: linear-gradient(120deg, var(--carbon), var(--graphite)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 120% at 80% 50%, rgba(214,168,79,0.18), transparent 60%); pointer-events: none; }
.cta-band__inner { position: relative; z-index: 1; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 30px; }
.cta-band h2 { font-family: var(--ff-display); font-size: clamp(2rem, 4.5vw, 3.6rem); text-transform: uppercase; line-height: 1; max-width: 18ch; }
.cta-band h2 em { font-style: italic; color: transparent; background: var(--gold-text); -webkit-background-clip: text; background-clip: text; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: clamp(80px, 11vw, 150px) 0; }
.faq__head { margin-bottom: 50px; }
.faq__list { max-width: 880px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 0; text-align: left; font-family: var(--ff-display); font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; color: var(--white); transition: color 0.3s; }
.faq-item__q:hover { color: var(--gold-light); }
.faq-item__icon { flex: none; width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line); color: var(--gold); transition: transform 0.4s var(--ease), background 0.3s; }
.faq-item__icon svg { width: 16px; height: 16px; }
.faq-item.open .faq-item__icon { transform: rotate(45deg); background: rgba(214,168,79,0.14); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq-item.open .faq-item__a { max-height: 320px; }
.faq-item__a p { padding-bottom: 26px; color: var(--silver); max-width: 70ch; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: clamp(80px, 11vw, 150px) 0; background: linear-gradient(180deg, var(--carbon), var(--black)); border-top: 1px solid var(--line); }
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.contact__title { font-family: var(--ff-display); font-size: clamp(2.2rem, 5vw, 4rem); text-transform: uppercase; line-height: 0.98; }
.contact__title em { font-style: italic; color: transparent; background: var(--gold-text); -webkit-background-clip: text; background-clip: text; }
.contact__lead { color: var(--silver); margin: 20px 0 32px; max-width: 50ch; }
.contact__info { display: flex; flex-direction: column; gap: 22px; padding: 34px; border-radius: var(--r-lg); background: var(--graphite); border: 1px solid var(--line); }
.contact__info-item { display: flex; align-items: flex-start; gap: 16px; }
.contact__info-icon { width: 44px; height: 44px; flex: none; display: grid; place-items: center; border-radius: 12px; background: rgba(214,168,79,0.12); color: var(--gold); }
.contact__info-icon svg { width: 22px; height: 22px; }
.contact__info-label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.contact__info-text { font-size: 1rem; font-weight: 500; }
.contact__info .btn { width: 100%; margin-top: 6px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding: 70px 0 40px; border-top: 1px solid var(--line); }
.footer__top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.footer__brand-name { font-family: var(--ff-display); font-size: 1.6rem; font-weight: 700; letter-spacing: 0.06em; }
.footer__brand-name b { color: var(--gold); }
.footer__brand-tag { font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--silver); margin-top: 4px; }
.footer__links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer__links a { font-size: 0.86rem; color: var(--silver); transition: color 0.3s; }
.footer__links a:hover { color: var(--gold-light); }
.footer__disclaimer { font-size: 0.78rem; color: var(--muted); max-width: 90ch; margin: 30px 0; line-height: 1.7; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; align-items: center; }
.footer__copy { font-size: 0.8rem; color: var(--muted); }
.footer__p2l { font-size: 0.84rem; color: var(--silver); }
.footer__p2l b { color: var(--gold); font-weight: 600; }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 95; }
.wa-float__btn { display: flex; align-items: center; justify-content: center; width: 62px; height: 62px; border-radius: 50%; background: var(--wa); color: #fff; box-shadow: 0 12px 34px -8px rgba(37,211,102,0.7); transition: transform 0.4s var(--ease); }
.wa-float__btn svg { width: 30px; height: 30px; }
.wa-float__btn:hover { transform: scale(1.08); }
.wa-float__btn::before { content: ''; position: absolute; inset: 0; border-radius: 50%; background: var(--wa); z-index: -1; animation: pulse 2.4s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: 0.55; } 100% { transform: scale(1.9); opacity: 0; } }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.fade-in { opacity: 0; transform: translateY(34px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.fade-in.visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .steps__grid { grid-template-columns: repeat(3, 1fr); }
  .reqs__grid { grid-template-columns: 1fr 1fr; }
  .req-cell--feature { grid-row: span 1; grid-column: span 2; }
  .req-cell--wide { grid-column: span 2; }
}
@media (max-width: 860px) {
  .nav__links, .nav__wa-btn { display: none; }
  .nav__hamburger { display: flex; }
  .contact__inner { grid-template-columns: 1fr; gap: 36px; }
  .hero__card { display: none; }
}
@media (max-width: 680px) {
  .container { padding: 0 18px; }
  .nav { width: calc(100% - 24px); top: 12px; padding: 10px 12px 10px 18px; }
  .trust__grid, .steps__grid, .reqs__grid { grid-template-columns: 1fr; }
  .req-cell--feature, .req-cell--wide { grid-column: span 1; }
  .inventory__grid { grid-template-columns: 1fr; }
  .hero { align-items: center; padding-top: 100px; }
  .hero__title { font-size: clamp(2.8rem, 14vw, 4.2rem); }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; }
  .slide { width: 86vw; height: 60vh; }
  .vehicle-card__btns { grid-template-columns: 1fr; }
  .footer__top { flex-direction: column; }
}

/* ---- Reduced motion -------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .fade-in { opacity: 1; transform: none; }
  .hero__marquee-track { animation: none; }
  .wa-float__btn::before { display: none; }
}

/* ============================================================
   EASY CAR 2026 — PREMIUM KEY HERO
   The key is a light fallback asset ready to be swapped for a
   seamless WebM/MP4 loop without changing the page structure.
   ============================================================ */
.hero {
  min-height: min(900px, 100dvh); align-items: center; padding: 140px 0 76px;
  background:
    radial-gradient(62% 82% at 77% 47%, rgba(30, 91, 143, 0.20), transparent 58%),
    radial-gradient(44% 50% at 72% 68%, rgba(214, 168, 79, 0.14), transparent 66%),
    linear-gradient(120deg, #08090b 0%, #10141b 52%, #08090b 100%);
  isolation: isolate;
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .62;
  background:
    linear-gradient(112deg, transparent 0 49%, rgba(214,168,79,.12) 49.15% 49.25%, transparent 49.35% 100%),
    repeating-linear-gradient(145deg, transparent 0 74px, rgba(174,183,194,.035) 75px 76px, transparent 77px 150px);
  mask-image: linear-gradient(90deg, transparent, #000 24%, #000 90%, transparent);
}
.hero::after {
  content: ''; position: absolute; inset: auto 0 0; height: 160px; z-index: -1; pointer-events: none;
  background: linear-gradient(transparent, var(--black));
}
.hero__inner { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(310px, .88fr); align-items: center; gap: clamp(22px, 5vw, 88px); }
.hero__copy { position: relative; z-index: 2; max-width: 720px; }
.hero__eyebrow { margin-bottom: 22px; }
.hero__title { max-width: 17ch; font-size: clamp(3.2rem, 5.6vw, 5.8rem); line-height: .94; text-shadow: none; }
.hero__title em { display: block; margin-top: .08em; }
.hero__sub { margin-top: 24px; max-width: 57ch; color: #cdd5df; font-size: clamp(1rem, 1.35vw, 1.14rem); }
.hero__ctas { margin-top: 30px; gap: 12px; }
.hero__ctas .btn { min-height: 56px; padding: 15px 24px; text-transform: none; font-family: var(--ff-body); font-size: .9rem; font-weight: 700; letter-spacing: 0; }
.hero__proof { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 30px; max-width: 650px; }
.hero__proof li { position: relative; min-height: 44px; display: flex; align-items: center; padding: 9px 12px 9px 32px; border: 1px solid rgba(255,255,255,.10); border-radius: 10px; background: rgba(20,24,31,.46); color: #e1e5eb; font-size: .76rem; line-height: 1.3; backdrop-filter: blur(12px); }
.hero__proof li::before { content: '✓'; position: absolute; left: 12px; color: var(--gold-light); font-weight: 700; }
.hero__proof strong { color: var(--gold-light); margin-left: .25em; }
.hero__fineprint { margin-top: 10px; color: var(--muted); font-size: .71rem; }

.hero__key-visual { position: relative; min-height: 520px; display: grid; place-items: center; perspective: 1200px; }
.hero__key-halo { position: absolute; width: min(38vw, 480px); aspect-ratio: 1; border-radius: 50%; background: conic-gradient(from 180deg, rgba(214,168,79,.34), rgba(37,112,187,.34), rgba(214,168,79,.10), rgba(214,168,79,.34)); filter: blur(34px); opacity: .58; animation: key-halo 10s linear infinite; }
.hero__key-frame { position: relative; width: min(36vw, 420px); transform-style: preserve-3d; }
.hero__key-frame::before { content: ''; position: absolute; inset: 10% -12%; border: 1px solid rgba(214,168,79,.22); border-radius: 50%; transform: rotate(-18deg); box-shadow: 0 0 54px rgba(214,168,79,.12), inset 0 0 42px rgba(42,119,190,.10); }
.hero__key-frame::after { content: ''; position: absolute; left: 16%; right: 16%; bottom: 5%; height: 10%; border-radius: 50%; background: rgba(0,0,0,.52); filter: blur(22px); z-index: -1; }
.hero__key { position: relative; width: 100%; height: auto; border-radius: 42%; filter: drop-shadow(0 36px 38px rgba(0,0,0,.42)); transform-origin: 50% 55%; animation: key-orbit 6.5s cubic-bezier(.45,0,.55,1) infinite; }
.hero__key.is-static { animation: none; }
.hero__key-label { position: absolute; right: 0; bottom: 3%; padding: 9px 12px; border: 1px solid rgba(214,168,79,.25); border-radius: 999px; background: rgba(8,9,11,.68); color: var(--gold-light); font-size: .62rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; backdrop-filter: blur(10px); }
@keyframes key-orbit {
  0%, 100% { transform: translateY(3px) rotate(-4deg) rotateY(-8deg); }
  50% { transform: translateY(-17px) rotate(3deg) rotateY(8deg); }
}
@keyframes key-halo { to { transform: rotate(360deg); } }

/* Easy Car provenance mark over raw inventory photography. */
.vehicle-card__easycar-badge { color: var(--gold-light); }

@media (max-width: 860px) {
  .hero { min-height: auto; padding: 112px 0 58px; }
  .hero__inner { grid-template-columns: 1fr; gap: 0; }
  .hero__key-visual { order: -1; min-height: 300px; margin: -34px 0 -8px; }
  .hero__key-frame { width: min(59vw, 300px); }
  .hero__key-halo { width: min(64vw, 340px); }
  .hero__key-label { right: 8%; bottom: 5%; }
  .hero__title { max-width: 15ch; }
}
@media (max-width: 680px) {
  .hero { padding-top: 96px; }
  .hero__key-visual { min-height: 250px; margin: -28px 0 2px; }
  .hero__key-frame { width: min(62vw, 270px); }
  .hero__title { font-size: clamp(2.85rem, 12vw, 4.2rem); }
  .hero__proof { grid-template-columns: 1fr; gap: 8px; margin-top: 22px; }
  .hero__proof li { min-height: 40px; font-size: .73rem; }
  .hero__ctas { margin-top: 24px; }
  .hero__ctas .btn { width: 100%; }
  .wa-float { right: 14px; bottom: 14px; }
  .wa-float__btn { width: auto; height: 52px; padding: 0 17px; gap: 8px; border-radius: 999px; }
  .wa-float__btn::after { content: 'WhatsApp'; color: #fff; font-size: .76rem; font-weight: 700; }
  .wa-float__btn svg { width: 23px; height: 23px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__key, .hero__key-halo { animation: none; }
}

/* ============================================================
   EASY CAR — CONVERSION & GALLERY REFINEMENT
   ============================================================ */
.nav__brand-logo { width: 150px; height: 54px; object-fit: contain; display: block; filter: drop-shadow(0 3px 10px rgba(0,0,0,.4)); }
.footer__brand-logo { display: block; width: min(245px, 65vw); height: 104px; object-fit: contain; object-position: left center; }

/* A warm copper CTA replaces WhatsApp green while preserving contrast. */
.btn--wa, .nav__wa-btn, .vehicle-card__btn-wa, .slide__cta, .wa-float__btn {
  background: linear-gradient(135deg, #ffac62 0%, var(--wa) 48%, #cf541e 100%);
  color: #251008;
}
.btn--wa { box-shadow: 0 12px 30px -8px rgba(241,123,58,.62); animation: cta-breathe 2.8s ease-in-out infinite; }
.btn--wa:hover { box-shadow: 0 16px 40px -8px rgba(255,138,71,.78); }
.nav__wa-btn { box-shadow: 0 6px 18px -6px rgba(241,123,58,.58); }
.nav__wa-btn:hover { box-shadow: 0 10px 24px -6px rgba(255,138,71,.78); }
.vehicle-card__btn-wa:hover { box-shadow: 0 10px 24px -8px rgba(241,123,58,.68); }
.wa-float__btn { color: #fff; box-shadow: 0 12px 34px -8px rgba(241,123,58,.68); }
@keyframes cta-breathe { 0%,100% { box-shadow: 0 12px 30px -8px rgba(241,123,58,.52); } 50% { box-shadow: 0 16px 42px -5px rgba(255,172,98,.78), 0 0 0 7px rgba(241,123,58,.08); } }

/* Remove oversized scroll pinning and tighten vertical rhythm. */
.trust, .inventory, .reqs, .steps, .faq, .contact { padding: clamp(58px, 7vw, 92px) 0; }
.showcase__head { padding: clamp(48px, 6vw, 72px) 0 22px; }
.showcase__pin { height: auto; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; scrollbar-width: thin; }
.showcase__track { height: auto; padding: 4px 28px 30px; align-items: stretch; }
.showcase__progress { display: none; }
.showcase__hint { position: static; margin: 0 28px 24px; }
.slide { width: clamp(285px, 36vw, 460px); height: clamp(360px, 50vh, 470px); scroll-snap-align: start; }
.slide__down { font-family: var(--ff-display); font-size: .86rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-light); }
.slide__brand { position: absolute; right: 16px; top: 16px; z-index: 3; width: 94px; height: 47px; overflow: hidden; border-radius: 8px; border: 1px solid rgba(240,210,138,.5); box-shadow: 0 8px 20px rgba(0,0,0,.35); }
.slide__brand img { width: 100%; height: 100%; object-fit: cover; }

.reqs__grid { grid-template-columns: 1.1fr 1fr 1fr; }
.req-cell--cobuyer { grid-column: span 2; background: linear-gradient(135deg, rgba(241,123,58,.15), var(--graphite) 52%); }
.req-cell--cobuyer h3 { font-size: clamp(1.55rem, 2.4vw, 2.25rem); }

/* Inventory card gallery and photo provenance mark. */
.vehicle-card__gallery-trigger { position: absolute; inset: 0; width: 100%; height: 100%; overflow: hidden; border: 0; padding: 0; background: transparent; cursor: zoom-in; }
.vehicle-card__gallery-trigger:focus-visible { outline: 2px solid var(--gold-light); outline-offset: -5px; }
.vehicle-card__gallery-trigger .vehicle-card__img { transition: transform .8s var(--ease), filter .4s var(--ease); }
.vehicle-card__gallery-trigger:hover .vehicle-card__img { transform: scale(1.07); filter: brightness(.86); }
.vehicle-card__gallery-count { position: absolute; left: 50%; bottom: 13px; z-index: 3; transform: translateX(-50%); padding: 6px 10px; border-radius: 999px; background: rgba(8,9,11,.75); border: 1px solid rgba(255,255,255,.16); color: var(--white); font-size: .65rem; font-weight: 700; white-space: nowrap; backdrop-filter: blur(8px); }
.vehicle-card__status-badge, .vehicle-card__easycar-badge, .vehicle-card__stock, .vehicle-card__down, .vehicle-card__gallery-count { pointer-events: none; }
.vehicle-card__easycar-badge { width: 94px; height: 47px; padding: 0; overflow: hidden; border-radius: 8px; border-color: rgba(240,210,138,.55); background: #1b1510; box-shadow: 0 8px 20px rgba(0,0,0,.34); }
.vehicle-card__easycar-badge img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vehicle-card__easycar-badge span { display: none; }
.vehicle-card__spec--biweekly { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr auto; align-items: center; padding: 10px 12px; border-radius: 9px; background: rgba(241,123,58,.10); border: 1px solid rgba(241,123,58,.23); }
.vehicle-card__spec--biweekly .vehicle-card__spec-val { color: var(--gold-light); font-weight: 700; }
.vehicle-card[data-status="sold"] .vehicle-card__img { filter: saturate(.72) brightness(.72); }
.vehicle-card__btn-sold { grid-column: 1 / -1; background: rgba(255,255,255,.07); border-color: rgba(240,210,138,.35); color: var(--gold-light); }

/* Emotional proof section. */
.story { padding: clamp(60px, 8vw, 104px) 0; background: linear-gradient(125deg, #0d0e11, #16191f 52%, #0b0c0f); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.story__inner { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr); gap: clamp(30px, 6vw, 86px); align-items: center; }
.story__media { position: relative; min-height: 420px; overflow: hidden; border-radius: var(--r-lg); border: 1px solid rgba(240,210,138,.22); box-shadow: 0 32px 70px -34px rgba(0,0,0,.9); }
.story__media > img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; object-position: center; }
.story__media::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(8,9,11,.56), transparent 58%), linear-gradient(0deg, rgba(8,9,11,.38), transparent 45%); }
.story__media figcaption { position: absolute; left: 18px; bottom: 16px; z-index: 1; width: 130px; height: 58px; border-radius: 10px; overflow: hidden; border: 1px solid rgba(240,210,138,.5); box-shadow: 0 10px 24px rgba(0,0,0,.4); }
.story__media figcaption img { width: 100%; height: 100%; object-fit: cover; }
.story__copy > p { margin: 22px 0 26px; color: var(--silver); max-width: 50ch; }
.story__points { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 28px; }
.story__points span { padding: 8px 11px; border-radius: 999px; border: 1px solid rgba(240,210,138,.18); background: rgba(255,255,255,.035); color: var(--gold-light); font-size: .72rem; font-weight: 600; }

/* Full gallery: every rendered photo carries the Easy Car logo. */
.gallery-open { overflow: hidden; }
.vehicle-gallery { position: fixed; inset: 0; z-index: 150; display: grid; place-items: center; padding: 22px; opacity: 0; visibility: hidden; transition: opacity .28s ease, visibility .28s; }
.vehicle-gallery.open { opacity: 1; visibility: visible; }
.vehicle-gallery__backdrop { position: absolute; inset: 0; background: rgba(3,4,6,.9); backdrop-filter: blur(12px); }
.vehicle-gallery__panel { position: relative; z-index: 1; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; width: min(1120px, 100%); max-height: calc(100dvh - 44px); }
.vehicle-gallery__figure { position: relative; min-width: 0; max-height: calc(100dvh - 88px); overflow: hidden; border-radius: var(--r-md); background: #0b0c0f; border: 1px solid rgba(255,255,255,.12); }
.vehicle-gallery__image { display: block; width: 100%; max-height: calc(100dvh - 88px); object-fit: contain; }
.vehicle-gallery__brand { position: absolute; right: 16px; bottom: 16px; width: 155px; height: 76px; overflow: hidden; border-radius: 10px; border: 1px solid rgba(240,210,138,.55); box-shadow: 0 12px 30px rgba(0,0,0,.55); }
.vehicle-gallery__brand img { width: 100%; height: 100%; object-fit: cover; }
.vehicle-gallery.is-interior .vehicle-gallery__brand { opacity: 0; visibility: hidden; transform: translateY(10px); }
.vehicle-gallery__close, .vehicle-gallery__nav { display: grid; place-items: center; border: 1px solid rgba(255,255,255,.16); background: rgba(20,22,27,.8); color: var(--white); backdrop-filter: blur(10px); transition: background .25s, transform .25s; }
.vehicle-gallery__close:hover, .vehicle-gallery__nav:hover { background: var(--wa); color: #251008; transform: scale(1.04); }
.vehicle-gallery__close { position: absolute; right: 10px; top: 10px; z-index: 2; width: 44px; height: 44px; border-radius: 50%; font-size: 1.8rem; line-height: 1; }
.vehicle-gallery__nav { width: 46px; height: 46px; border-radius: 50%; font-size: 1.5rem; margin: 0 14px; }
.vehicle-gallery__meta { position: absolute; left: 50%; bottom: 14px; z-index: 2; transform: translateX(-50%); display: flex; align-items: center; gap: 13px; padding: 9px 13px; border-radius: 999px; background: rgba(8,9,11,.78); border: 1px solid rgba(255,255,255,.12); color: var(--white); font-size: .76rem; white-space: nowrap; backdrop-filter: blur(10px); }
.vehicle-gallery__meta span { color: var(--gold-light); }

@media (max-width: 1080px) {
  .req-cell--cobuyer { grid-column: span 2; }
  .story__inner { grid-template-columns: 1fr 1fr; gap: 34px; }
}
@media (max-width: 860px) {
  .story__inner { grid-template-columns: 1fr; }
  .story__media, .story__media > img { min-height: 350px; }
}
@media (max-width: 680px) {
  .nav__brand-logo { width: 128px; height: 48px; }
  .footer__brand-logo { width: 210px; height: 90px; }
  .showcase__track { padding-left: 18px; padding-right: 18px; }
  .showcase__hint { margin-left: 18px; margin-right: 18px; }
  .slide { width: 82vw; height: 440px; }
  .req-cell--cobuyer { grid-column: span 1; }
  .story__media, .story__media > img { min-height: 300px; }
  .vehicle-gallery { padding: 12px; }
  .vehicle-gallery__panel { grid-template-columns: 1fr; }
  .vehicle-gallery__nav { position: absolute; z-index: 3; top: 50%; transform: translateY(-50%); margin: 0; }
  .vehicle-gallery__nav:hover { transform: translateY(-50%) scale(1.04); }
  .vehicle-gallery__nav--prev { left: 8px; }
  .vehicle-gallery__nav--next { right: 8px; }
  .vehicle-gallery__brand { width: 112px; height: 55px; right: 10px; bottom: 10px; }
  .vehicle-gallery__meta { max-width: calc(100% - 30px); overflow: hidden; text-overflow: ellipsis; }
}

/* Requirements: clear eligibility in one premium, scan-friendly block. */
.reqs { background: radial-gradient(70% 80% at 82% 12%, rgba(241,123,58,.14), transparent 60%), linear-gradient(145deg, #0b0c0f, #15191f 58%, #0b0c0f); }
.reqs__head { max-width: 74ch; margin-bottom: 34px; }
.requirements-feature { position: relative; overflow: hidden; padding: clamp(26px, 4vw, 42px); border: 1px solid rgba(240,210,138,.34); border-radius: var(--r-lg); background: linear-gradient(125deg, rgba(241,123,58,.18), rgba(22,26,33,.96) 44%, rgba(28,38,50,.78)); box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 28px 70px -42px rgba(0,0,0,.9); }
.requirements-feature::after { content: ''; position: absolute; width: 340px; height: 340px; right: -130px; bottom: -230px; border-radius: 50%; border: 1px solid rgba(240,210,138,.25); box-shadow: 0 0 0 26px rgba(240,210,138,.04), 0 0 0 52px rgba(241,123,58,.025); pointer-events: none; }
.requirements-feature__heading { position: relative; z-index: 1; display: flex; align-items: center; gap: 16px; margin-bottom: 30px; }
.requirements-feature__icon { width: 56px; height: 56px; display: grid; place-items: center; flex: none; border-radius: 16px; background: linear-gradient(135deg, #ffb96d, var(--wa)); color: #251008; box-shadow: 0 10px 28px rgba(241,123,58,.28); }
.requirements-feature__icon svg { width: 28px; height: 28px; }
.requirements-feature__eyebrow { display: block; margin-bottom: 3px; color: var(--gold-light); font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.requirements-feature h3 { font-family: var(--ff-display); font-size: clamp(1.8rem, 3.2vw, 2.8rem); line-height: 1; text-transform: uppercase; }
.requirements-feature__grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.requirement-key { min-height: 118px; padding: 18px; border: 1px solid rgba(255,255,255,.11); border-radius: 13px; background: rgba(8,9,11,.54); display: flex; flex-direction: column; justify-content: space-between; gap: 12px; transition: transform .35s var(--ease), border-color .35s, background .35s; }
.requirement-key:hover { transform: translateY(-4px); border-color: rgba(240,210,138,.5); background: rgba(8,9,11,.7); }
.requirement-key strong { font-family: var(--ff-display); font-size: clamp(1.1rem, 1.7vw, 1.35rem); line-height: 1.03; color: var(--white); }
.requirement-key span { color: var(--silver); font-size: .77rem; line-height: 1.3; }
.requirement-key--accent { background: linear-gradient(145deg, rgba(241,123,58,.34), rgba(8,9,11,.62)); border-color: rgba(241,123,58,.55); }
.requirement-key--accent strong { color: #ffd198; }
.reqs__grid--secondary { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 18px; gap: 14px; }
.reqs__grid--secondary .req-cell { min-height: 215px; padding: 25px 22px; background: linear-gradient(160deg, rgba(28,32,39,.95), rgba(13,15,19,.96)); }
.reqs__grid--secondary .req-cell--cobuyer { grid-column: span 2; background: linear-gradient(125deg, rgba(241,123,58,.18), rgba(22,25,31,.98)); }
.reqs__grid--secondary .req-cell h3 { font-size: 1.35rem; }
.reqs__grid--secondary .req-cell p { font-size: .84rem; }
.reqs__cta { margin-top: 25px; display: flex; justify-content: center; }
.reqs__cta .btn { min-width: min(100%, 315px); }
/* Desktop CTA card — fills empty columns in secondary grid, hidden on mobile */
.req-cell--desktop-cta {
  grid-column: span 3;
  display: flex; flex-direction: column; justify-content: center; gap: 14px;
  background: linear-gradient(135deg, rgba(214,168,79,.18) 0%, rgba(13,15,19,.98) 60%);
  border-color: rgba(214,168,79,.3);
  min-height: 0;
}
.req-cell--desktop-cta__eyebrow {
  font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); margin: 0;
}
.req-cell--desktop-cta h3 { font-size: clamp(1.5rem, 2.2vw, 2rem); margin-bottom: 0; line-height: 1.1; }
.req-cell--desktop-cta h3 em { color: var(--gold); font-style: normal; }
.req-cell--desktop-cta p { font-size: .88rem; color: var(--silver); max-width: 48ch; margin: 0; }
.req-cell--desktop-cta__btn { align-self: flex-start; margin-top: 4px; }
@media (max-width: 767px) { .req-cell--desktop-cta { display: none; } }
.req-disclaimer { max-width: 85ch; margin-left: auto; margin-right: auto; justify-content: center; text-align: center; }

@media (max-width: 1080px) {
  .requirements-feature__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reqs__grid--secondary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reqs__grid--secondary .req-cell--cobuyer { grid-column: span 2; }
}
@media (max-width: 680px) {
  .requirements-feature { padding: 22px 18px; }
  .requirements-feature__heading { align-items: flex-start; margin-bottom: 20px; }
  .requirements-feature__icon { width: 48px; height: 48px; border-radius: 13px; }
  .requirements-feature__grid, .reqs__grid--secondary { grid-template-columns: 1fr; }
  .requirement-key { min-height: 92px; }
  .reqs__grid--secondary .req-cell, .reqs__grid--secondary .req-cell--cobuyer { grid-column: span 1; min-height: 0; }
  .reqs__grid--secondary .req-cell { padding: 22px 20px; }
  .reqs__cta .btn { width: 100%; }
  .req-disclaimer { justify-content: flex-start; text-align: left; }
}

/* ============================================================
   EASY CAR — FOCUSED SHOPPING EXPERIENCE
   ============================================================ */
.inventory__guide { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 18px 20px; border: 1px solid rgba(240,210,138,.22); border-radius: 16px; background: linear-gradient(110deg, rgba(241,123,58,.12), rgba(20,24,31,.8)); }
.inventory__guide span { display: block; color: var(--gold-light); font-family: var(--ff-display); font-size: 1.18rem; font-weight: 700; }
.inventory__guide p { margin-top: 4px; color: var(--silver); font-size: .82rem; }
.inventory__guide-btn { flex: none; display: inline-flex; align-items: center; gap: 9px; padding: 12px 16px; border: 1px solid rgba(240,210,138,.42); border-radius: 999px; background: transparent; color: var(--gold-light); font-weight: 700; transition: .25s var(--ease); }
.inventory__guide-btn:hover { color: #251008; background: var(--gold-grad); border-color: transparent; transform: translateY(-2px); }
.inventory__more { display: flex; justify-content: center; margin-top: 34px; }
.inventory__more .btn[hidden] { display: none; }

.vehicle-card__easycar-badge { top: 12px; right: 12px; width: 82px; height: 40px; border-radius: 7px; opacity: .94; }
.vehicle-card__meta { display: flex; flex-wrap: wrap; gap: 7px 12px; margin-top: 11px; color: var(--muted); font-size: .69rem; font-weight: 600; letter-spacing: .035em; }
.vehicle-card__meta span + span { color: var(--gold-light); }
.vehicle-card__specs { margin-top: 15px; padding-top: 15px; }
.vehicle-card__footer { padding-top: 14px; }
.vehicle-card__microcopy { margin-bottom: 10px; }
.vehicle-card__btn-apply { appearance: none; cursor: pointer; }

/* Same compact provenance mark shown inside exterior gallery photos. */
.vehicle-gallery__brand { top: 16px; right: 16px; bottom: auto; width: 94px; height: 46px; border-radius: 8px; opacity: .96; transition: opacity .2s ease, visibility .2s ease, transform .2s ease; }
.vehicle-gallery.is-interior .vehicle-gallery__brand { transform: translateY(-8px); }

/* ============================================================
   EXPERIENCE REFINEMENT · V3
   A compact desktop hero, a static vehicle grid and a genuine 3D key rotation
   prevent empty screen real estate from being mistaken for visual drama.
   ============================================================ */
.hero {
  min-height: min(760px, 92svh);
  align-items: center;
  padding: clamp(118px, 12vh, 150px) 0 clamp(54px, 7vh, 86px);
}
.hero__inner { min-height: 500px; }
.hero__key-frame { width: min(32vw, 370px); }
.hero__key {
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 28px;
  transform-origin: 50% 50%;
  backface-visibility: hidden;
  animation: key-spin-3d 8s cubic-bezier(.45, 0, .55, 1) infinite;
}
.hero__key.is-static { animation: key-spin-3d 8s cubic-bezier(.45, 0, .55, 1) infinite; }
@keyframes key-spin-3d {
  0%, 100% { transform: translateY(4px) rotateX(1deg) rotateY(0deg) rotateZ(-2deg); }
  25% { transform: translateY(-7px) rotateX(-2deg) rotateY(82deg) rotateZ(1deg); }
  50% { transform: translateY(-2px) rotateX(1deg) rotateY(180deg) rotateZ(2deg); }
  75% { transform: translateY(-9px) rotateX(-2deg) rotateY(278deg) rotateZ(-1deg); }
}

/* The first three real units are scan-friendly cards, not a horizontal scroller. */
.showcase { padding-bottom: clamp(28px, 4vw, 54px); }
.showcase__pin { height: auto; overflow: visible; }
.showcase__track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1240px, calc(100% - 56px));
  height: auto;
  gap: clamp(16px, 2vw, 28px);
  padding: 4px 0 0;
  margin: 0 auto;
}
.showcase__progress, .showcase__hint { display: none; }
.slide { width: auto; min-width: 0; height: clamp(350px, 32vw, 430px); }

.steps__head { max-width: 680px; }
.steps__lead { margin-top: 15px; color: var(--silver); font-size: 1rem; line-height: 1.62; }
.steps__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.steps__note {
  max-width: 940px;
  margin: 30px auto 0;
  padding: 16px 20px;
  border: 1px solid rgba(240,210,138,.28);
  border-radius: 12px;
  background: linear-gradient(100deg, rgba(214,168,79,.13), rgba(20,24,31,.58));
  color: #d9e0e9;
  font-size: .91rem;
  line-height: 1.58;
}
.steps__note strong { color: var(--gold-light); }
.footer__p2l a { color: var(--gold-light); font-weight: 700; }
.footer__p2l a:hover { color: #fff2bf; }

@media (max-width: 980px) {
  .hero { min-height: auto; }
  .showcase__track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .hero { padding: 88px 0 28px; }
  .hero__key { animation-duration: 7s; border-radius: 20px; }
  .showcase__track { grid-template-columns: 1fr; width: calc(100% - 36px); gap: 14px; }
  .slide { height: 360px; }
  .steps__grid { grid-template-columns: 1fr; }
  .steps__note { margin-top: 20px; padding: 15px; font-size: .85rem; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__key, .hero__key.is-static { animation: none; }
}

.slide { height: clamp(350px, 48vh, 460px); }
.slide__reason { display: inline-flex; margin-bottom: 7px; color: var(--gold-light); font-size: .67rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.showcase__hint { color: var(--gold-light); }

.qualifier-open { overflow: hidden; }
.qualifier { position: fixed; inset: 0; z-index: 180; display: grid; place-items: center; padding: 20px; visibility: hidden; opacity: 0; transition: opacity .25s ease, visibility .25s ease; }
.qualifier.open { visibility: visible; opacity: 1; }
.qualifier__backdrop { position: absolute; inset: 0; background: rgba(3,4,6,.86); backdrop-filter: blur(12px); }
.qualifier__panel { position: relative; z-index: 1; width: min(720px, 100%); max-height: calc(100dvh - 40px); overflow: auto; padding: clamp(24px, 5vw, 44px); border: 1px solid rgba(240,210,138,.32); border-radius: 24px; background: radial-gradient(80% 100% at 100% 0%, rgba(241,123,58,.16), transparent 55%), #12161c; box-shadow: 0 38px 100px rgba(0,0,0,.65); }
.qualifier__close { position: absolute; top: 14px; right: 14px; width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.04); color: var(--white); font-size: 1.6rem; line-height: 1; }
.qualifier h2 { max-width: 13ch; margin: 8px 0 12px; font-family: var(--ff-display); font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: .94; text-transform: uppercase; }
.qualifier > .qualifier__panel > p { max-width: 54ch; color: var(--silver); }
.qualifier__steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 28px 0; }
.qualifier__step { padding: 16px; border: 1px solid var(--line); border-radius: 15px; background: rgba(8,9,11,.44); }
.qualifier__step > span { color: var(--gold); font-family: var(--ff-display); font-size: .78rem; font-weight: 700; letter-spacing: .12em; }
.qualifier__step h3 { min-height: 2.3em; margin: 7px 0 13px; font-family: var(--ff-display); font-size: 1.18rem; line-height: 1; }
.qualifier__step > div { display: flex; flex-direction: column; gap: 8px; }
.qualifier__step button { padding: 9px 10px; min-height: 44px; border: 1px solid rgba(255,255,255,.12); border-radius: 9px; background: rgba(255,255,255,.035); color: var(--silver); text-align: left; font-size: .77rem; transition: .2s ease; }
.qualifier__step button:hover, .qualifier__step button.selected { border-color: rgba(241,123,58,.6); background: rgba(241,123,58,.15); color: var(--white); }
.qualifier__cta { width: 100%; opacity: .45; pointer-events: none; }
.qualifier__cta.is-ready { opacity: 1; pointer-events: auto; }

@media (max-width: 680px) {
  .hero { min-height: 0; padding: 90px 0 24px; align-items: flex-start; }
  .hero__inner { display: flex; flex-direction: column; gap: 0; }
  .hero__copy { order: 1; }
  .hero__key-visual { order: 2; min-height: 175px; height: 175px; max-height: 175px; margin: 8px 0 0; overflow: hidden; }
  .hero__key-frame { width: min(31vw, 155px); }
  .hero__key { max-height: 172px; width: auto; }
  .hero__key-halo { width: min(40vw, 205px); }
  .hero__key-label { right: 12%; bottom: 2%; transform: scale(.86); transform-origin: right bottom; }
  .hero__eyebrow { margin-bottom: 12px; }
  .hero__title { max-width: 15ch; font-size: clamp(2.35rem, 9.7vw, 3.3rem); line-height: .96; }
  .hero__sub { margin-top: 15px; font-size: .94rem; }
  .hero__ctas { margin-top: 18px; gap: 9px; }
  .hero__ctas .btn { min-height: 50px; padding: 13px 17px; }
  .hero__proof { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; margin-top: 17px; }
  .hero__proof li { min-height: 42px; padding: 8px 8px 8px 25px; font-size: .66rem; }
  .hero__proof li::before { left: 9px; }
  .hero__fineprint { margin-top: 7px; font-size: .64rem; }
  .trust { padding: 38px 0; }
  .trust__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .trust__item { padding: 17px 14px; }
  .trust__icon { width: 35px; height: 35px; margin-bottom: 11px; }
  .trust__icon svg { width: 19px; height: 19px; }
  .trust__item h3 { font-size: 1.05rem; line-height: 1; }
  .trust__item p { font-size: .74rem; line-height: 1.35; }
  .showcase__head { padding-top: 42px; }
  .showcase__track { gap: 14px; padding-bottom: 24px; }
  .slide { width: 82vw; height: 360px; }
  .slide__content { left: 18px; right: 18px; bottom: 18px; }
  .inventory__guide { align-items: flex-start; flex-direction: column; gap: 12px; }
  .inventory__guide-btn { width: 100%; justify-content: center; }
  .inventory__controls { margin-bottom: 28px; }
  .inventory__search-row { flex-direction: column; gap: 10px; }
  .inventory__search { max-width: 100%; width: 100%; }
  .inventory__search input { font-size: 1rem; }
  .inventory__sort { width: 100%; }
  .inventory__sort-label { display: none; }
  .inventory__sort select { width: 100%; font-size: 0.9rem; padding: 13px 36px 13px 16px; }
  .filter-btn { min-height: 44px; padding: 11px 20px; }
  .footer__links a { padding: 11px 0; display: inline-block; }
  .inventory__grid { gap: 17px; }
  .vehicle-card__body { padding: 17px 17px 3px; }
  .vehicle-card__footer { padding: 13px 17px 18px; }
  .vehicle-gallery__brand { top: 10px; right: 10px; width: 82px; height: 40px; }
  .qualifier { padding: 12px; }
  .qualifier__panel { max-height: calc(100dvh - 24px); padding: 25px 18px 18px; border-radius: 18px; }
  .qualifier__steps { grid-template-columns: 1fr; gap: 9px; margin: 20px 0; }
  .qualifier__step { padding: 13px; }
  .qualifier__step h3 { min-height: 0; margin-bottom: 10px; }
  .qualifier__step > div { display: grid; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 430px) {
  .hero__proof { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: 1fr; }
  .qualifier__step > div { grid-template-columns: 1fr; }
}
@media (min-width: 481px) and (max-width: 680px) {
  .requirements-feature__grid, .reqs__grid--secondary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reqs__grid--secondary .req-cell { min-height: 170px; }
}

/* Keep the mobile showcase a true one-column grid after the legacy mobile rules. */
@media (max-width: 680px) {
  .showcase__track { padding: 4px 0 0; }
  .showcase__track .slide { width: auto; }
}

/* ============================================================
   EXPERIENCE REBUILD · V4
   The hero object is genuine CSS 3D geometry: front, back and two physical
   sides rotate in a perspective scene. It is intentionally not a flat photo
   being spun around its center.
   ============================================================ */
.hero {
  min-height: 0;
  padding: 102px 0 42px;
}
.hero__inner {
  min-height: 0;
  align-items: center;
}
.hero__copy { padding: 28px 0; }
.hero__key-visual { min-height: 408px; }
.hero__key-frame {
  width: 350px;
  height: 408px;
  display: grid;
  place-items: center;
  perspective: 1050px;
}
.hero__key-frame::before { inset: 4% -10%; }
.hero__key-frame::after { bottom: 3%; }

.key-3d {
  width: 184px;
  height: 360px;
  perspective: 1050px;
  transform: translateY(-3px);
}
.key-3d__spin {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  filter: drop-shadow(0 26px 24px rgba(0,0,0,.45));
  animation: key-object-rotation 8.8s cubic-bezier(.45,0,.55,1) infinite;
}
.key-3d__face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(250,237,207,.72);
  border-radius: 82px 82px 60px 60px;
  backface-visibility: hidden;
}
.key-3d__front {
  transform: translateZ(18px);
  background:
    linear-gradient(97deg, rgba(255,255,255,.34), transparent 14%, transparent 82%, rgba(255,255,255,.22)),
    linear-gradient(110deg, #171a1e 0%, #535862 11%, #111317 24%, #2a2e35 48%, #0c0d10 73%, #5b6069 100%);
  box-shadow: inset 0 0 0 7px #111319, inset 0 0 0 9px rgba(243,205,143,.28), inset 0 0 32px rgba(255,255,255,.06);
}
.key-3d__front::after {
  content: '';
  position: absolute;
  inset: 16px;
  border-radius: 68px 68px 45px 45px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(120deg, rgba(255,255,255,.08), transparent 25% 72%, rgba(255,201,100,.10));
}
.key-3d__back {
  display: grid;
  place-items: center;
  transform: rotateY(180deg) translateZ(18px);
  background:
    radial-gradient(circle at 40% 25%, rgba(255,222,159,.22), transparent 18%),
    linear-gradient(135deg, #17191d 0%, #545a63 12%, #0e1013 33%, #272b31 65%, #111216 100%);
  box-shadow: inset 0 0 0 7px #111319, inset 0 0 0 9px rgba(243,205,143,.23), inset 0 0 36px rgba(0,0,0,.4);
}
.key-3d__back-mark {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(251,222,160,.7);
  border-radius: 50%;
  color: #f3cc81;
  font-family: var(--ff-display);
  font-size: 2.55rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,.8);
  box-shadow: inset 0 0 20px rgba(0,0,0,.65), 0 0 22px rgba(214,168,79,.16);
}
.key-3d__back-line { position: absolute; left: 34px; right: 34px; bottom: 46px; height: 1px; background: linear-gradient(90deg, transparent, rgba(247,214,153,.65), transparent); }
.key-3d__side {
  position: absolute;
  top: 14px;
  width: 36px;
  height: 330px;
  border: 1px solid rgba(255,244,220,.42);
  background: linear-gradient(90deg, #08090b 0%, #686e77 42%, #14161a 74%, #050607 100%);
  box-shadow: inset 0 0 14px rgba(0,0,0,.75);
}
.key-3d__side--right { left: 50%; transform: translateX(-50%) rotateY(90deg) translateZ(92px); }
.key-3d__side--left { left: 50%; transform: translateX(-50%) rotateY(-90deg) translateZ(92px); }
.key-3d__groove {
  position: absolute;
  z-index: 2;
  inset: 60px 35px 88px;
  border: 1px solid rgba(250,250,250,.16);
  border-radius: 54px;
  background: linear-gradient(105deg, #111216, #343941 48%, #0a0b0d 80%);
  box-shadow: inset 7px 0 11px rgba(0,0,0,.55), inset -5px 0 10px rgba(255,255,255,.09);
}
.key-3d__button {
  position: absolute;
  z-index: 3;
  left: 50%;
  width: 68px;
  height: 57px;
  transform: translateX(-50%);
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 20px;
  background: linear-gradient(155deg, #545962, #121417 58%, #050606);
  box-shadow: inset 0 2px 3px rgba(255,255,255,.12), 0 5px 7px rgba(0,0,0,.35);
}
.key-3d__button--top { top: 90px; }
.key-3d__button--mid { top: 155px; }
.key-3d__button--low { top: 220px; }
.key-3d__light { position: absolute; z-index: 4; left: 50%; top: 151px; width: 36px; height: 3px; transform: translateX(-50%); border-radius: 99px; background: #ffb04d; box-shadow: 0 0 14px #ff8b2f, 0 0 4px #fff0bb; }
.key-3d__loop { position: absolute; z-index: 3; left: 50%; bottom: 21px; width: 52px; height: 25px; transform: translateX(-50%); border: 6px solid #b7bdc6; border-top-color: #ffcf7d; border-radius: 50% 50% 14px 14px; box-shadow: 0 0 8px rgba(255,203,107,.35); }
@keyframes key-object-rotation {
  0%, 100% { transform: translateY(2px) rotateX(2deg) rotateY(-26deg) rotateZ(-3deg); }
  25% { transform: translateY(-5px) rotateX(-3deg) rotateY(24deg) rotateZ(2deg); }
  50% { transform: translateY(-1px) rotateX(2deg) rotateY(32deg) rotateZ(-2deg); }
  75% { transform: translateY(-6px) rotateX(-2deg) rotateY(-31deg) rotateZ(3deg); }
}

/* Tighten the two transitions that were visually reading as blank bands. */
.trust { padding: 54px 0 50px; }
.showcase__head { padding: 48px 0 20px; }
.showcase { padding-bottom: 34px; }
.steps { padding: 62px 0 52px; }
.cta-band { padding: 78px 0; }
.steps__lead { max-width: 60ch; }
.steps__grid { margin-top: 28px; }
.steps__brief {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 1040px;
  margin: 20px auto 0;
}
.steps__brief article {
  min-height: 142px;
  padding: 19px 18px;
  border: 1px solid rgba(240,210,138,.23);
  border-radius: 13px;
  background: linear-gradient(145deg, rgba(214,168,79,.11), rgba(18,22,28,.78) 42%);
}
.steps__brief span { display: block; color: var(--gold-light); font-size: .67rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.steps__brief strong { display: block; margin-top: 10px; color: #f4f6fa; font-family: var(--ff-display); font-size: 1.05rem; line-height: 1.05; }
.steps__brief p { margin-top: 8px; color: var(--silver); font-size: .78rem; line-height: 1.45; }
.steps__note { margin-top: 12px; }

@media (max-width: 980px) {
  .hero { padding-top: 90px; }
  .hero__key-visual { min-height: 350px; }
  .hero__key-frame { width: 300px; height: 350px; transform: scale(.88); transform-origin: center; }
  .steps__brief { grid-template-columns: 1fr; }
  .steps__brief article { min-height: 0; }
}
@media (max-width: 680px) {
  .hero { padding: 82px 0 22px; }
  .hero__copy { padding: 0; }
  .hero__key-visual { order: 2; min-height: 224px; height: 224px; max-height: none; margin: 4px 0 0; overflow: visible; }
  .hero__key-frame { width: 220px; height: 220px; transform: scale(.54); transform-origin: center; }
  .hero__key-label { right: 5%; bottom: 0; }
  .trust { padding: 34px 0 30px; }
  .showcase__head { padding: 34px 0 18px; }
  .showcase { padding-bottom: 24px; }
  .steps { padding: 45px 0 34px; }
  .steps__grid { margin-top: 20px; }
  .steps__brief { margin-top: 14px; }
  .steps__brief article { padding: 16px; }
  .cta-band { padding: 62px 0; }
}
@media (prefers-reduced-motion: reduce) {
  .key-3d__spin { animation: none; transform: rotateX(2deg) rotateY(-14deg) rotateZ(-3deg); }
}

/* Avoid transform/smooth-scroll blank states between the large sections. */
html { scroll-behavior: auto; }

/* Content is immediately available even after a direct section link or reload. */
.fade-in,
.fade-in.visible {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* P2L-style real WebGL hero object: the canvas is the 3D scene, while the
   original photograph remains only as an instant no-WebGL/reduced fallback. */
.hero__key-webgl {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
}
.hero__key-canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100% !important;
  height: 100% !important;
  opacity: 0;
  transition: opacity .45s ease;
}
.hero__key-webgl.is-ready .hero__key-canvas { opacity: 1; }
.hero__key-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 30px 34px rgba(0,0,0,.42));
  transition: opacity .35s ease;
}
.hero__key-webgl.is-ready .hero__key-fallback { opacity: 0; }
.hero__key-video {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 34px 32px rgba(0,0,0,.5));
}
.hero__key-video.is-static { animation: none; }
@media (max-width: 680px) {
  .hero__key-webgl { min-height: 220px; }
  .hero__key-video { width: 100%; height: 100%; }
}

/* ============================================================
   PREMIUM FEATURES · 2026-06
   Reading progress, cursor spotlight, stats strip, skeletons,
   card-reveal stagger (Anime.js), showcase entrance.
   ============================================================ */

/* Reading progress — barra dorada fina al top */
.reading-progress {
  position: fixed; top: 0; left: 0; z-index: 210; height: 2px; width: 0%;
  background: var(--gold-grad); pointer-events: none; will-change: width;
}

/* Cursor spotlight — aureola sutil que sigue el puntero */
.cursor-spotlight {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(700px circle at var(--cx,50vw) var(--cy,50vh), rgba(214,168,79,.055), transparent 50%);
}

/* Stats strip */
.stats-strip {
  padding: 22px 0; border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, var(--carbon) 0%, var(--graphite) 50%, var(--carbon) 100%);
}
.stats-strip__inner {
  display: flex; justify-content: center; align-items: center;
  gap: clamp(22px, 6vw, 84px); flex-wrap: wrap;
}
.stat-pill { display: flex; flex-direction: column; align-items: center; gap: 3px; min-width: 66px; }
.stat-pill__num {
  font-family: var(--ff-display); font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700; line-height: 1; color: transparent;
  background: var(--gold-text); -webkit-background-clip: text; background-clip: text;
}
.stat-pill__label {
  font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); text-align: center;
}
@media (max-width: 680px) {
  .stats-strip { padding: 14px 0; }
  .stats-strip__inner { gap: 14px; }
  .stat-pill { min-width: 58px; }
  .stat-pill__num { font-size: 1.24rem; }
  .stat-pill__label { font-size: 0.58rem; }
}

/* Skeleton shimmer */
@keyframes skeleton-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.skeleton-pulse {
  background: linear-gradient(90deg, var(--graphite) 25%, var(--graphite2) 50%, var(--graphite) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s ease-in-out infinite;
  border-radius: 6px;
}
.vehicle-card--skeleton { pointer-events: none; }

/* Card reveal — Anime.js maneja la entrada; CSS solo oculta el estado inicial */
.card-reveal { opacity: 0; transform: translateY(22px); }

/* ============================================================
   MOBILE REFINEMENT · 2026-06
   Fixes: key-visual arriba del copy, slides en ratio paisaje
   para fotos de autos, filtros scrollables, tarjetas cómodas.
   ============================================================ */
@media (max-width: 680px) {
  /* Key visual encima del copy — más escaneable en móvil */
  .hero__key-visual {
    order: -1;
    min-height: 154px;
    height: 154px;
    max-height: 154px;
    width: 100%;
    margin: 0 auto 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
  }
  .hero__key-halo { width: 130px; height: 130px; }
  .hero__key-frame {
    width: 98px;
    height: 150px;
    transform: none;
    perspective: 700px;
  }
  .hero__key-video {
    width: 98px;
    height: 148px;
    object-fit: contain;
    border-radius: 14px;
    filter: drop-shadow(0 14px 18px rgba(0,0,0,.52));
  }
  .hero__key-label { display: none; }
  .hero__copy { order: 1; }

  /* Slides: ratio paisaje para que se vean los carros completos */
  .slide { height: clamp(200px, 54vw, 250px); }
  .slide__content { left: 14px; right: 14px; bottom: 12px; }
  .slide__price { font-size: 1.5rem; }
  .slide__name { font-size: 1.1rem; }

  /* Filtros: fila horizontal scrollable, sin cortes */
  .filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
  }
  .filters::-webkit-scrollbar { display: none; }
  .filter-btn { flex-shrink: 0; white-space: nowrap; }

  /* Tarjetas de inventario: más espacio respirable */
  .vehicle-card__name { font-size: 1.16rem; }
  .vehicle-card__specs { grid-template-columns: 1fr 1fr; gap: 10px; }
  .vehicle-card__btns { grid-template-columns: 1fr 1fr; gap: 8px; }
  .vehicle-card__btn-wa,
  .vehicle-card__btn-apply { font-size: 0.8rem; padding: 12px 10px; }
}

/* ============================================================
   FEATURE 1 · Fullscreen image preview
   ============================================================ */
.img-fullscreen {
  position: fixed; inset: 0; z-index: 600;
  background: rgba(0,0,0,.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .22s ease;
}
.img-fullscreen.open { opacity: 1; pointer-events: all; }
.img-fullscreen__img {
  max-width: 94vw; max-height: 88vh;
  object-fit: contain; border-radius: 6px;
  box-shadow: 0 24px 60px rgba(0,0,0,.7);
}
.img-fullscreen__close {
  position: absolute; top: 14px; right: 18px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: #fff; font-size: 1.5rem; line-height: 1;
  width: 44px; height: 44px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .18s;
}
.img-fullscreen__close:hover { background: rgba(255,255,255,.22); }
.gallery-zoom-btn {
  position: absolute; bottom: 10px; right: 10px; z-index: 3;
  background: rgba(0,0,0,.62); border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.88); font-size: .68rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 9px 12px; min-height: 44px; border-radius: 4px; cursor: pointer;
  transition: background .18s;
}
.gallery-zoom-btn:hover { background: rgba(214,168,79,.28); border-color: var(--gold); color: var(--gold); }

/* ============================================================
   FEATURE 3 · Comparador de vehículos
   ============================================================ */
.compare-toggle {
  position: absolute; top: 8px; left: 8px; z-index: 5;
}
.compare-toggle input[type="checkbox"] { display: none; }
.compare-toggle label {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.82); background: rgba(0,0,0,.58);
  border: 1px solid rgba(255,255,255,.22);
  padding: 4px 9px; border-radius: 4px; cursor: pointer; user-select: none;
  transition: background .18s, border-color .18s, color .18s;
  white-space: nowrap;
}
.compare-toggle input:checked + label {
  background: var(--gold); color: var(--black); border-color: var(--gold);
}
.compare-toggle label::before {
  content: ''; width: 11px; height: 11px; border-radius: 2px;
  border: 1.5px solid currentColor; flex-shrink: 0;
}
.compare-toggle input:checked + label::before {
  background: var(--black); border-color: var(--black);
}

/* Compare floating bar */
.compare-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 350;
  background: var(--carbon); border-top: 1px solid var(--gold);
  padding: 10px 16px; display: flex; align-items: center; gap: 10px;
  transform: translateY(100%); transition: transform .3s ease;
  box-shadow: 0 -6px 24px rgba(0,0,0,.4);
}
.compare-bar.visible { transform: translateY(0); }
.compare-bar__slots { display: flex; gap: 8px; flex: 1; min-width: 0; overflow: hidden; }
.compare-slot {
  flex: 1; min-width: 0; max-width: 220px;
  background: var(--graphite); border: 1px dashed var(--line);
  border-radius: 6px; padding: 6px 10px;
  font-size: .74rem; color: var(--muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  transition: border-color .18s, color .18s;
}
.compare-slot.filled { border-color: var(--gold); color: #fff; }
.compare-bar__btn {
  background: var(--gold); color: var(--black); border: none;
  font-weight: 800; font-size: .8rem; letter-spacing: .04em; text-transform: uppercase;
  padding: 10px 16px; border-radius: 6px; cursor: pointer; white-space: nowrap;
  transition: opacity .18s;
}
.compare-bar__btn:disabled { opacity: .4; cursor: default; }
.compare-bar__clear {
  background: none; border: 1px solid var(--line); color: var(--muted);
  font-size: .72rem; padding: 8px 12px; border-radius: 6px; cursor: pointer;
  transition: border-color .18s, color .18s;
}
.compare-bar__clear:hover { border-color: var(--muted); color: #fff; }

/* Compare modal */
.compare-modal {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,.88);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 20px 12px; overflow-y: auto;
  opacity: 0; pointer-events: none; transition: opacity .22s ease;
}
.compare-modal.open { opacity: 1; pointer-events: all; }
.compare-modal__panel {
  background: var(--carbon); border: 1px solid var(--line);
  border-radius: 12px; max-width: 860px; width: 100%;
  padding: 24px; position: relative; margin: auto;
}
.compare-modal__close {
  position: absolute; top: 12px; right: 14px;
  background: none; border: none; color: var(--muted);
  font-size: 1.6rem; line-height: 1; cursor: pointer; transition: color .18s;
}
.compare-modal__close:hover { color: #fff; }
.compare-modal__title {
  font-family: var(--ff-display); font-size: 1rem; font-weight: 700;
  color: var(--gold); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px;
}
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.compare-col__img {
  width: 100%; aspect-ratio: 16/9; object-fit: contain;
  background: var(--graphite); border-radius: 8px; margin-bottom: 10px;
}
.compare-col__name { font-weight: 700; font-size: .95rem; color: #fff; margin-bottom: 4px; }
.compare-col__stock { font-size: .7rem; color: var(--muted); margin-bottom: 10px; }
.compare-table { width: 100%; border-collapse: collapse; font-size: .8rem; }
.compare-table tr td { padding: 7px 4px; border-bottom: 1px solid var(--line); vertical-align: top; }
.compare-table tr td:first-child { color: var(--muted); font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; width: 38%; }
.compare-table tr td:last-child { font-weight: 600; color: #fff; }
.compare-col__wa {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  background: var(--wa, #f97316); color: #fff; font-weight: 700; font-size: .8rem;
  padding: 11px; border-radius: 6px; text-decoration: none; margin-top: 14px;
  transition: opacity .18s;
}
.compare-col__wa:hover { opacity: .88; }
@media (max-width: 600px) {
  .compare-grid { grid-template-columns: 1fr; gap: 24px; }
  .compare-modal__panel { padding: 16px; }
  .compare-bar__slots { display: none; }
}

/* ============================================================
   FEATURE 4 · Badge "Recién llegado"
   ============================================================ */
.vehicle-card__new-badge {
  position: absolute; top: 8px; right: 8px; z-index: 5;
  background: #22c55e; color: #fff;
  font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 3px;
  box-shadow: 0 2px 8px rgba(34,197,94,.4);
}

/* ============================================================
   FEATURE 6 · Brand strip horizontal auto-scroll
   ============================================================ */
.brand-strip {
  padding: 16px 0; border-bottom: 1px solid var(--line);
  overflow: hidden; position: relative;
}
.brand-strip::before,
.brand-strip::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 48px; z-index: 2; pointer-events: none;
}
.brand-strip::before { left: 0; background: linear-gradient(90deg, var(--black), transparent); }
.brand-strip::after  { right: 0; background: linear-gradient(-90deg, var(--black), transparent); }
.brand-strip__track {
  display: flex; gap: 10px; align-items: center;
  width: max-content;
  animation: brand-scroll 28s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .brand-strip__track { animation: none; }
}
.brand-strip__track:hover { animation-play-state: paused; }
@keyframes brand-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.brand-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--graphite); border: 1px solid var(--line); border-radius: 20px;
  padding: 6px 14px; font-size: .76rem; font-weight: 600; letter-spacing: .03em;
  color: var(--muted); white-space: nowrap; cursor: pointer;
  transition: border-color .18s, color .18s;
  user-select: none;
}
.brand-pill:hover { border-color: var(--gold); color: var(--gold); }
.brand-pill__count { font-size: .66rem; font-weight: 400; opacity: .7; }

/* ============================================================
   FINANCING DATA CARD STYLES — finance / cash / coming-soon
   ============================================================ */

/* Stock code — main identifier on every card */
.vehicle-card__header { margin-bottom: 0; }
.vehicle-card__stock-code {
  font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold); margin-top: 5px;
}
.vehicle-card__stock-code strong { font-size: .85rem; letter-spacing: .04em; color: var(--gold); }

/* Finance info block */
.vehicle-card__finance-info {
  margin-top: 14px; padding: 14px 0 0; border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 10px;
}
.vehicle-card__finance-row {
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
}
.vehicle-card__finance-label {
  font-size: .69rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--muted);
}
.vehicle-card__finance-val {
  font-size: 1rem; font-weight: 700; color: var(--silver);
}
.vehicle-card__finance-val--down {
  font-family: var(--ff-display); font-size: 1.25rem; font-weight: 700;
  color: var(--gold); letter-spacing: -.01em;
}
.vehicle-card__finance-row--bw {
  padding: 10px 12px; border-radius: 9px;
  background: rgba(214,168,79,.10); border: 1px solid rgba(214,168,79,.22);
}
.vehicle-card__finance-row--bw .vehicle-card__finance-label { color: var(--muted); }
.vehicle-card__finance-row--bw .vehicle-card__finance-val {
  color: var(--gold); font-size: .98rem; font-weight: 700;
}

/* Cash variant */
.vehicle-card__finance-info--cash { gap: 8px; }
.vehicle-card__cash-tag {
  display: inline-block; background: rgba(34,197,94,.12); border: 1px solid rgba(34,197,94,.3);
  color: #4ade80; font-size: .65rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; border-radius: 20px; padding: 3px 10px; align-self: flex-start;
}
.vehicle-card__finance-val--cash {
  font-family: var(--ff-display); font-size: 1.3rem; font-weight: 700;
  color: #4ade80; letter-spacing: -.01em;
}

/* No-image placeholder */
.vehicle-card__no-img {
  width: 100%; aspect-ratio: 4/3; background: var(--graphite);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; color: var(--muted);
}
.vehicle-card__no-img svg { width: 40px; height: 40px; opacity: .4; }
.vehicle-card__no-img span { font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; opacity: .6; }

/* Coming-soon card variant */
.vehicle-card--coming-soon .vehicle-card__name--dim { color: var(--muted); font-size: 1rem; }
.vehicle-card__coming-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(8,9,13,.55); backdrop-filter: blur(2px); z-index: 2; pointer-events: none;
}
.vehicle-card__coming-overlay span {
  background: var(--graphite); border: 1px solid var(--line);
  color: var(--silver); font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; border-radius: 20px; padding: 6px 16px;
}
.vehicle-card__coming-msg {
  font-size: .77rem; color: var(--muted); margin-top: 10px; line-height: 1.45;
}
.vehicle-card__btn-wa--dim {
  background: rgba(255,255,255,.05); border-color: var(--line); color: var(--muted);
}
.vehicle-card__btn-wa--dim:hover { background: var(--graphite); color: var(--silver); }

/* Inventory notice banner */
.inventory__notice {
  display: flex; align-items: flex-start; gap: 10px;
  background: rgba(214,168,79,.07); border: 1px solid rgba(214,168,79,.2);
  border-radius: 10px; padding: 12px 16px; margin-bottom: 24px;
  font-size: .78rem; line-height: 1.5; color: var(--muted);
}
.inventory__notice svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; color: var(--gold); opacity: .8; }
.inventory__notice p { margin: 0; }
.inventory__notice strong { color: var(--silver); font-weight: 700; }

/* ============================================================
   HERO CINEMA  (.hc)
   Full-screen video hero — scroll scrubs 0s→4s, freeze,
   then text from original hero fades in over video.
   ============================================================ */

.hc {
  position: relative;
  height: 100vh;
  min-height: 560px;
  background: #07080a;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* ── Video container — right side, natural size ── */
.hc__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hc__vid {
  width: auto;
  height: 100%;
  max-width: 65%;
  object-fit: contain;
  object-position: center center;
  display: block;
  opacity: 0.92;
}

/* ── Dark gradient overlay — visible from frame 0, intensifies with scroll ── */
.hc__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.55;
  background: linear-gradient(
    105deg,
    rgba(7,8,10,0.96) 0%,
    rgba(7,8,10,0.85) 35%,
    rgba(7,8,10,0.45) 60%,
    transparent 80%
  );
  transition: opacity 0.3s ease;
}

/* ── Text content wrapper — visible from start ── */
.hc__content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Container alignment */
.hc__container { padding-top: 0; }

/* hero__copy already has the right max-width from hero CSS */

/* ── Notice pill (legal disclaimer) ── */
.hc__notice {
  display: inline-block;
  font-size: 0.67rem;
  color: rgba(214,168,79,0.5);
  padding: 7px 14px;
  border: 1px solid rgba(214,168,79,0.18);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  background: rgba(7,8,10,0.4);
  line-height: 1.4;
  margin-top: 16px;
}

/* ── Scroll hint ── */
.hc__scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
  animation: hc-hint 2.2s ease-in-out infinite;
}

.hc__scroll-line {
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, rgba(214,168,79,0.75), transparent);
  display: block;
}

.hc__scroll-label {
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(214,168,79,0.4);
}

@keyframes hc-hint {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) translateY(0); }
  55%       { opacity: 1;   transform: translateX(-50%) translateY(7px); }
}

/* ── Mobile ── */
@media (max-width: 899px) {
  .hc__vid {
    object-position: 70% center;
  }

  .hc__overlay {
    background: linear-gradient(
      180deg,
      rgba(7,8,10,0.15) 0%,
      rgba(7,8,10,0.55) 45%,
      rgba(7,8,10,0.95) 72%,
      #07080a 100%
    );
  }

  .hc__content {
    align-items: flex-end;
    padding-bottom: 40px;
  }

  .hc__container { width: 100%; padding: 0 20px; }

  .hc__scroll-hint { display: none; }
}

/* ── Reduced motion: static fallback ── */
@media (prefers-reduced-motion: reduce) {
  .hc__overlay  { opacity: 1 !important; }
  .hc__content  { opacity: 1 !important; visibility: visible !important; pointer-events: auto !important; }
  .hc__item     { opacity: 1 !important; transform: none !important; }
  .hc__scroll-hint { display: none; }
}

/* ============================================================
   MOBILE CONVERSION FIX · 2026-06
   Keeps the cinematic direction, but removes the dead black
   space and makes the real car/key visual visible before CTA.
   ============================================================ */
@media (max-width: 680px) {
  .hc {
    height: auto;
    min-height: 0;
    display: block;
    padding: 96px 0 92px;
    overflow: hidden;
  }

  .hc__media {
    position: relative;
    inset: auto;
    height: clamp(145px, 42vw, 190px);
    width: calc(100% - 32px);
    margin: 0 auto 18px;
    border: 1px solid rgba(214,168,79,.18);
    border-radius: 20px;
    overflow: hidden;
    justify-content: center;
    background: #0c0d10;
    box-shadow: 0 18px 44px rgba(0,0,0,.35);
  }

  .hc__vid {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: 62% center;
    opacity: .96;
  }

  .hc__overlay {
    opacity: 1;
    background:
      linear-gradient(180deg, rgba(7,8,10,.38) 0%, rgba(7,8,10,.12) 18%, rgba(7,8,10,.72) 55%, #07080a 100%),
      radial-gradient(circle at 75% 18%, rgba(255,148,63,.22), transparent 34%);
  }

  .hc__content {
    position: relative;
    inset: auto;
    display: block;
    padding: 0;
  }

  .hc__container {
    padding: 0 18px;
  }

  .hc .hero__copy {
    max-width: none;
  }

  .hc .hero__eyebrow {
    margin-bottom: 11px;
    font-size: .66rem;
    letter-spacing: .22em;
  }

  .hc .hero__title {
    max-width: 12.5ch;
    font-size: clamp(2.05rem, 10vw, 3rem);
    line-height: .98;
  }

  .hc .hero__sub {
    margin-top: 14px;
    font-size: .96rem;
    line-height: 1.55;
  }

  .hc .hero__ctas {
    display: grid;
    gap: 10px;
    margin-top: 18px;
  }

  .hc .hero__ctas .btn {
    width: 100%;
    min-height: 52px;
    justify-content: center;
  }

  .hc__notice {
    display: block;
    margin-top: 12px;
    font-size: .66rem;
    color: rgba(240,210,160,.7);
    background: rgba(255,148,63,.08);
  }
}
