:root {
  --red: #e50914;
  --red-dark: #b90009;
  --ink: #151515;
  --muted: #606977;
  --line: #e7e9ee;
  --soft: #f6f7f9;
  --white: #ffffff;
  --green: #15803d;
  --green-soft: #eaf7ef;
  --danger: #c91f2a;
  --danger-soft: #fff0f1;
  --whatsapp: #16a34a;
  --instagram: #c13584;
  --phone: #151923;
  --shadow: 0 18px 42px rgba(19, 23, 32, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(231, 233, 238, 0.9);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.section-shell,
.nav-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.nav-shell {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: 158px;
  height: 58px;
  object-fit: contain;
  border-radius: 8px;
  background: #050608;
}

.nav-actions,
.hero-contact,
.final-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-button,
.contact-button,
.quote-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.nav-button {
  padding: 0 16px;
  font-size: 14px;
}

.nav-button-outline {
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
}

.nav-button-solid {
  border: 1px solid var(--red);
  color: var(--white);
  background: var(--red);
}

.nav-button-phone {
  border: 1px solid var(--ink);
  color: var(--white);
  background: var(--ink);
}

.contact-button,
.quote-button {
  width: max-content;
  padding: 0 18px;
  color: var(--white);
  font-size: 15px;
}

.contact-button.whatsapp,
.quote-button {
  background: var(--whatsapp);
  box-shadow: 0 12px 26px rgba(22, 163, 74, 0.18);
}

.contact-button.phone {
  background: var(--phone);
  box-shadow: 0 12px 26px rgba(21, 25, 35, 0.16);
}

.contact-button.instagram {
  background: linear-gradient(135deg, #833ab4, var(--instagram) 46%, #f56040);
  box-shadow: 0 12px 26px rgba(193, 53, 132, 0.18);
}

.nav-button svg,
.contact-button svg,
.quote-button svg,
.spec-item svg,
.status-pill svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  stroke-width: 2.3;
}

.pricing-hero {
  padding: 58px 0 34px;
  background:
    linear-gradient(90deg, rgba(229, 9, 20, 0.07), rgba(229, 9, 20, 0) 44%),
    var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.final-contact h2 {
  margin: 0;
  letter-spacing: 0;
  color: var(--ink);
}

.hero-copy h1 {
  max-width: 760px;
  margin-top: 10px;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.02;
}

.hero-copy p {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.vehicle-section {
  padding: 34px 0 72px;
}

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

.section-heading h2,
.final-contact h2 {
  margin-top: 8px;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.12;
}

.contact-phone {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 800;
}

.contact-phone a {
  color: var(--red-dark);
  font-weight: 950;
}

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

.vehicle-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.vehicle-card.is-full {
  border-color: rgba(201, 31, 42, 0.28);
}

.vehicle-media {
  position: relative;
  display: grid;
  min-height: 220px;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 75% 18%, rgba(229, 9, 20, 0.12), transparent 28%),
    linear-gradient(180deg, #fafafa, #f0f2f5);
}

.vehicle-card.is-full .vehicle-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(255, 255, 255, 0.42);
}

.vehicle-media img {
  width: 100%;
  height: 220px;
  padding: 18px;
  object-fit: contain;
}

.status-pill {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.status-pill.available {
  border: 1px solid rgba(21, 128, 61, 0.18);
  color: var(--green);
  background: var(--green-soft);
}

.status-pill.full {
  border: 1px solid rgba(201, 31, 42, 0.18);
  color: var(--danger);
  background: var(--danger-soft);
}

.vehicle-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.vehicle-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.vehicle-title-row h3 {
  margin: 0;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.2;
}

.model-year {
  flex: 0 0 auto;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--soft);
  color: #303641;
  font-size: 13px;
  font-weight: 900;
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 16px;
}

.spec-item {
  min-width: 0;
  padding: 12px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfbfc;
}

.spec-item span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.spec-item strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.15;
}

.price-panel {
  display: grid;
  gap: 9px;
  margin-top: auto;
  padding: 14px;
  border-radius: 8px;
  background: var(--soft);
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(21, 21, 21, 0.08);
}

.price-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.price-row span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.price-row strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 950;
  text-align: right;
  white-space: nowrap;
}

.price-row.featured strong {
  color: var(--red-dark);
}

.price-row small {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
}

.tax-note {
  margin: 12px 0 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.quote-button {
  width: 100%;
}

.vehicle-card.is-full .quote-button {
  background: #2f343b;
  box-shadow: none;
}

.final-contact {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  background: #fafafa;
}

.final-contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

@media (hover: hover) {
  .nav-button:hover,
  .contact-button:hover,
  .quote-button:hover {
    transform: translateY(-2px);
  }

  .nav-button-outline:hover {
    border-color: rgba(229, 9, 20, 0.3);
    color: var(--red-dark);
  }

  .vehicle-card:hover {
    transform: translateY(-3px);
  }
}

.vehicle-card {
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

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

  .hero-grid,
  .final-contact-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-grid {
    display: block;
  }

  .hero-contact,
  .final-actions {
    margin-top: 24px;
  }
}

@media (max-width: 720px) {
  .section-shell,
  .nav-shell {
    width: min(100% - 24px, 1180px);
  }

  .nav-shell {
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 0;
  }

  .brand-link {
    justify-content: center;
  }

  .brand-logo {
    width: 140px;
    height: 52px;
  }

  .nav-actions,
  .hero-contact,
  .final-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-button,
  .contact-button {
    width: 100%;
  }

  .pricing-hero {
    padding: 36px 0 24px;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .vehicle-section {
    padding: 24px 0 52px;
  }

  .section-heading {
    display: block;
  }

  .vehicle-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .vehicle-media,
  .vehicle-media img {
    height: 205px;
  }

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

  .price-row {
    align-items: flex-start;
  }

  .price-row strong {
    font-size: 16px;
  }

  .final-contact-inner {
    display: block;
  }
}

@media (max-width: 380px) {
  .hero-copy h1 {
    font-size: 32px;
  }

  .vehicle-title-row {
    display: block;
  }

  .model-year {
    display: inline-flex;
    margin-top: 10px;
  }

  .price-row {
    display: block;
  }

  .price-row strong {
    display: block;
    margin-top: 4px;
    text-align: left;
    white-space: normal;
  }
}
