/* =========================================================
   AUTO EXPRESS — Hoja de estilos compartida
   Mobile-first · Dark dominant · CTA #CC0000
   ========================================================= */

:root {
  --bg-0: #060606;
  --bg-1: #0E0E0E;
  --bg-2: #161616;
  --bg-3: #1F1F1F;
  --line: #262626;
  --line-2: #333;
  --text: #FFFFFF;
  --text-2: #B5B5B5;
  --text-3: #7A7A7A;
  --red: #CC0000;
  --red-2: #E60000;
  --red-3: #FF1A1A;
  --green: #25D366;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 18px 40px rgba(0,0,0,.55);
  --shadow-red: 0 12px 30px rgba(204,0,0,.35);
  --container: 1200px;
  --header-h: 68px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-0);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: 16px; color: var(--text); }

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

.icon { width: 1em; height: 1em; flex-shrink: 0; }

/* ============== Header ============== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  background: rgba(6,6,6,.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
}
.site-header .bar {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  position: relative;
  padding-left: 14px;
}
.brand::before {
  content: '';
  position: absolute;
  left: 0; top: 4px;
  width: 4px; height: calc(100% - 8px);
  background: var(--red);
  border-radius: 2px;
}
.brand b {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: .04em;
}
.brand small {
  font-size: 10px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-top: 4px;
}

.nav-links {
  display: none;
  gap: 28px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  position: relative;
  transition: color .2s;
  padding: 8px 0;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  inset: auto 0 -22px 0;
  height: 2px;
  background: var(--red);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 16px;
  border-radius: 999px;
  transition: background .2s, transform .2s;
}
.header-cta:hover { background: var(--red-2); transform: translateY(-1px); }
.header-cta svg { width: 16px; height: 16px; }
.header-cta span { display: none; }

.mobile-toggle {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--bg-2);
  display: grid; place-items: center;
  border: 1px solid var(--line);
}
.mobile-toggle svg { width: 20px; height: 20px; }

.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  background: var(--bg-1);
  border-bottom: 1px solid var(--line);
  padding: 16px 20px 24px;
  display: none;
  z-index: 99;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 14px 4px;
  font-size: 15px;
  border-bottom: 1px solid var(--line);
  color: var(--text-2);
}
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu a.active { color: var(--text); }

main { padding-top: var(--header-h); min-height: 60vh; }

/* ============== Buttons ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  transition: all .2s ease;
  white-space: nowrap;
  border: 0;
}
.btn svg { width: 18px; height: 18px; }
.btn-red { background: var(--red); color: #fff; box-shadow: var(--shadow-red); }
.btn-red:hover { background: var(--red-2); transform: translateY(-2px); }
.btn-ghost {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line-2);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-wa { background: var(--green); color: #052e16; }
.btn-wa:hover { background: #1ec55a; }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 28px; font-size: 16px; }

/* ============== HERO ============== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px 0 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,6,6,.55) 0%, rgba(6,6,6,.85) 60%, rgba(6,6,6,1) 100%),
    url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 50% 30%, rgba(204,0,0,.18) 0%, transparent 70%);
}
.hero-inner { position: relative; z-index: 1; width: 100%; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(204,0,0,.15);
  border: 1px solid rgba(204,0,0,.4);
  color: #ff5252;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-eyebrow .pulse {
  width: 8px; height: 8px;
  background: var(--red-3);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255,26,26,.7);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 12px rgba(255,26,26,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,26,26,0); }
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 9vw, 84px);
  line-height: .95;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.hero h1 .accent { color: var(--red-3); display: block; }
.hero p.lead {
  font-size: clamp(15px, 4vw, 19px);
  color: var(--text-2);
  max-width: 560px;
  margin-bottom: 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-stats {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 560px;
}
.hero-stats .stat {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 12px;
  text-align: center;
}
.hero-stats b {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--red-3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  line-height: 1;
}
.hero-stats b svg { width: 22px; height: 22px; }
.hero-stats span {
  font-size: 11px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Page hero (smaller, used on subpages) */
