:root {
  --bg: #09090f;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --stroke: rgba(255, 255, 255, 0.1);
  --text: #f7f6f3;
  --muted: rgba(247, 246, 243, 0.72);
  --muted-soft: rgba(247, 246, 243, 0.5);
  --accent: #ff8c42;
  --accent-strong: #ff6a00;
  --accent-soft: rgba(255, 140, 66, 0.2);
  --surface: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.35);
  --radius: 26px;
  --radius-small: 18px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 140, 66, 0.18), transparent 24%),
    radial-gradient(circle at 82% 22%, rgba(255, 106, 0, 0.16), transparent 22%),
    linear-gradient(180deg, #101014 0%, #08080d 100%);
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(9, 9, 15, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.25);
}

.brand span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.brand strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  letter-spacing: 0.01em;
}

.brand em {
  font-style: normal;
  font-size: 12px;
  color: var(--muted-soft);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hours-chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 13px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #ffb36f, var(--accent));
  color: #17120f;
  box-shadow: 0 18px 40px rgba(255, 140, 66, 0.28);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  padding: 52px 0 30px;
}

.hero-copy,
.hero-panel,
.calculator-card,
.quote-card,
.benefit-card,
.mini-card,
.proof-list > div,
.seo-page-card,
.faq-item,
.model-card {
  background: var(--surface);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 36px;
  border-radius: calc(var(--radius) + 8px);
  position: relative;
  overflow: hidden;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto -5% -25% 20%;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 140, 66, 0.24), transparent 60%);
  pointer-events: none;
}

.hero-panel {
  padding: 32px 28px 28px;
  border-radius: calc(var(--radius) + 2px);
}

.eyebrow,
.panel-kicker,
.quote-kicker {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: #ffcb9c;
}

.hero h1,
.section-heading h2,
.hero-panel h2 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 0.96;
}

.hero h1 {
  font-size: clamp(48px, 8vw, 82px);
  max-width: 12ch;
}

.lede,
.section-heading p,
.mini-card p,
.benefit-card p,
.proof-copy p,
.proof-list p,
.faq-item p,
.seo-page-card p {
  color: var(--muted);
  line-height: 1.7;
}

.lede {
  max-width: 60ch;
  font-size: 18px;
  margin: 18px 0 0;
}

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

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.signal-row li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 13px;
}

.hero-note {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.bullet-card-grid,
.benefit-grid,
.seo-page-grid,
.faq-list,
.model-grid {
  display: grid;
  gap: 18px;
}

.bullet-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
}

.mini-card {
  border-radius: 20px;
  padding: 20px;
}

.mini-card strong,
.benefit-card h3,
.faq-item h3,
.seo-page-card strong {
  font-family: "Plus Jakarta Sans", sans-serif;
}

.section-heading {
  max-width: 72ch;
  margin-bottom: 24px;
}

.section-heading h2 {
  font-size: clamp(34px, 5vw, 52px);
}

.model-strip,
.calculator-section,
.benefits,
.local-proof,
.seo-pages,
.faq {
  padding: 40px 0 8px;
}

.model-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.model-card {
  border-radius: 22px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-color: rgba(255, 186, 132, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 181, 118, 0.08), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at top right, rgba(255, 140, 66, 0.24), transparent 36%),
    radial-gradient(circle at bottom left, rgba(255, 220, 188, 0.1), transparent 42%),
    linear-gradient(180deg, rgba(36, 22, 17, 0.92), rgba(20, 12, 10, 0.96));
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 235, 221, 0.06);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.model-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 204, 163, 0.6), transparent);
  opacity: 0.9;
}

.model-card::after {
  content: "";
  position: absolute;
  inset: auto -18% -46% 18%;
  height: 170px;
  background: radial-gradient(circle, rgba(255, 140, 66, 0.28), transparent 62%);
  pointer-events: none;
}

.model-card[data-badge="new"] {
  border-color: rgba(255, 150, 76, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 170, 91, 0.1), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at top right, rgba(255, 140, 66, 0.4), transparent 32%),
    radial-gradient(circle at bottom left, rgba(255, 214, 186, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(44, 24, 17, 0.94), rgba(24, 12, 9, 0.98));
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 140, 66, 0.05),
    inset 0 1px 0 rgba(255, 228, 204, 0.08);
}

.model-card:hover,
.model-card.is-active,
.choice-button.is-active {
  transform: translateY(-2px);
  border-color: rgba(255, 156, 84, 0.5);
  background:
    linear-gradient(180deg, rgba(255, 185, 124, 0.12), rgba(255,255,255,0.05)),
    radial-gradient(circle at top right, rgba(255, 140, 66, 0.42), transparent 30%),
    linear-gradient(180deg, rgba(48, 26, 18, 0.96), rgba(24, 13, 10, 0.98));
  box-shadow:
    0 28px 62px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 140, 66, 0.1);
}

.model-card-top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: var(--muted-soft);
  font-size: 12px;
}

