:root {
  --ink: #050505;
  --muted: #6f7378;
  --paper: #f6f6f4;
  --white: #ffffff;
  --line: rgba(5, 5, 5, 0.1);
  --red: #0878ff;
  --red-bright: #1590ff;
  --red-deep: #004fb8;
  --silver: #c9ccd0;
  --silver-soft: #eef0f1;
  --graphite: #17191c;
  --shadow: 0 18px 50px rgba(5, 5, 5, 0.1);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

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

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: flex;
  width: min(1120px, calc(100% - 32px));
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.86);
  color: var(--white);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  border-color: rgba(17, 20, 23, 0.12);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
}

.brand {
  display: inline-flex;
  min-width: 138px;
  align-items: center;
}

.brand-logo-shell {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: var(--ink);
  padding: 0;
}

.brand-logo-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.08;
}

.brand small {
  color: currentColor;
  opacity: 0.72;
  font-weight: 700;
}

.brand strong,
.main-nav a,
.primary-btn,
.ghost-btn,
.chip,
h1,
h2,
h3 {
  font-family: Sora, Manrope, system-ui, sans-serif;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  border-radius: 999px;
  padding: 11px 14px;
  color: currentColor;
  font-size: 0.9rem;
  font-weight: 800;
  opacity: 0.86;
  transition: background 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.14);
  opacity: 1;
  transform: translateY(-1px);
}

.site-header.scrolled .main-nav a:hover {
  background: rgba(17, 20, 23, 0.08);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  padding: 128px max(24px, calc((100vw - 1120px) / 2)) 44px;
  background: var(--ink);
  color: var(--white);
  isolation: isolate;
}

.hero > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.hero.hero-ready > img {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.56) 48%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.02) 52%);
}

.hero-content {
  width: min(760px, 100%);
  padding-bottom: 72px;
}

.hero-brand-panel {
  position: absolute;
  top: 142px;
  right: max(24px, calc((100vw - 1120px) / 2));
  width: min(330px, calc(100% - 48px));
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: var(--ink);
  color: var(--ink);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.hero-brand-panel img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 8px;
  background: var(--ink);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red-bright);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 5.35rem;
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 3.55rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.1;
  font-weight: 800;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.28rem);
  line-height: 1.55;
}

.hero-search {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  width: min(900px, 100%);
  margin-top: 28px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

label {
  display: grid;
  gap: 8px;
  color: inherit;
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-search label {
  gap: 4px;
  padding: 8px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-search span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  outline: none;
  padding: 13px 14px;
}

.hero-search select {
  border: 0;
  background: transparent;
  color: var(--white);
  padding: 0;
  font-weight: 900;
}

.hero-search option {
  color: var(--ink);
}

.primary-btn,
.ghost-btn,
.icon-btn,
.chip {
  border: 0;
  cursor: pointer;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 4px;
  background: var(--red);
  color: var(--white);
  padding: 0 20px;
  box-shadow: none;
}

.primary-btn:hover,
.ghost-btn:hover,
.icon-btn:hover,
.chip:hover {
  transform: translateY(-2px);
}

.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  padding: 0 16px;
}

.ghost-btn.light {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.live-card {
  position: absolute;
  right: max(24px, calc((100vw - 1120px) / 2));
  bottom: 48px;
  width: min(310px, calc(100% - 48px));
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.54);
  backdrop-filter: blur(18px);
}

.live-card p,
.live-card small {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.live-card strong {
  display: block;
  margin: 6px 0;
  font-size: 1.35rem;
}

.pulse {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 0 0 rgba(8, 120, 255, 0.6);
  animation: pulse 1.5s infinite;
}

.ticker {
  overflow: hidden;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 34px;
  padding: 13px 0;
  animation: ticker 24s linear infinite;
}

.ticker span {
  white-space: nowrap;
}

.section {
  padding: 96px max(24px, calc((100vw - 1120px) / 2));
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

.intro-band {
  background: var(--paper);
}

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

.feature {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: none;
}

.feature span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 4px;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
}

.feature p,
.request-copy p,
.about-panel p,
.location-copy p,
.showroom-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.vehicles-section {
  background: #ffffff;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.catalog-hero {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: end;
  padding: 150px max(24px, calc((100vw - 1120px) / 2)) 70px;
  background: var(--ink);
  color: var(--white);
}

.catalog-hero-copy {
  max-width: 760px;
}

.catalog-hero-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.catalog-hero-logo {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: var(--ink);
}

.vehicle-detail-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: stretch;
  padding: 140px max(24px, calc((100vw - 1120px) / 2)) 70px;
  background: var(--ink);
  color: var(--white);
}

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

.vehicle-detail-gallery > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  object-fit: cover;
  background: #111;
}

.vehicle-detail-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 10px;
}