.page-hero {
  background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-0) 100%);
  padding: 50px 0 30px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(204,0,0,.18) 0%, transparent 60%);
}
.page-hero .container { position: relative; }
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 7vw, 58px);
  line-height: 1;
  margin-bottom: 8px;
}
.page-hero p { color: var(--text-2); max-width: 640px; }
.crumbs {
  display: flex;
  gap: 8px;
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.crumbs a:hover { color: var(--text); }
.crumbs span:not(.sep) { color: var(--text); }

/* ============== Express form ============== */
.express-form-wrap {
  margin-top: -40px;
  position: relative;
  z-index: 5;
}
.express-form {
  background: linear-gradient(180deg, #1c1c1c 0%, #131313 100%);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow);
}
.express-form .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}
.express-form .badge::before {
  content: '';
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
}
.express-form h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 6vw, 38px);
  line-height: 1;
  margin-bottom: 6px;
}
.express-form .sub { color: var(--text-2); font-size: 14px; margin-bottom: 18px; }

.form-grid { display: grid; gap: 14px; }
.field label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-3);
  margin-bottom: 7px;
  font-weight: 600;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 14px;
  border-radius: 10px;
  border: 1px solid var(--line-2);
  background: var(--bg-1);
  color: var(--text);
  outline: none;
  transition: border-color .2s, background .2s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--red);
  background: #0a0a0a;
}
.legal {
  font-size: 11px;
  color: var(--text-3);
  text-align: center;
  margin-top: 12px;
}
.legal b { color: var(--text-2); }

/* ============== Sections base ============== */
section.block { padding: 70px 0; }
.section-head { text-align: center; margin-bottom: 40px; }
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--red-3);
  margin-bottom: 10px;
}
.section-head h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 6vw, 50px);
  line-height: 1;
  margin-bottom: 10px;
}
.section-head p { color: var(--text-2); max-width: 560px; margin: 0 auto; }

/* ============== Trust badges ============== */
.trust {
  background: var(--bg-1);
  border-block: 1px solid var(--line);
  padding: 36px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.trust-item { text-align: center; padding: 8px; }
.trust-item .ic {
  width: 52px; height: 52px;
  margin: 0 auto 10px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(204,0,0,.2), rgba(204,0,0,.05));
  border: 1px solid rgba(204,0,0,.3);
  display: grid; place-items: center;
  color: var(--red-3);
}
.trust-item .ic svg { width: 26px; height: 26px; }
.trust-item h4 { font-size: 14px; margin-bottom: 4px; }
.trust-item p { font-size: 12px; color: var(--text-3); line-height: 1.4; }

/* ============== Steps ============== */
.steps { display: grid; gap: 16px; }
.step {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  position: relative;
  overflow: hidden;
}
.step .num {
  position: absolute;
  top: 12px; right: 16px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 78px;
  color: var(--bg-3);
  line-height: 1;
}
.step h3 { font-size: 18px; margin-bottom: 8px; position: relative; }
.step p { color: var(--text-2); font-size: 14px; position: relative; }
.step .ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--red);
  display: grid; place-items: center;
  margin-bottom: 14px;
  color: #fff;
  position: relative;
}
.step .ic svg { width: 22px; height: 22px; }

/* ============== Featured cars ============== */
.featured-grid { display: grid; gap: 18px; }
.featured-cta { text-align: center; margin-top: 30px; }

/* ============== Inventory toolbar ============== */
.inv-toolbar {
  position: sticky;
  top: var(--header-h);
  background: var(--bg-0);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  z-index: 50;
}
.filters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.filters .field-search { grid-column: 1 / -1; }
.filters select, .filters input {
  width: 100%;
  padding: 12px 12px;
  border-radius: 10px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  color: var(--text);
  font-size: 14px;
}
.filters input::placeholder { color: var(--text-3); }
.filters select:focus, .filters input:focus { outline: 0; border-color: var(--red); }

.inv-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0 18px;
  font-size: 13px;
  color: var(--text-3);
}
.inv-meta b { color: var(--text); }

.inventory-grid { display: grid; gap: 18px; padding-bottom: 80px; }

