:root {
  --bg: #fbfaf7;
  --text: #131313;
  --muted: #65615b;
  --line: #e6dfd2;
  --dark: #111111;
  --gold: #d9a441;
  --gold-dark: #a87415;
  --cream: #f2eadc;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(17, 17, 17, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(251, 250, 247, 0.86);
  border-bottom: 1px solid rgba(230, 223, 210, 0.8);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 36px;
  padding: 0 9px;
  border-radius: 999px;
  color: var(--dark);
  background: linear-gradient(135deg, #f5d17b, var(--gold));
  box-shadow: 0 10px 25px rgba(217, 164, 65, 0.3);
}

.brand-text {
  font-size: 1.24rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--gold-dark);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta {
  padding: 11px 18px;
  background: var(--dark);
  color: var(--white);
  font-size: 0.92rem;
}

.button {
  padding: 14px 22px;
  font-size: 0.98rem;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #f5d17b, var(--gold));
  color: var(--dark);
  box-shadow: 0 16px 35px rgba(217, 164, 65, 0.32);
}

.button-secondary {
  background: var(--white);
  border: 1px solid var(--line);
}

.button-dark {
  background: var(--dark);
  color: var(--white);
  white-space: nowrap;
}

.hero {
  padding: 86px 0 70px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(217, 164, 65, 0.25), transparent 34%),
    linear-gradient(180deg, #fffdf9 0%, var(--bg) 88%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  font-size: 0.78rem;
}

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

h1 {
  font-size: clamp(2.8rem, 7vw, 5.9rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
  margin-bottom: 26px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.hero-text {
  max-width: 650px;
  font-size: 1.18rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 520px;
}

.trust-row div {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.72);
  border-radius: 20px;
  padding: 16px;
}

.trust-row strong {
  display: block;
  font-size: 1.24rem;
  line-height: 1;
}

.trust-row span {
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-card {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(230, 223, 210, 0.9);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.hero-card-top {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  font-weight: 700;
  color: var(--muted);
}

.status-dot {
  width: 12px;
  height: 12px;
  background: #35b66a;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(53, 182, 106, 0.15);
}

.mock-car-card,
.vehicle-card,
.feature-card,
.about-card,
details,
.final-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.mock-car-card {
  overflow: hidden;
}

.mock-image {
  min-height: 260px;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.85);
  font-weight: 800;
  background:
    linear-gradient(135deg, rgba(17,17,17,0.24), rgba(17,17,17,0.58)),
    linear-gradient(135deg, #d9a441, #3c3322 55%, #151515);
}

.mock-content {
  padding: 26px;
}

.mock-label {
  color: var(--gold-dark);
  font-weight: 800;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  margin-bottom: 8px;
}

.mock-content p {
  color: var(--muted);
}

.mock-content a,
.vehicle-body a {
  color: var(--gold-dark);
  font-weight: 800;
}

.section {
  padding: 78px 0;
}

.section-muted {
  background: var(--cream);
}

.intro-strip {
  padding: 42px 0;
  background: var(--dark);
  color: var(--white);
}

.strip-grid {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  align-items: center;
}

.strip-grid p {
  color: rgba(255,255,255,0.72);
  margin: 0;
  max-width: 760px;
}

.strip-grid h2 {
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.vehicle-card {
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(17,17,17,0.06);
}

.vehicle-image {
  min-height: 185px;
  display: flex;
  align-items: end;
  padding: 18px;
  color: var(--white);
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: 1.15rem;
}

.vehicle-image.sonic { background: linear-gradient(145deg, #374151, #9ca3af); }
.vehicle-image.mirage { background: linear-gradient(145deg, #18324a, #6ca4c8); }
.vehicle-image.sienna { background: linear-gradient(145deg, #2f2f2f, #c7b9a7); }
.vehicle-image.jeep { background: linear-gradient(145deg, #4b3515, #d9a441); }

.vehicle-body {
  padding: 22px;
}

.vehicle-body p,
.feature-card p,
.about-grid p,
details p,
.final-card p,
.site-footer p {
  color: var(--muted);
}

.feature-card {
  padding: 24px;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  margin-bottom: 18px;
  background: #fbf0d9;
  color: var(--gold-dark);
  font-weight: 900;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.about-card {
  padding: 32px;
  box-shadow: var(--shadow);
}

.about-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.about-card li + li {
  margin-top: 12px;
}

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

details {
  padding: 22px 24px;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 14px 0 0;
}

.final-cta {
  padding-top: 0;
}

.final-card {
  text-align: center;
  padding: clamp(38px, 6vw, 70px);
  background:
    radial-gradient(circle at top, rgba(217,164,65,0.22), transparent 40%),
    var(--white);
  box-shadow: var(--shadow);
}

.final-card p {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.site-footer {
  background: var(--dark);
  color: var(--white);
  padding: 50px 0 26px;
}

.footer-grid,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: start;
}

.footer-brand {
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255,255,255,0.72);
  font-weight: 700;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.62);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

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

  .hero-card {
    transform: none;
  }

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

  .strip-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .nav {
    min-height: 68px;
  }

  .brand-text {
    font-size: 1.05rem;
  }

  .nav-cta {
    padding: 10px 13px;
    font-size: 0.82rem;
  }

  .hero {
    padding: 54px 0 46px;
  }

  h1 {
    font-size: clamp(2.55rem, 15vw, 4rem);
  }

  .hero-text {
    font-size: 1.04rem;
  }

  .trust-row,
  .fleet-grid,
  .features-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 56px 0;
  }

  .intro-strip {
    padding: 34px 0;
  }

  .footer-grid,
  .footer-bottom {
    flex-direction: column;
  }
}