.vehicle-detail-thumbs button {
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 6px;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.vehicle-detail-thumbs button.active {
  border-color: var(--red);
}

.vehicle-detail-thumbs img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.vehicle-detail-summary {
  display: grid;
  align-content: center;
  gap: 22px;
  border-left: 5px solid var(--red);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 28px;
}

.vehicle-detail-summary h1 {
  margin-bottom: 0;
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.vehicle-detail-summary > strong {
  color: var(--red-bright);
  font-size: 2rem;
}

.vehicle-detail-summary dl {
  color: var(--white);
}

.vehicle-detail-summary dt {
  color: rgba(255, 255, 255, 0.58);
}

.vehicle-detail-content {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 30px;
  align-items: start;
  background: var(--white);
}

.vehicle-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.vehicle-spec {
  display: grid;
  justify-items: center;
  gap: 6px;
  min-height: 118px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  padding: 18px 12px;
  text-align: center;
}

.vehicle-spec-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: #0c1720;
}

.vehicle-spec-icon svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.vehicle-spec-icon text {
  fill: currentColor;
  stroke: none;
  font-family: var(--display);
  font-weight: 900;
}

.vehicle-spec-icon .dgt-letter {
  font-size: 10px;
}

.vehicle-spec-icon .co2-label {
  font-size: 5px;
}

.vehicle-spec span:not(.vehicle-spec-icon) {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.vehicle-spec strong {
  color: var(--ink);
  font-size: 1.02rem;
}

.vehicle-description {
  margin-top: 24px;
  border-left: 4px solid var(--red);
  background: #f8fafc;
  border-radius: 8px;
  padding: 22px;
}

.vehicle-description h3 {
  margin-bottom: 10px;
}

.vehicle-description p {
  color: var(--muted);
  white-space: pre-line;
}

.vehicles-page-section {
  background: var(--white);
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}

.budget-filter {
  width: min(220px, 100%);
  min-height: 50px;
  border-radius: 4px;
  font-weight: 800;
}

.search-box {
  display: flex;
  min-width: min(460px, 100%);
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9faf8;
}

.search-box span {
  font-size: 1.4rem;
  font-weight: 900;
}

.search-box input {
  border: 0;
  background: transparent;
  padding: 10px 0;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  border-radius: 999px;
  background: #edf0ee;
  color: var(--ink);
  padding: 12px 16px;
}

.chip.active {
  background: var(--red);
  color: var(--white);
}

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

.vehicle-grid.expanded {
  row-gap: 26px;
}

.vehicle-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: none;
  cursor: pointer;
}

.vehicle-card[hidden] {
  display: none;
}

.vehicle-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #dfe5e3;
}

.vehicle-gallery,
.vehicle-gallery-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.vehicle-gallery-image {
  opacity: 0;
  object-fit: cover;
  transition: opacity 0.25s ease, transform 0.45s ease;
}

.vehicle-gallery-image.active {
  opacity: 1;
}

.vehicle-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.vehicle-card:hover .vehicle-gallery-image.active {
  transform: scale(1.05);
}

.vehicle-gallery-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.52);
  color: var(--white);
  cursor: pointer;
  font-weight: 900;
  transform: translateY(-50%);
}

.vehicle-gallery-btn.prev {
  left: 12px;
}

.vehicle-gallery-btn.next {
  right: 12px;
}

.vehicle-gallery-btn:hover {
  background: var(--red);
}

.status {
  position: absolute;
  top: 14px;
  left: 14px;
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.available {
  background: var(--red-bright);
  color: var(--white);
}

.reserved {
  background: var(--silver);
}

.soon {
  background: var(--graphite);
  color: var(--white);
}

.vehicle-body {
  display: grid;
  gap: 18px;
  padding: 20px;
}

.vehicle-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.rent-btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: var(--red);
  color: var(--white);
  padding: 0 16px;
  font-family: Sora, Manrope, system-ui, sans-serif;
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease;
}

.rent-btn:hover {
  background: var(--red-deep);
  transform: translateY(-2px);
}

.vehicle-kicker {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.vehicle-body strong {
  font-size: 1.55rem;
}

dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0;
}

dt,
dd {
  margin: 0;
}

dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

dd {
  font-weight: 900;
}

.showroom {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  align-items: stretch;
  padding: 96px max(24px, calc((100vw - 1120px) / 2));
  background: var(--ink);
  color: var(--white);
}

.showroom-copy {
  align-self: center;
}

.carousel-controls {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}

.icon-btn {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
}

