/* [project]/app/globals.css [app-client] (css) */
@font-face {
  font-family: Outfit;
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url("/fonts/outfit-latin.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+2000-206F, U+20AC, U+2122;
}

@font-face {
  font-family: Outfit;
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url("/fonts/outfit-latin-ext.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0;
}

:root {
  --bg: #070b12;
  --bg-2: #0a111c;
  --surface: #0f1826;
  --surface-2: #15202f;
  --glass: #0f1826b8;
  --line: #94a3b824;
  --line-strong: #94a3b84d;
  --ink: #eef2f7;
  --muted: #9aa8bd;
  --accent: #f97316;
  --accent-bright: #fb923c;
  --accent-deep: #ea580c;
  --accent-ink: #1c0e04;
  --accent-soft: #f973161f;
  --whatsapp: #25d366;
  --whatsapp-ink: #06210f;
  --teal: #2dd4bf;
  --blue: #60a5fa;
  --danger: #f87171;
  --amber: #fbbf24;
  --radius-lg: 20px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-card: 0 18px 50px #02060c8c;
  --glow-accent: 0 10px 40px #f9731647;
  --header-offset: 92px;
  --font-display: "Outfit", Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-display);
  scroll-behavior: smooth;
}

body {
  background: radial-gradient(1100px 500px at 85% -100px, #f9731612, transparent 60%),
    radial-gradient(900px 600px at -150px 350px, #2563eb14, transparent 55%),
    var(--bg);
  min-height: 100vh;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font: inherit;
}

img, video {
  max-width: 100%;
}

::selection {
  background: #f9731666;
}

:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, :before, :after {
    transition: none !important;
    animation: none !important;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  z-index: 30;
  background: #070b12c7;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 12px clamp(16px, 4vw, 48px);
  display: flex;
  position: sticky;
  top: 0;
}

.brand-mark {
  align-items: center;
  gap: 11px;
  display: inline-flex;
}

.brand-mark__icon {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex: none;
  width: 40px;
  height: 40px;
  display: block;
}

.brand-mark__text {
  line-height: 1.12;
  display: grid;
}

.brand-mark__name {
  letter-spacing: .02em;
  font-size: 20px;
  font-weight: 800;
}

.brand-mark__tagline {
  color: var(--muted);
  letter-spacing: .02em;
  font-size: 11.5px;
  font-weight: 500;
}

.site-nav {
  flex-wrap: wrap;
  align-items: center;
  gap: 2px;
  display: flex;
}

.site-nav a, .site-nav span {
  color: #c4cedd;
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 14px;
  font-weight: 600;
  transition: background .14s, color .14s;
}

.site-nav a:hover, .site-nav a[aria-current="page"] {
  background: var(--accent-soft);
  color: var(--accent-bright);
}

.header-cta {
  align-items: center;
  gap: 12px;
  display: flex;
}

.header-phone {
  color: var(--ink);
  letter-spacing: .02em;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 700;
}

.header-phone:hover {
  color: var(--accent-bright);
}

.button, .button-secondary, .button-ghost, .button-whatsapp, .share-button {
  cursor: pointer;
  letter-spacing: .01em;
  text-align: center;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 20px;
  font-weight: 700;
  transition: transform .14s, box-shadow .14s, background .14s, border-color .14s, color .14s;
  display: inline-flex;
}

.button {
  background: linear-gradient(135deg, var(--accent-bright), var(--accent-deep));
  color: var(--accent-ink);
  border: 1px solid #fb923c80;
  font-weight: 800;
  box-shadow: 0 6px 24px #ea580c40;
}

.button:hover {
  box-shadow: var(--glow-accent);
  transform: translateY(-1px);
}

.button-whatsapp {
  background: var(--whatsapp);
  color: var(--whatsapp-ink);
  border: 1px solid #25d36699;
  font-weight: 800;
  box-shadow: 0 6px 24px #25d3662e;
}

.button-whatsapp:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 36px #25d36652;
}

.button-secondary {
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--accent-bright);
  color: var(--accent-bright);
}

.button-ghost, .share-button {
  border: 1px solid var(--line-strong);
  color: #c4cedd;
  background: none;
}

.button-ghost:hover, .share-button:hover {
  border-color: var(--accent-bright);
  color: var(--accent-bright);
}

.button--block {
  width: 100%;
}

.page-band {
  padding: clamp(28px, 5vw, 72px) clamp(16px, 4vw, 48px);
}

.page-band--tight {
  padding-bottom: 0;
}

.page-band--brand-top {
  padding-top: 14px;
  padding-bottom: 0;
}

.page-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.eyebrow {
  color: var(--accent-bright);
  letter-spacing: .16em;
  text-transform: uppercase;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  display: inline-flex;
}

.eyebrow:before {
  background: linear-gradient(90deg, var(--accent-bright), transparent);
  content: "";
  border-radius: 999px;
  width: 26px;
  height: 2px;
}

h1, h2, h3 {
  letter-spacing: -.02em;
}

.section-head {
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 26px;
  display: flex;
}

.section-head h2 {
  margin: 6px 0 0;
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
}

.section-head p {
  color: var(--muted);
  max-width: 640px;
  margin: 10px 0 0;
  font-size: 15.5px;
  line-height: 1.6;
}

.panel-title, .detail-section > h2, .blog-card h2, .blog-card h3 {
  margin: 0;
}

.panel-title {
  font-size: 19px;
  font-weight: 800;
}

.note-line {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.fine-print {
  color: #7c8aa0;
  margin: 0;
  font-size: 12.5px;
  line-height: 1.55;
}

.lead-panel, .calc {
  scroll-margin-top: 120px;
}

.hero {
  padding: clamp(48px, 7vw, 96px) clamp(16px, 4vw, 48px) clamp(72px, 8vw, 110px);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.hero-bg:before {
  content: "";
  background: radial-gradient(640px 420px at 78% 18%, #f9731629, #0000 65%), radial-gradient(540px 420px at 12% 82%, #2563eb21, #0000 60%);
  position: absolute;
  inset: 0;
}

.hero-bg:after {
  content: "";
  background-image: linear-gradient(#94a3b80d 1px, #0000 1px), linear-gradient(90deg, #94a3b80d 1px, #0000 1px);
  background-size: 56px 56px;
  position: absolute;
  inset: 0;
  -webkit-mask-image: radial-gradient(900px 540px at 60% 30%, #000000e6, #0000 75%);
  mask-image: radial-gradient(900px 540px at 60% 30%, #000000e6, #0000 75%);
}

.hero-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  display: grid;
  position: relative;
}

.hero-copy {
  justify-items: start;
  gap: 22px;
  animation: .6s both rise;
  display: grid;
}

.hero h1 {
  margin: 0;
  font-size: clamp(38px, 5.6vw, 68px);
  font-weight: 800;
  line-height: 1.02;
}

.text-gradient {
  background: linear-gradient(100deg, var(--accent-bright), #fdba74 55%, var(--accent));
  color: #0000;
  -webkit-background-clip: text;
  background-clip: text;
}

.hero p {
  color: #b8c3d4;
  max-width: 560px;
  margin: 0;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
}

.hero-actions, .row-actions, .detail-actions, .lead-actions {
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  display: flex;
}

.hero-stats {
  border-top: 1px solid var(--line);
  color: var(--muted);
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 26px;
  margin-top: 6px;
  padding-top: 18px;
  font-size: 13.5px;
  font-weight: 500;
  display: flex;
}

.hero-stats strong {
  color: var(--ink);
  font-weight: 800;
}

.hero-side {
  animation: .6s .12s both rise;
  position: relative;
}

.hero-side:before {
  border-radius: calc(var(--radius-lg) + 10px);
  content: "";
  filter: blur(26px);
  opacity: .7;
  z-index: -1;
  background: linear-gradient(135deg, #f9731659, #0000 50%, #2563eb40);
  position: absolute;
  inset: -14px;
}

.hero-feature-card {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  transition: transform .16s, border-color .16s, box-shadow .16s;
  display: grid;
  overflow: hidden;
}

.hero-feature-card:hover {
  box-shadow: var(--glow-accent);
  border-color: #fb923c99;
  transform: translateY(-4px);
}

.hero-feature-card__label {
  background: linear-gradient(135deg, var(--accent-bright), var(--accent-deep));
  color: var(--accent-ink);
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 9px 16px;
  font-size: 12px;
  font-weight: 800;
}

.hero-feature-card__media {
  aspect-ratio: 16 / 10;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}

.discount-badge-card--hero {
  top: 14px;
  right: 14px;
}

.hero-feature-card__media img, .hero-feature-card__media video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .4s;
  display: block;
}

.hero-feature-card:hover .hero-feature-card__media img {
  transform: scale(1.04);
}

.hero-feature-card__body {
  gap: 7px;
  padding: 18px 20px 20px;
  display: grid;
}

.hero-feature-card__body strong {
  font-size: 19px;
  font-weight: 800;
}

.hero-feature-card__spec {
  color: var(--muted);
  font-size: 13.5px;
}

.hero-feature-card__price {
  color: var(--accent-bright);
  font-feature-settings: "tnum";
  font-size: 24px;
  font-weight: 800;
}

.hero-feature-card__price-block {
  justify-items: start;
  gap: 3px;
  display: grid;
}

.hero-feature-card__old-price {
  color: #aab7c8;
  font-size: 13.5px;
  font-weight: 800;
  -webkit-text-decoration: line-through #f8fafcc7;
  text-decoration: line-through #f8fafcc7;
  text-decoration-thickness: 2px;
}

.quick-search {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background: var(--glass);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  z-index: 2;
  grid-template-columns: minmax(160px, 1.4fr) repeat(3, minmax(130px, 1fr)) auto;
  gap: 14px;
  width: calc(100% - 32px);
  max-width: 1240px;
  margin: -52px auto 0;
  padding: 18px;
  display: grid;
  position: relative;
}

.quick-search .button {
  align-self: end;
}

.field {
  gap: 7px;
  display: grid;
}

.field label, .filter-label {
  color: #8e9cb2;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 11.5px;
  font-weight: 700;
}

.field input, .field select, .field textarea {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: #070b12a6;
  width: 100%;
  min-height: 44px;
  padding: 10px 13px;
  transition: border-color .14s, box-shadow .14s;
}

.field input::placeholder {
  color: #64748b;
}

.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent-bright);
  outline: none;
  box-shadow: 0 0 0 3px #f973162e;
}

.field select option {
  background: var(--surface);
  color: var(--ink);
}

.category-strip {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  display: grid;
}

.category-tile {
  background: linear-gradient(170deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  justify-items: start;
  gap: 8px;
  min-height: 150px;
  padding: 22px;
  transition: transform .16s, border-color .16s, box-shadow .16s;
  display: grid;
  position: relative;
}

.category-tile:hover {
  box-shadow: var(--shadow-card);
  border-color: #fb923c8c;
  transform: translateY(-4px);
}

.category-tile__icon {
  background: var(--accent-soft);
  color: var(--accent-bright);
  border: 1px solid #fb923c59;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 6px;
  display: inline-flex;
}

.category-tile__icon svg {
  width: 24px;
  height: 24px;
}

.category-tile strong {
  font-size: 18px;
  font-weight: 800;
}

.category-tile span {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
}

.category-tile__price {
  font-weight: 700;
  color: var(--accent-bright) !important;
}

.vehicle-grid {
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 18px;
  display: grid;
}

.vehicle-grid--list {
  grid-template-columns: 1fr;
}

.vehicle-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  grid-template-rows: auto 1fr;
  transition: transform .16s, border-color .16s, box-shadow .16s;
  display: grid;
  overflow: hidden;
}

.vehicle-card:hover {
  box-shadow: var(--shadow-card);
  border-color: #fb923c80;
  transform: translateY(-4px);
}

.vehicle-card--list {
  grid-template-rows: none;
  grid-template-columns: minmax(240px, 36%) 1fr;
}

.vehicle-card__media {
  aspect-ratio: 16 / 10;
  background: var(--bg-2);
  display: block;
  position: relative;
  overflow: hidden;
}

.vehicle-card__media img, .vehicle-card__media video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .4s;
  display: block;
}

.vehicle-card:hover .vehicle-card__media img {
  transform: scale(1.05);
}

.sold-ribbon {
  z-index: 6;
  color: #fff;
  letter-spacing: .16em;
  text-transform: uppercase;
  pointer-events: none;
  background: linear-gradient(135deg, #ef4444, #991b1b);
  padding: 7px 52px;
  font-size: 13px;
  font-weight: 800;
  position: absolute;
  top: 18px;
  left: -42px;
  transform: rotate(-45deg);
  box-shadow: 0 8px 22px #0006;
}

.discount-badge-card {
  color: #1c0e04;
  text-transform: uppercase;
  z-index: 7;
  background: linear-gradient(135deg, #fb923c, #ea580c);
  border: 1px solid #ffedd599;
  border-radius: 10px;
  place-items: center;
  padding: 9px 12px;
  line-height: 1;
  display: grid;
  position: absolute;
  top: 48px;
  right: 12px;
  box-shadow: 0 12px 28px #0000006b;
}

.discount-badge-card span {
  letter-spacing: .14em;
  font-size: 10px;
  font-weight: 900;
}

.discount-badge-card strong {
  font-size: 24px;
  font-weight: 900;
}

.vehicle-card--sold .vehicle-card__media img, .vehicle-card--sold .vehicle-card__media video {
  filter: grayscale(.4) brightness(.8);
}

.sold-section {
  border-top: 1px solid var(--line);
  margin-top: 44px;
  padding-top: 28px;
}

.sold-banner {
  color: #fff;
  letter-spacing: .05em;
  text-transform: uppercase;
  box-shadow: var(--glow-accent);
  background: linear-gradient(135deg, #ef4444, #991b1b);
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 800;
  display: inline-flex;
}

.vehicle-card__media:after {
  content: "";
  pointer-events: none;
  background: linear-gradient(#0000 60%, #070b128c);
  position: absolute;
  inset: 0;
}

.vehicle-card__badges {
  z-index: 1;
  gap: 6px;
  display: flex;
  position: absolute;
  top: 12px;
  left: 12px;
}

.media-badge {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong);
  color: #dbe3ee;
  z-index: 1;
  background: #070b12b8;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11.5px;
  font-weight: 700;
  position: absolute;
  bottom: 12px;
  right: 12px;
}

.media-badge--video {
  top: 12px;
  bottom: auto;
  right: 12px;
}

.vehicle-card__body {
  align-content: start;
  gap: 10px;
  padding: 18px;
  display: grid;
}

.vehicle-card__meta, .detail-meta {
  color: var(--muted);
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  display: flex;
}

.vehicle-card__specline {
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.5;
}

.vehicle-card__location {
  color: #7c8aa0;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  display: flex;
}

.vehicle-card h2, .vehicle-card h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.22;
}

.vehicle-card h2 a:hover, .vehicle-card h3 a:hover {
  color: var(--accent-bright);
}

.price {
  color: var(--accent-bright);
  font-feature-settings: "tnum";
  font-size: 23px;
  font-weight: 800;
}

.price--discount {
  gap: 2px;
  display: grid;
}

.price__old {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-decoration: line-through;
}

.badge {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong);
  color: #dbe3ee;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: #070b12b8;
  border-radius: 999px;
  width: fit-content;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
}

.badge--teal {
  color: var(--teal);
  border-color: #2dd4bf66;
}

.kind-chips {
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  display: flex;
}

.kind-chip {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  color: #c4cedd;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13.5px;
  font-weight: 700;
  transition: border-color .14s, color .14s, background .14s;
}

.kind-chip:hover {
  border-color: var(--accent-bright);
  color: var(--accent-bright);
}

.kind-chip[aria-current="true"] {
  background: linear-gradient(135deg, var(--accent-bright), var(--accent-deep));
  color: var(--accent-ink);
  border-color: #fb923c99;
}

.filters-shell {
  grid-template-columns: minmax(250px, 300px) 1fr;
  align-items: start;
  gap: 20px;
  display: grid;
}

.filters-panel, .detail-panel, .lead-panel, .contact-panel, .blog-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.filters-panel {
  gap: 16px;
  padding: 18px;
  display: grid;
}

.filters-drawer {
  scrollbar-width: thin;
  max-height: calc(100vh - 116px);
  top: var(--header-offset);
  align-self: start;
  position: sticky;
  overflow-y: auto;
}

.filters-drawer__summary {
  display: none;
}

.range-fields {
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  display: grid;
}

.preset-links {
  flex-wrap: wrap;
  gap: 6px;
  display: flex;
}

.preset-links a {
  border: 1px solid var(--line-strong);
  color: var(--muted);
  background: #070b1280;
  border-radius: 999px;
  padding: 5px 11px;
  font-size: 12px;
  font-weight: 600;
  transition: border-color .14s, color .14s;
}

.preset-links a:hover {
  border-color: var(--accent-bright);
  color: var(--accent-bright);
}

fieldset.field {
  border: none;
  min-width: 0;
  margin: 0;
  padding: 0;
}

.results-note {
  margin-top: 18px;
}

.checkbox-group, .radio-group {
  gap: 9px;
  display: grid;
}

.checkbox-option {
  color: #c4cedd;
  cursor: pointer;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
}

.checkbox-option input {
  accent-color: var(--accent);
  width: 17px;
  height: 17px;
}

.filter-toolbar {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  display: flex;
}

.sort-links {
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  display: flex;
}

.sort-links a {
  border: 1px solid var(--line-strong);
  color: var(--muted);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12.5px;
  font-weight: 600;
  transition: border-color .14s, color .14s, background .14s;
}

.sort-links a:hover {
  border-color: var(--accent-bright);
  color: var(--accent-bright);
}

.sort-links a[aria-current="true"] {
  background: var(--surface-2);
  border-color: var(--accent-bright);
  color: var(--accent-bright);
}

.filter-chips {
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  display: flex;
}

.filter-chip {
  background: var(--accent-soft);
  color: var(--accent-bright);
  border: 1px solid #fb923c66;
  border-radius: 999px;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  font-size: 13px;
  font-weight: 700;
  transition: border-color .14s;
  display: inline-flex;
}

.filter-chip:hover {
  border-color: var(--accent-bright);
}

.filter-chip--clear {
  border-color: var(--line-strong);
  color: var(--muted);
  background: none;
}

.view-toggle {
  gap: 6px;
  display: inline-flex;
}

.view-toggle a {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--muted);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
  transition: border-color .14s, color .14s, background .14s;
}

.view-toggle a[aria-current="true"] {
  background: var(--surface-2);
  border-color: var(--accent-bright);
  color: var(--accent-bright);
}

.page-title {
  border-bottom: 1px solid var(--line);
  padding: clamp(36px, 5vw, 60px) clamp(16px, 4vw, 48px);
  position: relative;
}

.page-title:before {
  content: "";
  pointer-events: none;
  background: radial-gradient(700px 300px at 70% 0, #f973161a, #0000 65%);
  position: absolute;
  inset: 0;
}

.page-title .page-inner {
  justify-items: start;
  gap: 14px;
  display: grid;
  position: relative;
}

.page-title h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(30px, 4.4vw, 52px);
  font-weight: 800;
  line-height: 1.05;
}

.page-title p {
  color: #b8c3d4;
  max-width: 720px;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

.breadcrumb {
  color: #7c8aa0;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
}

.breadcrumb a:hover {
  color: var(--accent-bright);
}

.spec-pills {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.spec-pill {
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  color: #dbe3ee;
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 13.5px;
  font-weight: 600;
}

.title-band {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  width: 100%;
  display: flex;
}

.title-band > div {
  justify-items: start;
  gap: 14px;
  display: grid;
}

.price-block {
  text-align: right;
  justify-items: end;
  gap: 5px;
  display: grid;
}

.discount-badge-detail {
  color: #1c0e04;
  letter-spacing: .05em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #fb923c, #ea580c);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 900;
}

.price-block__old {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  text-decoration: line-through;
}

.price-block__value {
  color: var(--accent-bright);
  font-feature-settings: "tnum";
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  line-height: 1;
}

.price-block__tax {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.detail-grid {
  grid-template-columns: minmax(0, 1fr) minmax(330px, 390px);
  align-items: start;
  gap: 22px;
  display: grid;
}

.detail-main {
  gap: 22px;
  min-width: 0;
  display: grid;
}

.detail-rail {
  top: var(--header-offset);
  gap: 16px;
  display: grid;
  position: sticky;
}

.gallery {
  gap: 10px;
  display: grid;
}

.gallery__main {
  aspect-ratio: 16 / 10;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.gallery__main img, .gallery__main video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.gallery__zoom {
  cursor: zoom-in;
  background: none;
  border: none;
  width: 100%;
  height: 100%;
  padding: 0;
  display: block;
}

.gallery__zoom img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.gallery__counter {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong);
  color: #dbe3ee;
  z-index: 2;
  background: #070b12b8;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 12.5px;
  font-weight: 700;
  position: absolute;
  bottom: 14px;
  right: 14px;
}

.gallery__nav {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong);
  color: #fff;
  cursor: pointer;
  z-index: 2;
  background: #070b1299;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  font-size: 22px;
  transition: background .14s, border-color .14s;
  display: inline-flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.gallery__nav:hover {
  border-color: var(--accent-bright);
  background: #070b12e6;
}

.gallery__nav--prev {
  left: 14px;
}

.gallery__nav--next {
  right: 14px;
}

.gallery__thumbs {
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  grid-auto-columns: 112px;
  grid-auto-flow: column;
  gap: 8px;
  padding-bottom: 4px;
  display: grid;
  overflow-x: auto;
}

.gallery__thumb {
  aspect-ratio: 4 / 3;
  background: var(--bg-2);
  border-radius: var(--radius-sm);
  cursor: pointer;
  scroll-snap-align: start;
  border: 2px solid #0000;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.gallery__thumb img {
  object-fit: cover;
  opacity: .75;
  width: 100%;
  height: 100%;
  transition: opacity .14s;
  display: block;
}

.gallery__thumb:hover img {
  opacity: 1;
}

.gallery__thumb[aria-pressed="true"] {
  border-color: var(--accent-bright);
}

.gallery__thumb[aria-pressed="true"] img {
  opacity: 1;
}

.gallery__thumb-play {
  color: #fff;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: #070b1299;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  position: absolute;
  inset: 0;
}

.gallery__caption {
  color: #7c8aa0;
  margin: 0;
  font-size: 13px;
}

.gallery-lightbox {
  background: #04070cf7;
  border: none;
  border-radius: 0;
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  padding: 0;
}

.gallery-lightbox::backdrop {
  background: #04070ceb;
}

.gallery-lightbox__inner {
  place-items: center;
  width: 100%;
  height: 100%;
  padding: clamp(12px, 4vw, 48px);
  display: grid;
  position: relative;
}

.gallery-lightbox__inner img {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

.gallery-lightbox__close {
  border: 1px solid var(--line-strong);
  color: #fff;
  cursor: pointer;
  z-index: 2;
  background: #ffffff14;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 700;
  position: absolute;
  top: 18px;
  right: 18px;
}

.facts-strip {
  grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
  gap: 10px;
  margin: 0;
  display: grid;
}

.fact-tile {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  gap: 5px;
  padding: 14px 16px;
  display: grid;
}

.fact-tile dt {
  color: #8e9cb2;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
}

.fact-tile dd {
  margin: 0;
  font-size: 15.5px;
  font-weight: 700;
}

.detail-panel, .lead-panel, .contact-panel {
  gap: 15px;
  padding: 22px;
  display: grid;
}

.spec-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 20px;
  margin: 0;
  display: grid;
}

.spec-item {
  border-bottom: 1px solid var(--line);
  gap: 3px;
  padding: 11px 0;
  display: grid;
}

.spec-item dt {
  color: #8e9cb2;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 11.5px;
  font-weight: 700;
}

.spec-item dd {
  margin: 0;
  font-weight: 700;
}

.spec-group {
  gap: 4px;
  display: grid;
}

.spec-group h3 {
  color: var(--accent-bright);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 8px 0 4px;
  font-size: 14px;
  font-weight: 700;
}

.detail-section {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  line-height: 1.75;
}

.detail-section p {
  max-width: 75ch;
}

.trust-grid {
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 16px;
  display: grid;
}

.trust-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  justify-items: start;
  gap: 10px;
  padding: 22px;
  transition: transform .16s, border-color .16s;
  display: grid;
}

.trust-card:hover {
  border-color: #fb923c66;
  transform: translateY(-3px);
}

.trust-card__icon {
  background: var(--accent-soft);
  color: var(--accent-bright);
  border: 1px solid #fb923c59;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 2px;
  display: inline-flex;
}

.trust-card__icon svg {
  width: 24px;
  height: 24px;
}

.trust-card strong {
  font-size: 16px;
  font-weight: 800;
}

.trust-card p {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.steps-grid {
  grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
  gap: 16px;
  display: grid;
}

.step-card {
  background: linear-gradient(170deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  justify-items: start;
  gap: 12px;
  padding: 22px;
  transition: transform .16s, border-color .16s;
  display: grid;
  position: relative;
}

.step-card:hover {
  border-color: #fb923c66;
  transform: translateY(-3px);
}

.step-card__number {
  background: linear-gradient(135deg, var(--accent-bright), var(--accent-deep));
  color: var(--accent-ink);
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  font-size: 15px;
  font-weight: 800;
  display: inline-flex;
  box-shadow: 0 6px 18px #ea580c59;
}

.step-card strong {
  font-size: 16.5px;
  font-weight: 800;
}

.step-card p {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.finance-band {
  background: radial-gradient(500px 280px at 90% 10%, #f9731624, transparent 60%),
    linear-gradient(170deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 28px;
  padding: clamp(26px, 4vw, 44px);
  display: grid;
  position: relative;
  overflow: hidden;
}

.finance-band__copy {
  align-content: start;
  justify-items: start;
  gap: 16px;
  display: grid;
}

.finance-band h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
}

.finance-band p {
  color: #b8c3d4;
  margin: 0;
  line-height: 1.65;
}

.finance-band ul {
  align-content: center;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.finance-band li {
  border-left: 3px solid var(--accent);
  color: #dbe3ee;
  padding-left: 14px;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.55;
}

.finance-band .fine-print {
  color: #7c8aa0;
}

.brand-band {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  transition: transform .16s, box-shadow .16s, border-color .16s;
  display: block;
  overflow: hidden;
}

.brand-band:hover {
  box-shadow: var(--glow-accent);
  border-color: #fb923c8c;
  transform: translateY(-3px);
}

.brand-band img {
  width: 100%;
  display: block;
}

.cta-band {
  background: radial-gradient(620px 320px at 15% 110%, #f9731629, transparent 60%),
    linear-gradient(170deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  justify-items: start;
  gap: 16px;
  padding: clamp(26px, 4vw, 44px);
  display: grid;
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
}

.cta-band p {
  color: #b8c3d4;
  max-width: 640px;
  margin: 0;
  line-height: 1.65;
}

.location-band {
  background: linear-gradient(170deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 24px;
  padding: clamp(24px, 3.4vw, 36px);
  display: grid;
}

.location-band__copy {
  justify-items: start;
  gap: 13px;
  display: grid;
}

.location-band .lead-actions {
  align-content: center;
}

.location-band h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
}

.location-band p {
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}

.docs-checklist {
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.docs-checklist li {
  color: #dbe3ee;
  align-items: start;
  gap: 11px;
  line-height: 1.6;
  display: flex;
}

.docs-checklist li:before {
  color: var(--teal);
  content: "✓";
  flex: none;
  font-weight: 800;
}

.calc {
  gap: 14px;
  display: grid;
}

.calc__row {
  gap: 7px;
  display: grid;
}

.calc__row output {
  font-weight: 700;
}

.calc input[type="range"] {
  accent-color: var(--accent);
  width: 100%;
}

.calc__result {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #070b128c;
  gap: 5px;
  padding: 16px;
  display: grid;
}

.calc__result strong {
  color: var(--accent-bright);
  font-feature-settings: "tnum";
  font-size: 26px;
  font-weight: 800;
}

.calc__result span {
  color: var(--muted);
  font-size: 13px;
}

.lead-form {
  gap: 11px;
  display: grid;
}

.lead-status {
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
}

.contact-grid, .blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  display: grid;
}

.contact-panel--wide {
  grid-column: span 2;
}

.blog-card {
  align-content: start;
  gap: 12px;
  padding: 22px;
  transition: transform .16s, border-color .16s;
  display: grid;
}

.blog-card:hover {
  border-color: #fb923c66;
  transform: translateY(-3px);
}

.blog-card h2, .blog-card h3 {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.25;
}

.blog-card h2 a:hover, .blog-card h3 a:hover {
  color: var(--accent-bright);
}

.blog-card p, .contact-panel p, .vehicle-card p {
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: #c4cedd;
  background: #04070c;
  padding: 48px clamp(16px, 4vw, 48px) 26px;
}

.footer-grid {
  grid-template-columns: 1.3fr repeat(3, 1fr) minmax(250px, 1fr);
  gap: 28px;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
}

.footer-grid h2, .footer-grid h3 {
  color: var(--ink);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 800;
}

.footer-grid a, .footer-grid p {
  color: #8e9cb2;
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  display: block;
}

.footer-grid a:hover {
  color: var(--accent-bright);
}

.footer-legal {
  border-top: 1px solid var(--line);
  color: #64748b;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 20px;
  max-width: 1240px;
  margin: 32px auto 0;
  padding-top: 18px;
  font-size: 12.5px;
  display: flex;
}

.footer-legal a {
  color: #8e9cb2;
}

.footer-legal a:hover {
  color: var(--accent-bright);
}

.footer-anpc {
  margin-top: 16px;
  display: block;
}

.footer-anpc img {
  background: #fff;
  border-radius: 6px;
  width: 250px;
  max-width: 100%;
  height: auto;
  display: block;
}

.cookie-consent {
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: #cbd5e1;
  z-index: 39;
  background: #070b12f0;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  max-width: 330px;
  padding: 10px 12px;
  font-size: 12px;
  display: flex;
  position: fixed;
  bottom: 14px;
  left: 14px;
}

.cookie-consent p {
  flex: 150px;
  margin: 0;
  line-height: 1.4;
}

.cookie-consent a {
  color: #8e9cb2;
  text-decoration: underline;
}

.cookie-consent__actions {
  gap: 6px;
  display: flex;
}

.cookie-consent button {
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
}

.cookie-consent__no {
  border: 1px solid var(--line-strong);
  color: #94a3b8;
  background: none;
}

.cookie-consent__yes {
  background: var(--accent-bright);
  border: 1px solid var(--accent-bright);
  color: #06121f;
}

@media (max-width: 760px) {
  .cookie-consent {
    bottom: calc(88px + env(safe-area-inset-bottom));
    max-width: none;
    left: 10px;
    right: 10px;
  }
}

.mobile-contact-bar {
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-top: 1px solid var(--line-strong);
  padding: 9px 10px calc(9px + env(safe-area-inset-bottom));
  z-index: 40;
  background: #070b12e0;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

.mobile-contact-bar a, .mobile-contact-bar button {
  border-radius: var(--radius-sm);
  min-height: 46px;
  padding: 8px 6px;
  font-size: 13.5px;
}

.rentals-hero {
  padding-bottom: 96px;
  position: relative;
}

.rentals-hero:before {
  content: "";
  pointer-events: none;
  background: radial-gradient(circle at 72% 18%, #f973162e, #0000 34%);
  position: absolute;
  inset: 0;
}

.rentals-hero__grid {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  align-items: end;
  gap: 32px;
  display: grid;
  position: relative;
}

.rentals-hero h1 {
  max-width: 760px;
  margin: 14px 0 18px;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.02;
}

.rentals-hero p {
  color: #b8c3d4;
  max-width: 680px;
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
}

.rentals-hero__panel {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  gap: 8px;
  padding: 22px;
  display: grid;
}

.rentals-hero__panel strong {
  color: var(--accent-bright);
  font-size: 46px;
  line-height: 1;
}

.rentals-hero__panel span {
  color: var(--ink);
  font-weight: 800;
}

.rentals-hero__panel small, .muted-copy {
  color: var(--muted);
  line-height: 1.55;
}

.rental-search {
  grid-template-columns: repeat(2, minmax(180px, 1fr)) auto;
}

.rental-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  align-items: start;
  gap: 24px;
  display: grid;
}

.rental-list {
  min-width: 0;
}

.rental-panel {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  gap: 18px;
  padding: 22px;
  display: grid;
  position: sticky;
  top: 96px;
}

.rental-panel__head h2 {
  margin: 8px 0 0;
  font-size: 24px;
  line-height: 1.18;
}

.rental-form {
  gap: 14px;
  display: grid;
}

.rental-summary {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #070b129e;
  gap: 6px;
  padding: 14px;
  display: grid;
}

.rental-summary span {
  color: var(--muted);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

.rental-summary strong {
  color: var(--accent-bright);
  font-size: 24px;
}

.rental-summary small {
  color: #b8c3d4;
}

.success-note, .error-note {
  border-radius: var(--radius-sm);
  margin: 12px 0 0;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.success-note {
  color: #86efac;
  background: #22c55e1f;
  border: 1px solid #22c55e59;
}

.error-note {
  color: #fecaca;
  background: #f871711f;
  border: 1px solid #f8717159;
}

.vehicle-card__fallback {
  color: var(--accent-bright);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 54px;
  font-weight: 900;
  display: flex;
}

.rental-card .price {
  color: var(--accent-bright);
}

.empty-state {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  justify-items: start;
  gap: 13px;
  padding: 26px;
  display: grid;
}

.empty-state p {
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.detail-hero-image {
  aspect-ratio: 16 / 10;
  background: var(--bg-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.detail-hero-image img, .detail-hero-image video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.detail-gallery {
  gap: 10px;
  display: grid;
}

.thumb-row {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  display: grid;
}

.thumb-row img {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media (max-width: 1080px) {
  .quick-search {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-search .button {
    grid-column: span 2;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-side {
    max-width: 560px;
  }

  .rental-search {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rental-layout, .rentals-hero__grid {
    grid-template-columns: 1fr;
  }

  .rental-panel {
    position: static;
  }
}

@media (max-width: 1180px) {
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .filters-shell, .detail-grid, .contact-grid, .blog-grid, .footer-grid, .finance-band, .location-band {
    grid-template-columns: 1fr;
  }

  .contact-panel--wide {
    grid-column: auto;
  }

  .vehicle-card--list {
    grid-template-columns: 1fr;
  }

  .detail-rail {
    position: static;
  }

  .filters-drawer {
    background: var(--surface);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    max-height: none;
    position: static;
    overflow: visible;
  }

  .filters-drawer__summary {
    color: var(--ink);
    cursor: pointer;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    font-weight: 700;
    list-style: none;
    display: flex;
  }

  .filters-drawer__summary::-webkit-details-marker {
    display: none;
  }

  .filters-drawer__summary:after {
    color: var(--accent-bright);
    content: "▾";
  }

  .filters-drawer[open] .filters-drawer__summary:after {
    content: "▴";
  }

  .filters-drawer .filters-panel {
    border: none;
    border-top: 1px solid var(--line);
    border-radius: 0;
  }
}

@media (max-width: 760px) {
  .mobile-contact-bar {
    display: grid;
  }

  .has-mobile-bar {
    padding-bottom: calc(80px + env(safe-area-inset-bottom));
  }

  .title-band {
    flex-direction: column;
    align-items: start;
  }

  .price-block {
    text-align: left;
    justify-items: start;
  }
}

@media (max-width: 680px) {
  .site-header {
    flex-wrap: wrap;
    gap: 10px;
  }

  .site-nav {
    scrollbar-width: none;
    flex-wrap: nowrap;
    order: 3;
    width: calc(100% + 16px);
    margin: 0 -8px;
    padding: 0 8px;
    overflow-x: auto;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    white-space: nowrap;
  }

  .header-cta {
    margin-left: auto;
  }

  .quick-search {
    grid-template-columns: 1fr;
  }

  .quick-search .button {
    grid-column: auto;
  }

  .section-head {
    flex-direction: column;
    align-items: start;
  }

  .spec-grid, .thumb-row {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-bottom: 88px;
  }

  .price {
    font-size: 21px;
  }

  .gallery__thumbs {
    grid-auto-columns: 90px;
  }
}

.rb-wrap {
  flex-direction: column;
  gap: 22px;
  display: flex;
}

.rb-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
}

.rb-card h2 {
  margin: 0 0 14px;
  font-size: 19px;
  font-weight: 800;
}

.rb-step {
  color: var(--accent-bright);
  letter-spacing: .6px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
}

.rb-search__row {
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: end;
  gap: 14px;
  display: grid;
}

.rb-field label {
  color: var(--muted);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 700;
  display: block;
}

.rb-input, .rb-select {
  box-sizing: border-box;
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  width: 100%;
  color: var(--ink);
  --lightningcss-light: ;
  --lightningcss-dark: initial;
  color-scheme: dark;
  padding: 13px 14px;
  font-size: 15px;
}

.rb-input:focus, .rb-select:focus {
  outline: 2px solid var(--accent-bright);
  border-color: #0000;
}

.rb-trust {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  display: grid;
}

.rb-trust__item {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  display: flex;
}

.rb-trust__ico {
  background: var(--accent-soft);
  width: 30px;
  height: 30px;
  color: var(--accent-bright);
  border-radius: 8px;
  flex: none;
  place-items: center;
  font-weight: 900;
  display: grid;
}

.rb-trust__t {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.rb-trust__s {
  color: var(--muted);
  font-size: 12px;
}

.rb-tabs {
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  display: flex;
}

.rb-tab {
  border: 1px solid var(--line-strong);
  color: var(--muted);
  cursor: pointer;
  background: none;
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 14px;
  font-weight: 700;
}

.rb-tab--active {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent-bright);
}

.rb-cars {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
  display: grid;
}

.rb-car {
  background: var(--bg-2);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--ink);
  text-align: left;
  padding: 0;
  transition: border-color .14s, transform .14s;
  overflow: hidden;
}

.rb-car:hover {
  border-color: #fb923c73;
  transform: translateY(-3px);
}

.rb-car--selected {
  border-color: var(--accent);
}

.rb-car__media {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--surface-2);
  width: 100%;
  display: block;
}

.rb-car__ph {
  aspect-ratio: 16 / 10;
  color: var(--muted);
  background: var(--surface-2);
  place-items: center;
  font-size: 13px;
  display: grid;
}

.rb-car__body {
  padding: 12px 13px;
}

.rb-car__name {
  font-size: 15px;
  font-weight: 800;
}

.rb-car__sub {
  color: var(--muted);
  margin-top: 2px;
  font-size: 12px;
}

.rb-car__specs {
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
  display: flex;
}

.rb-chip {
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 11px;
  font-weight: 700;
}

.rb-car__foot {
  justify-content: space-between;
  align-items: baseline;
  margin-top: 10px;
  display: flex;
}

.rb-car__price {
  color: var(--accent-bright);
  font-size: 17px;
  font-weight: 900;
}

.rb-car__pday {
  color: var(--muted);
  font-size: 12px;
}

.rb-car__pick {
  color: var(--accent-bright);
  font-size: 12px;
  font-weight: 800;
}

.rb-line {
  color: #c7d2e0;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
  display: flex;
}

.rb-line--muted {
  color: var(--muted);
}

.rb-total {
  border-top: 1px solid var(--line);
  color: var(--ink);
  justify-content: space-between;
  margin-top: 8px;
  padding: 12px 0 2px;
  font-size: 19px;
  font-weight: 900;
  display: flex;
}

.rb-line--good {
  color: #34d399;
  font-weight: 700;
}

.rb-hold {
  color: var(--muted);
  border-top: 1px dashed var(--line);
  margin-top: 4px;
  padding-top: 8px;
  font-size: 13px;
}

.rb-hold.rb-line--good {
  color: #34d399;
}

.rb-cdwbox {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-top: 12px;
  padding: 14px;
}

.rb-cdwbox--on {
  border-color: #34d399;
  box-shadow: inset 0 0 0 1px #34d39966;
}

.rb-cdwbox__head {
  cursor: pointer;
  align-items: center;
  gap: 10px;
  display: flex;
}

.rb-cdwbox__head input {
  accent-color: #34d399;
  width: 18px;
  height: 18px;
}

.rb-cdwbox__title {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.rb-cdwbox__deal {
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin: 13px 0;
  display: flex;
}

.rb-cdwbox__col {
  flex-direction: column;
  align-items: center;
  gap: 2px;
  display: flex;
}

.rb-cdwbox__lbl {
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted);
  font-size: 11px;
}

.rb-cdwbox__amt {
  font-size: 21px;
  font-weight: 900;
}

.rb-cdwbox__amt--old {
  color: var(--muted);
  text-decoration: line-through;
}

.rb-cdwbox__amt--new {
  color: #34d399;
}

.rb-cdwbox__sub {
  color: var(--muted);
  font-size: 11px;
}

.rb-cdwbox__arrow {
  color: var(--muted);
  font-size: 22px;
}

.rb-cdwbox__msg {
  color: #9fb3c6;
  font-size: 13px;
  line-height: 1.5;
}

.rb-cdwbox__msg strong {
  color: var(--ink);
}

.rb-cdwbox__msg--on, .rb-cdwbox__msg--on strong {
  color: #34d399;
}

.rb-opt {
  cursor: pointer;
  color: #c7d2e0;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 0;
  font-size: 14px;
  display: flex;
}

.rb-policy {
  color: #9fb3c6;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-top: 8px;
  padding: 13px 15px;
  font-size: 13px;
  line-height: 1.55;
}

.rb-warn {
  color: var(--accent-bright);
  margin-top: 8px;
  font-size: 13px;
}

.rb-form {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 13px;
  display: grid;
}

.rb-check {
  color: #c7d2e0;
  align-items: flex-start;
  gap: 9px;
  margin-top: 14px;
  font-size: 13px;
  display: flex;
}

.rb-check a {
  color: var(--accent-bright);
  font-weight: 700;
}

.rb-err {
  color: #fca5a5;
  border-radius: var(--radius-sm);
  background: #dc262624;
  margin-top: 12px;
  padding: 12px;
  font-size: 14px;
}

.rb-ok {
  color: #86efac;
  border-radius: var(--radius-sm);
  background: #22c55e24;
  padding: 16px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.rb-why {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  display: grid;
}

.rb-why__item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.rb-why__ico {
  font-size: 22px;
}

.rb-why__t {
  margin: 8px 0 4px;
  font-size: 15px;
  font-weight: 800;
}

.rb-why__s {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.rb-faq__item {
  border-bottom: 1px solid var(--line);
}

.rb-faq__item summary {
  cursor: pointer;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 700;
  list-style: none;
}

.rb-faq__item summary::-webkit-details-marker {
  display: none;
}

.rb-faq__item p {
  color: var(--muted);
  margin: 0;
  padding: 0 0 14px;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 720px) {
  .rb-search__row {
    grid-template-columns: 1fr 1fr;
  }

  .rb-search__row .rb-btn-search {
    grid-column: 1 / -1;
  }
}

.rb-card input[type="checkbox"], .rb-card input[type="radio"] {
  accent-color: var(--accent);
  flex: none;
  width: 17px;
  height: 17px;
  margin-top: 1px;
}

.rb-card textarea.rb-input {
  resize: vertical;
  min-height: 64px;
  font-family: inherit;
}

/*# sourceMappingURL=app_globals_0yg4wg8.css.map*/