.model-card-top span:first-child {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(255, 220, 188, 0.08);
  border: 1px solid rgba(255, 208, 165, 0.12);
  color: #ffe3cd;
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow: inset 0 1px 0 rgba(255, 244, 234, 0.06);
}

.model-card[data-badge="new"] .model-card-top span:first-child {
  background: linear-gradient(135deg, rgba(255, 167, 83, 0.38), rgba(255, 120, 32, 0.22));
  border-color: rgba(255, 176, 112, 0.34);
  color: #fff2e7;
}

.model-card b {
  display: block;
  margin-top: 12px;
  font-size: 19px;
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.02em;
  color: #fff6ee;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
}

.price-pills {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.price-pill {
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 700;
  color: #f0ddd0;
  letter-spacing: 0.01em;
}

.price-pill-locked {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 214, 186, 0.04));
}

.price-pill-unlocked {
  background: linear-gradient(180deg, rgba(255, 169, 94, 0.18), rgba(255, 122, 45, 0.08));
  border-color: rgba(255, 167, 93, 0.16);
  color: #fff6ef;
}

.model-card.is-active .price-pill,
.model-card:hover .price-pill {
  border-color: rgba(255, 167, 93, 0.2);
  color: #fff3e8;
}

.model-card.is-active .price-pill-unlocked,
.model-card:hover .price-pill-unlocked {
  background: linear-gradient(180deg, rgba(255, 182, 116, 0.24), rgba(255, 128, 48, 0.12));
}

.calculator-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
  align-items: start;
}

.calculator-card,
.quote-card {
  border-radius: var(--radius);
  padding: 26px;
}

.field-group + .field-group {
  margin-top: 20px;
}

.field-group label,
.field-label {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 700;
}

select {
  width: 100%;
  min-height: 56px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  padding: 0 16px;
  font: inherit;
}

option {
  color: #111;
}

.choice-grid {
  display: grid;
  gap: 12px;
}

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

.choice-button {
  min-height: 90px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.choice-button strong {
  display: block;
  font-size: 18px;
}

.choice-button span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.field-note {
  margin: 10px 0 0;
  color: var(--muted-soft);
  font-size: 13px;
}

.is-hidden {
  display: none;
}

.quote-card {
  position: sticky;
  top: 92px;
}

.quote-top h3 {
  margin: 6px 0 8px;
  font-size: clamp(46px, 7vw, 72px);
  font-family: "Plus Jakarta Sans", sans-serif;
}

.quote-top p:last-child {
  color: var(--muted);
}

.quote-breakdown {
  margin: 22px 0 0;
  padding: 0;
}

.quote-breakdown div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.quote-breakdown dt {
  color: var(--muted);
}

.quote-breakdown dd {
  margin: 0;
  font-weight: 800;
}

.quote-meta {
  margin-top: 22px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

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

.quote-meta p + p {
  margin-top: 8px;
}

.quote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.quote-action-note {
  margin: 12px 0 0;
  color: var(--muted-soft);
  font-size: 13px;
  line-height: 1.6;
}

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

.benefit-card {
  border-radius: 24px;
  padding: 24px;
}

.benefit-card span {
  display: inline-flex;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #ffd1ac;
  font-weight: 800;
}

.local-proof {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
}

.proof-list {
  display: grid;
  gap: 16px;
}

.proof-list > div {
  border-radius: 22px;
  padding: 22px;
}

.proof-list strong {
  font-size: 19px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.seo-page-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.seo-page-card,
.faq-item {
  border-radius: 22px;
  padding: 22px;
}

.seo-page-card:hover {
  border-color: rgba(255, 140, 66, 0.35);
}

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

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 56px;
  padding: 26px 0 110px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
}

.footer-inner strong {
  color: var(--text);
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.mobile-cta {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 60;
  width: min(680px, calc(100% - 20px));
  padding: 10px;
  border-radius: 999px;
  background: rgba(7, 7, 12, 0.88);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 50px rgba(0,0,0,0.38);
  display: flex;
}

.mobile-cta a {
  flex: 1 1 100%;
  min-height: 52px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  background: linear-gradient(135deg, #ffb36f, var(--accent));
  color: #17120f;
}

@media (max-width: 1080px) {
  .desktop-nav,
  .hours-chip {
    display: none;
  }

  .hero,
  .calculator-layout,
  .local-proof {
    grid-template-columns: 1fr;
  }

  .quote-card {
    position: static;
  }

  .model-grid,
  .benefit-grid,
  .seo-page-grid,
  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(var(--shell), calc(100% - 22px));
  }

  .header-inner {
    padding: 12px 0;
  }

  .header-actions {
    display: none;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-copy,
  .hero-panel,
  .calculator-card,
  .quote-card,
  .benefit-card,
  .proof-list > div,
  .seo-page-card,
  .faq-item,
  .mini-card,
  .model-card {
    padding: 20px;
    border-radius: 20px;
  }

  .hero h1,
  .section-heading h2 {
    line-height: 1;
  }

  .bullet-card-grid,
  .model-grid,
  .benefit-grid,
  .seo-page-grid,
  .faq-list,
  .two-up {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
  }
}