/* ============== Car card ============== */
.car {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.car:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: var(--shadow);
}
.car a.car-link { display: block; color: inherit; }
.car-photo {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-3);
}
.car-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.car:hover .car-photo img { transform: scale(1.06); }
.car-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px;
}
.car-fav {
  position: absolute;
  top: 10px; right: 10px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(8px);
  display: grid; place-items: center;
  color: #fff;
  border: 1px solid rgba(255,255,255,.15);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.car-fav:hover { background: rgba(204,0,0,.85); }
.car-fav.active { background: var(--red); color: #fff; }
.car-fav svg { width: 18px; height: 18px; }

.car-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.car-title { font-size: 17px; font-weight: 700; margin-bottom: 4px; line-height: 1.25; }
.car-sub { font-size: 13px; color: var(--text-3); margin-bottom: 14px; }
.car-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}
.car-specs .s {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-2);
}
.car-specs .s svg { width: 16px; height: 16px; color: var(--text-3); flex-shrink: 0; }
.car-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 14px;
}
.car-price b {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--text);
}
.car-price span { font-size: 12px; color: var(--text-3); }
.car-actions { display: grid; grid-template-columns: 1fr auto; gap: 8px; margin-top: auto; }
.car-actions .btn { padding: 12px 14px; font-size: 13px; }

/* ============== Vehicle detail ============== */
.veh { padding: 24px 0 100px; }
.veh-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 18px;
  cursor: pointer;
}
.veh-back:hover { color: var(--text); }

.veh-grid { display: grid; gap: 28px; }

.gallery .main {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--bg-2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.gallery .main img { width: 100%; height: 100%; object-fit: cover; }
.gallery .thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 8px;
}
.gallery .thumbs button {
  aspect-ratio: 16/10;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  background: var(--bg-2);
}
.gallery .thumbs button.active { border-color: var(--red); }
.gallery .thumbs img { width: 100%; height: 100%; object-fit: cover; }

.veh-info h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(30px, 6vw, 44px);
  line-height: 1;
  margin-bottom: 6px;
}
.veh-info .sub { color: var(--text-2); margin-bottom: 18px; }

.veh-price {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(204,0,0,.18), rgba(204,0,0,.04));
  border: 1px solid rgba(204,0,0,.4);
  border-radius: var(--radius);
  margin-bottom: 22px;
}
.veh-price b {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  line-height: 1;
}
.veh-price .down { color: var(--text-2); font-size: 13px; }
.veh-price .down strong { color: var(--red-3); display: block; font-size: 16px; }

.veh-keys {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}
.veh-keys .k {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
}
.veh-keys .k small {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-3);
  margin-bottom: 2px;
}
.veh-keys .k b { font-size: 14px; }

.veh-section { margin-top: 32px; }
.veh-section h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  margin-bottom: 14px;
  letter-spacing: .03em;
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.spec-table tr { border-bottom: 1px solid var(--line); }
.spec-table tr:last-child { border-bottom: 0; }
.spec-table td { padding: 12px 14px; font-size: 14px; }
.spec-table td:first-child { color: var(--text-3); width: 50%; }
.spec-table td:last-child { font-weight: 600; }

.veh-desc { color: var(--text-2); line-height: 1.7; }

.veh-contact {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  margin-top: 22px;
}
.veh-contact h3 { margin-bottom: 14px; }

.veh-actions-fixed {
  position: fixed;
  inset: auto 0 0 0;
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  display: flex;
  z-index: 80;
  gap: 8px;
}
.veh-actions-fixed .btn { flex: 1; }

/* ============== Financiamiento ============== */
.fin-cards {
  display: grid;
  gap: 16px;
}
.fin-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: border-color .2s, transform .2s;
}
.fin-card:hover { border-color: var(--red); transform: translateY(-3px); }
.fin-card .ic {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--red), #7A0000);
  display: grid; place-items: center;
  color: #fff;
  margin-bottom: 16px;
}
.fin-card .ic svg { width: 24px; height: 24px; }
.fin-card h3 { font-size: 18px; margin-bottom: 8px; }
.fin-card p { color: var(--text-2); font-size: 14px; }

.docs-list {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.docs-list ul { list-style: none; }
.docs-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--text-2);
}
.docs-list li:last-child { border-bottom: 0; }
.docs-list li svg {
  width: 20px; height: 20px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 1px;
}
.docs-list li b { color: var(--text); display: block; margin-bottom: 2px; }

