:root {
  color-scheme: dark;
  --bg: #0f0f12;
  --bg-soft: #17181d;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --text: #f4f0e8;
  --muted: rgba(244, 240, 232, 0.72);
  --gold: #d8af4a;
  --gold-strong: #f2c964;
  --line: rgba(255, 255, 255, 0.11);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(216, 175, 74, 0.18), transparent 32%),
    radial-gradient(circle at 80% 10%, rgba(242, 201, 100, 0.12), transparent 25%),
    linear-gradient(180deg, #101014 0%, #0b0b0e 100%);
  color: var(--text);
}

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

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 88px;
}

.topbar {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 14px 18px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(12, 12, 16, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #1a1407;
  background: linear-gradient(145deg, var(--gold-strong), #b98b25);
  box-shadow: 0 10px 24px rgba(216, 175, 74, 0.28);
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
}

.brand-text small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}

.topnav {
  display: flex;
  justify-content: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.topnav a,
.phone-link {
  transition: color 0.2s ease, opacity 0.2s ease;
}

.topnav a:hover,
.phone-link:hover {
  color: var(--gold-strong);
}

.topbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.phone-link {
  font-weight: 700;
  white-space: nowrap;
  display: inline-block;
  flex: 0 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #1b1406;
  background: linear-gradient(145deg, var(--gold-strong), #c39122);
}

.btn-secondary {
  border-color: rgba(216, 175, 74, 0.35);
  background: rgba(255, 255, 255, 0.04);
}

.btn-dark {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
  padding: 20px 0 14px;
}

.hero-copy,
.hero-card,
.panel,
.cta-strip,
.footer {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
}

.hero-copy {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: clamp(26px, 4vw, 48px);
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 49%, rgba(216, 175, 74, 0.11) 49% 50%, transparent 50% 100%);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(216, 175, 74, 0.12);
  border: 1px solid rgba(216, 175, 74, 0.2);
  color: var(--gold-strong);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.03em;
}

h1 {
  margin-top: 18px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.95;
  max-width: 11ch;
}

.lead {
  max-width: 60ch;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-pills span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
}

.hero-card {
  border-radius: var(--radius-xl);
  padding: 18px;
}

.car-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 420px;
  border-radius: calc(var(--radius-xl) - 6px);
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(242, 201, 100, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(160deg, #19191f, #111114 60%);
}

.car-card__glow {
  position: absolute;
  inset: auto -15% -28% auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216,175,74,0.35), transparent 65%);
  filter: blur(10px);
}

.car-card__tag {
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,0.38);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--gold-strong);
  font-weight: 800;
}

.car-card__title {
  margin-top: 18px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  max-width: 10ch;
}

.car-card p {
  margin: 16px 0 0;
  max-width: 28ch;
  color: var(--muted);
  line-height: 1.65;
}

.car-card__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
  padding-top: 28px;
}

.car-card__stats > div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
}

.car-card__stats strong {
  display: block;
  font-size: 22px;
  color: var(--gold-strong);
}

.car-card__stats span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.stats-grid,
.benefits-grid,
.trust-grid,
.contact-grid {
  display: grid;
  gap: 16px;
}

.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

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

.stat-card,
.benefits-grid article,
.trust-grid article,
.contact-card,
.condition-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.045);
  padding: 20px;
}

.stat-label,
.contact-card span {
  display: block;
  color: var(--gold-strong);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-card strong {
  display: block;
  margin-top: 10px;
  font-size: 24px;
  font-family: "Space Grotesk", sans-serif;
}

.stat-card p,
.benefits-grid p,
.trust-grid p,
.step p,
.contact-card a,
.contact-card .contact-value,
.condition-card p {
  color: var(--muted);
  line-height: 1.65;
}

.contact-card .contact-value {
  font-size: 18px;
  font-weight: 800;
}

.condition-card h3 {
  margin: 12px 0 10px;
  font-size: 22px;
}

.condition-badge {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(216, 175, 74, 0.12);
  border: 1px solid rgba(216, 175, 74, 0.2);
  color: var(--gold-strong);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.condition-card--accent {
  background:
    radial-gradient(circle at top right, rgba(242, 201, 100, 0.12), transparent 32%),
    rgba(255,255,255,0.045);
}

.panel {
  margin-top: 22px;
  padding: clamp(24px, 4vw, 36px);
  border-radius: var(--radius-xl);
}

.panel-accent {
  background:
    radial-gradient(circle at left center, rgba(216, 175, 74, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.03));
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

.section-heading h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
}

.section-note {
  margin: 0;
  max-width: 68ch;
  color: var(--muted);
  line-height: 1.65;
  font-size: 16px;
}

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

.benefits-grid h3,
.trust-grid h3,
.step h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

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

.step {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.045);
  padding: 22px;
}

.step::after {
  content: "";
  position: absolute;
  right: -38px;
  top: -38px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216,175,74,0.18), transparent 68%);
}

.step span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  color: var(--gold-strong);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.cta-strip {
  display: grid;
  grid-template-columns: 1.1fr auto;
  gap: 20px;
  align-items: center;
  margin-top: 22px;
  padding: 26px 28px;
  border-radius: var(--radius-xl);
}

.cta-strip h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  margin-bottom: 8px;
}

.cta-strip p {
  margin: 0;
  color: var(--muted);
}

.cta-strip a {
  color: var(--gold-strong);
  font-weight: 800;
}

.cta-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.contact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-card {
  display: grid;
  gap: 10px;
}

.contact-card a {
  font-size: 18px;
  font-weight: 800;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding: 20px 24px;
  border-radius: 24px;
  color: var(--muted);
}

.footer strong {
  display: block;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
}

.footer p {
  margin: 8px 0 0;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  text-align: right;
}

.mobile-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 30;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(9, 9, 12, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.mobile-bar a {
  display: grid;
  place-items: center;
  min-height: 44px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  font-weight: 800;
}

@media (max-width: 1080px) {
  .topbar {
    grid-template-columns: 1fr;
    border-radius: 28px;
  }

  .topnav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .topbar-actions {
    flex-wrap: wrap;
  }

  .hero,
  .stats-grid,
  .steps,
  .contact-grid,
  .cta-strip {
    grid-template-columns: 1fr;
  }

  .cta-strip__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 18px, 1180px);
    padding-top: 10px;
    padding-bottom: 100px;
  }

  .topbar {
    position: static;
    padding: 16px;
    gap: 14px;
    margin-bottom: 16px;
  }

  .topnav {
    gap: 12px;
    font-size: 13px;
  }

  .topbar-actions {
    width: 100%;
    justify-content: space-between;
  }

  .phone-link {
    width: 100%;
  }

  .hero {
    gap: 16px;
    padding-top: 4px;
  }

  .hero-copy,
  .hero-card,
  .panel,
  .cta-strip,
  .footer {
    border-radius: 22px;
  }

  h1 {
    font-size: clamp(36px, 12vw, 54px);
  }

  .lead {
    font-size: 16px;
  }

  .car-card {
    min-height: 360px;
    padding: 22px;
  }

  .car-card__stats {
    grid-template-columns: 1fr;
  }

  .benefits-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
  }

  .footer-meta {
    text-align: left;
  }

  .mobile-bar {
    display: grid;
  }
}