.carousel {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 8px;
  background: #101010;
  border-top: 5px solid var(--red);
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  padding: 34px;
  opacity: 0;
  transform: translateX(16px) scale(0.98);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.slide.active {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.slide h3 {
  position: relative;
  max-width: 520px;
  margin-bottom: 10px;
  font-size: 4.4rem;
  line-height: 0.94;
}

.slide p {
  position: relative;
  max-width: 460px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.slide-tag {
  position: relative;
  width: max-content;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--white);
  color: var(--red);
  padding: 8px 12px;
  font-weight: 900;
}

.request-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
  background: var(--silver-soft);
}

.request-form,
.contact-form,
.review-form,
.drawer-panel {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
  box-shadow: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-note {
  min-height: 20px;
  margin: 0;
  color: var(--red);
  font-weight: 900;
}

.about-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  background: var(--white);
}

.about-panel {
  padding-right: 24px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.brand-showcase {
  display: grid;
  gap: 14px;
}

.brand-showcase > img {
  width: 100%;
  min-height: 220px;
  max-height: 300px;
  object-fit: contain;
  object-position: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: none;
}

.stats div {
  min-height: 150px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  padding: 20px;
}

.stats strong {
  display: block;
  margin-bottom: 20px;
  color: var(--red-bright);
  font-size: 3.3rem;
  line-height: 0.9;
}

.stats span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.location-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  padding: 96px max(24px, calc((100vw - 1120px) / 2));
  background:
    linear-gradient(90deg, var(--red) 0 5px, transparent 5px),
    var(--ink);
  color: var(--white);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact-form {
  color: var(--ink);
}

.reviews-section {
  background: var(--white);
}

.reviews-copy {
  width: min(760px, 100%);
  margin-bottom: 28px;
}

.review-summary {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  padding: 14px 18px;
}

.review-summary > strong {
  color: var(--red);
  font-family: var(--display);
  font-size: 2.7rem;
  line-height: 1;
}

.review-summary span {
  display: grid;
  gap: 4px;
  color: var(--ink);
  font-weight: 900;
}

.review-summary small {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.reviews-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  align-items: stretch;
}

.review-form {
  align-content: start;
}

.star-rating {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 4px;
  margin-top: 8px;
}

.star-rating input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.star-rating label {
  color: #d3d7dc;
  font-size: 2.25rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.16s ease, transform 0.16s ease;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
  color: var(--red);
  transform: translateY(-1px);
}

.review-proof {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  padding: 24px;
}

.review-proof h3 {
  margin-bottom: 0;
}

.review-proof-carousel {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.review-proof-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: translateX(16px) scale(0.98);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.review-proof-slide.active {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.review-proof-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--white);
}

.review-text-slide {
  display: grid;
  place-items: center;
  padding: 28px;
}

.review-screenshot-card {
  display: grid;
  gap: 18px;
  width: min(520px, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 28px;
  box-shadow: 0 18px 50px rgba(17, 20, 23, 0.12);
}

.review-screenshot-card > div {
  display: grid;
  gap: 8px;
}

.review-stars {
  color: var(--red);
  font-size: 1.3rem;
  letter-spacing: 1px;
}

.review-screenshot-card strong {
  color: var(--ink);
  font-size: 1.25rem;
}

.review-screenshot-card p {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.7;
}

.review-screenshot-card small {
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.review-proof-empty {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  min-height: 360px;
  padding: 34px;
  color: var(--muted);
  text-align: center;
}

.review-proof-empty strong {
  color: var(--ink);
  font-size: 1.2rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 26px;
  align-items: start;
  padding: 28px max(24px, calc((100vw - 1120px) / 2));
  background: #080a0c;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer p {
  margin: 0;
  color: var(--white);
  font-weight: 900;
}

.site-footer div {
  display: grid;
  gap: 9px;
}

.site-footer strong {
  color: var(--white);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.site-footer a {
  width: fit-content;
}

.site-footer a:hover {
  color: var(--white);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 35;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 3px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 18px 44px rgba(17, 20, 23, 0.32), 0 0 0 6px rgba(8, 120, 255, 0.16);
  font-size: 0.86rem;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: whatsappBreathe 2.8s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 22px 54px rgba(17, 20, 23, 0.38), 0 0 0 8px rgba(8, 120, 255, 0.2);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.admin-body {
  background: #f4f4f2;
}

.admin-shell {
  min-height: 100vh;
  padding: 32px;
}

.admin-login {
  display: grid;
  gap: 18px;
  width: min(420px, calc(100% - 32px));
  margin: 10vh auto 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 28px;
}

.admin-login img {
  width: 180px;
  border-radius: 6px;
  background: var(--ink);
}

.admin-login h1,
.admin-topbar h1 {
  margin-bottom: 0;
  font-size: 2.4rem;
}

.admin-panel {
  display: grid;
  gap: 22px;
}

.admin-topbar {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 20px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.admin-card {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
}

.admin-card h2 {
  margin-bottom: 2px;
  font-size: 1.45rem;
}

.admin-card-head {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.vehicles-admin-card,
.admin-savebar {
  grid-column: 1 / -1;
}

.admin-vehicles-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 18px;
}

.admin-list {
  display: grid;
  align-content: start;
  gap: 8px;
}

.admin-vehicle-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f7f7f5;
  color: var(--ink);
  padding: 8px;
  text-align: left;
  cursor: pointer;
}

.admin-vehicle-item.active {
  border-color: var(--red);
  background: #eef6ff;
}

.admin-vehicle-item img {
  width: 58px;
  height: 46px;
  border-radius: 4px;
  object-fit: cover;
}

.admin-vehicle-item strong,
.admin-vehicle-item small {
  display: block;
}

.admin-vehicle-item small {
  color: var(--muted);
}

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

.admin-form-section-title {
  margin-top: 6px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  color: var(--red);
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-check {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-check input {
  width: auto;
}

.admin-preview,
.admin-logo-previews img {
  width: 100%;
  max-height: 220px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--ink);
  object-fit: contain;
}

.admin-gallery-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 8px;
}

.admin-gallery-preview img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 6px;
  object-fit: cover;
}

.admin-help,
.admin-empty {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.reviews-admin-card {
  grid-column: 1 / -1;
}

.admin-review-list {
  display: grid;
  gap: 10px;
}

.admin-review-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  padding: 16px;
}

.admin-review-item.approved {
  border-color: rgba(8, 120, 255, 0.34);
  background: #eef6ff;
}

.admin-review-status {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 8px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  padding: 5px 10px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-review-item.approved .admin-review-status {
  background: var(--red);
}

.admin-review-item strong,
.admin-review-item small,
.admin-review-item p {
  display: block;
}

.admin-review-item small {
  margin: 4px 0 8px;
  color: var(--red);
  font-weight: 900;
}

.admin-review-item p {
  margin: 0;
  color: var(--muted);
}

.admin-review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.admin-logo-previews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.admin-logo-previews img {
  height: 110px;
}

.admin-savebar {
  position: sticky;
  bottom: 0;
  z-index: 5;
  display: flex;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  padding: 16px;
  backdrop-filter: blur(14px);
}

.danger {
  color: var(--red);
}

.lead-drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: end;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lead-drawer.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-panel {
  width: min(440px, calc(100% - 24px));
  min-height: 100vh;
  border-radius: 8px 0 0 8px;
  align-content: start;
  transform: translateX(30px);
  transition: transform 0.25s ease;
}

.lead-drawer.open .drawer-panel {
  transform: translateX(0);
}

.drawer-close {
  justify-self: end;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #eef0ec;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.4rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.22s;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 12px rgba(8, 120, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(8, 120, 255, 0);
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes whatsappBreathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: none;
    width: min(320px, 100%);
    flex-direction: column;
    align-items: stretch;
    border-radius: 8px;
    background: rgba(17, 20, 23, 0.94);
    color: var(--white);
    padding: 10px;
  }

  .main-nav.open {
    display: flex;
  }

  .brand {
    min-width: auto;
  }

  .brand-logo-shell {
    width: 56px;
    height: 56px;
  }

  .hero {
    min-height: 860px;
  }

  h1 {
    font-size: 4.35rem;
  }

  h2,
  .slide h3 {
    font-size: 3.05rem;
  }

  .hero-search,
  .feature-grid,
  .vehicle-grid,
  .catalog-hero,
  .vehicle-detail-hero,
  .vehicle-detail-content,
  .site-footer,
  .admin-grid,
  .admin-vehicles-layout,
  .showroom,
  .request-section,
  .about-section,
  .location-section,
  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .catalog-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .budget-filter {
    width: 100%;
  }

  .live-card {
    position: static;
    margin-top: 26px;
  }

  .hero-brand-panel {
    position: static;
    width: min(420px, 100%);
    margin: 22px 0 0;
  }

  .hero-content {
    padding-bottom: 0;
  }

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

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

  .admin-topbar {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .brand small {
    font-size: 0.75rem;
  }

  .brand-logo-shell {
    width: 50px;
    height: 50px;
  }

  .hero {
    min-height: 820px;
    padding-top: 112px;
  }

  h1 {
    font-size: 3.08rem;
  }

  h2,
  .slide h3 {
    font-size: 2.35rem;
  }

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

  .section,
  .catalog-hero,
  .showroom,
  .location-section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .review-proof-carousel,
  .review-proof-empty {
    min-height: 280px;
  }

  .catalog-hero {
    padding-top: 124px;
  }

  .form-row,
  .vehicle-actions,
  .admin-review-item,
  dl {
    grid-template-columns: 1fr;
  }

  .admin-review-actions {
    justify-content: stretch;
  }

  .admin-review-actions .ghost-btn {
    width: 100%;
  }

  .drawer-panel {
    width: 100%;
    border-radius: 0;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .admin-shell {
    padding: 16px;
  }

  .admin-logo-previews {
    grid-template-columns: 1fr;
  }
}