.calc {
  background: linear-gradient(180deg, #1c1c1c 0%, #131313 100%);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 24px;
}
.calc h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  margin-bottom: 18px;
}
.calc-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 16px;
}
.calc-row .field input { padding: 12px 14px; }
.calc-result {
  background: var(--bg-0);
  border: 1px solid rgba(204,0,0,.4);
  border-radius: 12px;
  padding: 18px;
  text-align: center;
}
.calc-result small {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-3);
  margin-bottom: 6px;
}
.calc-result b {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: var(--red-3);
  line-height: 1;
}
.calc-result span { font-size: 12px; color: var(--text-3); display: block; margin-top: 6px; }

/* ============== Contacto ============== */
.contact-grid {
  display: grid;
  gap: 24px;
}
.contact-info {
  display: grid;
  gap: 12px;
}
.contact-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: border-color .2s;
}
.contact-card:hover { border-color: var(--red); }
.contact-card .ic {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(204,0,0,.15);
  border: 1px solid rgba(204,0,0,.3);
  display: grid; place-items: center;
  color: var(--red-3);
  flex-shrink: 0;
}
.contact-card .ic svg { width: 22px; height: 22px; }
.contact-card h4 { font-size: 14px; margin-bottom: 4px; }
.contact-card p, .contact-card a {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.5;
}
.contact-card a:hover { color: var(--text); }

.map-wrap {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bg-2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: invert(.92) hue-rotate(180deg) brightness(.95); }

.faq { display: grid; gap: 12px; }
.faq details {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
}
.faq details[open] { border-color: var(--red); }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 22px;
  color: var(--red-3);
  font-weight: 300;
  transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--text-2); font-size: 14px; margin-top: 12px; line-height: 1.6; }

/* ============== Footer ============== */
footer {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  padding: 50px 0 30px;
  margin-top: 40px;
}
.foot-grid {
  display: grid;
  gap: 28px;
  margin-bottom: 30px;
}
.foot-col h5 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--red-3);
  margin-bottom: 14px;
}
.foot-col p { color: var(--text-2); font-size: 14px; line-height: 1.7; }
.foot-col ul { list-style: none; display: grid; gap: 10px; }
.foot-col li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-2);
  font-size: 14px;
}
.foot-col li svg { width: 16px; height: 16px; color: var(--red-3); flex-shrink: 0; }
.foot-col a { color: var(--text-2); transition: color .2s; }
.foot-col a:hover { color: var(--text); }
.foot-bottom {
  padding-top: 22px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.7;
}

/* ============== Floating WhatsApp ============== */
.wa-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green);
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(37,211,102,.5);
  z-index: 90;
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 28px; height: 28px; color: #fff; }

/* ============== Responsive ============== */
@media (min-width: 720px) {
  .header-cta span { display: inline; }
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .featured-grid, .inventory-grid { grid-template-columns: repeat(2, 1fr); }
  .filters { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .filters .field-search { grid-column: auto; }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .full { grid-column: 1 / -1; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .veh-keys { grid-template-columns: repeat(4, 1fr); }
  .veh-grid { grid-template-columns: 1.2fr 1fr; align-items: start; }
  .gallery .thumbs { grid-template-columns: repeat(5, 1fr); }
  .veh-actions-fixed { display: none; }
  .fin-cards { grid-template-columns: repeat(2, 1fr); }
  .calc-row { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1.2fr 1fr; }
}

@media (min-width: 1024px) {
  :root { --header-h: 76px; }
  .nav-links { display: flex; }
  .mobile-toggle { display: none; }
  .featured-grid, .inventory-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-stats { grid-template-columns: repeat(3, 1fr); max-width: 640px; }
  section.block { padding: 100px 0; }
  .express-form { padding: 36px; }
  .express-form-wrap { margin-top: -90px; }
  .veh { padding: 40px 0 80px; }
  .fin-cards { grid-template-columns: repeat(4, 1fr); }
  .foot-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

@media (min-width: 1280px) {
  .hero { min-height: 720px; }
}
