:root {
  --bg: #070708;
  --bg-elev: #0f1013;
  --bg-elev-2: #14151a;
  --card: rgba(255, 255, 255, 0.03);
  --card-strong: rgba(255, 255, 255, 0.06);
  --text: #f4f5f7;
  --muted: #a2a8b3;
  --line: rgba(255, 255, 255, 0.13);
  --line-soft: rgba(255, 255, 255, 0.08);
  --accent: #d10028;
  --accent-hover: #a80020;
  --ok: #d0d0d0;
  --radius: 2px;
  --shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

section[id],
#top,
.policy-section[id] {
  scroll-margin-top: 156px;
}

body {
  margin: 0;
  font-family: "Nunito", Inter, "Avenir Next", "SF Pro Text", "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1100px 520px at 50% -22%, rgba(255, 255, 255, 0.05), transparent 60%),
    var(--bg);
}

/* Global centered layout + text across all pages */
main,
section,
.policy-main {
  text-align: center;
}

main h1,
main h2,
main h3,
main h4,
main h5,
main h6,
main p,
main li,
main label,
main small,
main .section-head {
  text-align: center;
}

main ul,
main ol {
  list-style-position: inside;
  padding-left: 0;
  margin-left: 0;
}

/* Keep data tables readable */
main table th,
main table td {
  text-align: left;
}

/* Center all CTA/button-like click targets in content area */
main button,
main .btn,
main a.btn,
main .calc-tab-btn,
main .guide-link,
main .legal-links a {
  display: inline-flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

/* Sections with multiple actions should stack vertically and stay centered */
main .hero-actions,
main .calc-tabs,
main .legal-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.bg-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.5;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus { top: 12px; }

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line-soft);
  background: #070708;
  backdrop-filter: blur(12px);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  gap: 10px;
  padding: 14px 0 16px;
}

.logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  min-width: 0;
  max-width: 100%;
}

.logo-mark {
  height: clamp(76px, 9.6vw, 146px);
  width: auto;
  max-width: min(94vw, 900px);
  display: block;
  filter: drop-shadow(0 3px 16px rgba(0, 0, 0, 0.45));
  /* Trim artifact on the far-right edge of the source image */
  clip-path: inset(0 18px 0 0);
  /* Optical centering compensation for right-edge trim */
  transform: translateX(9px);
}

.logo:focus-visible {
  outline: 2px solid rgba(209, 0, 40, 0.82);
  outline-offset: 4px;
  border-radius: 8px;
}

.logo-text {
  font-size: clamp(14px, 1.3vw, 19px);
  font-weight: 800;
  color: #f0f2f7;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.header-inner > .btn.small {
  justify-self: center;
}

.main-nav a {
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #d4d9e3;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: color-mix(in srgb, var(--bg-elev) 78%, transparent 22%);
  transition: transform .2s ease, border-color .2s ease, color .2s ease, background .2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.hero {
  padding: 48px 0 18px;
  border-bottom: 1px solid var(--line-soft);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: stretch;
}

.eyebrow {
  margin: 0;
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #9ea5b3;
  font-weight: 700;
}

.hero h1 {
  margin: 10px 0 12px;
  max-width: 760px;
  font-size: clamp(2.1rem, 5.3vw, 4rem);
  line-height: .98;
  letter-spacing: -0.03em;
  color: #fff;
}

.lead-copy {
  margin: 0;
  max-width: 700px;
  color: var(--muted);
  line-height: 1.62;
  font-size: clamp(14px, 1.45vw, 17px);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.hero-promise {
  margin: 12px 0 0;
  max-width: 760px;
  font-size: clamp(1.35rem, 3.2vw, 2.2rem);
  line-height: .98;
  letter-spacing: -0.025em;
  color: #fff;
}

.hero-actions {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-stats {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-stats article {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
  box-shadow: var(--shadow);
  padding: 12px;
}

.hero-stats small {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #9ea6b4;
  margin-bottom: 6px;
}

.hero-stats strong { font-size: 15px; }

.hero-drive-wrap {
  margin-top: 16px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #050505;
  box-shadow: var(--shadow);
  padding: 0;
}

.hero-drive-photo {
  display: block;
  width: 100%;
  max-width: 100%;
  height: clamp(180px, 26vw, 260px);
  margin: 0;
  object-fit: cover;
  object-position: center 68%;
  opacity: 1;
}

.hero-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%),
    var(--bg-elev-2);
  padding: 18px;
  box-shadow: var(--shadow);
}

.hero-panel h3 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.01em;
}

.hero-car-photo {
  display: block;
  width: 76%;
  max-width: 76%;
  height: auto;
  margin: 6px auto 10px;
  object-fit: contain;
  border-radius: 10px;
}

.hero-panel-tag {
  margin: 0 0 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #9ea6b4;
  font-weight: 800;
}

.hero-chip-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 10px 0 12px;
  justify-content: center;
  align-items: center;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  letter-spacing: .05em;
  font-weight: 800;
  text-transform: uppercase;
  color: #f1f4fb;
  background: color-mix(in srgb, var(--bg-elev) 70%, transparent 30%);
}

.hero-kpi-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-kpi-row article {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: color-mix(in srgb, var(--bg-elev) 82%, transparent 18%);
  padding: 10px;
}

.hero-kpi-row small {
  display: block;
  color: #9ea6b4;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
}

.hero-kpi-row strong {
  color: #fff;
  font-size: 16px;
}

.hero-visual-stage {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 12px 10px;
  background:
    radial-gradient(120% 90% at 10% 10%, rgba(255, 255, 255, 0.05), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01));
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  right: -56px;
  top: -70px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.09), transparent 64%);
  pointer-events: none;
}

.hero-track {
  display: grid;
  grid-template-columns: 14px 1fr 14px 1fr 14px;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
}

.hero-track .dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.16);
}

.hero-track .dot.is-live {
  background: var(--accent);
  border-color: color-mix(in srgb, var(--accent) 60%, #fff 40%);
  box-shadow: 0 0 14px rgba(209, 0, 40, 0.5);
}

.hero-track .line {
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(209, 0, 40, 0.85), rgba(255, 255, 255, 0.2));
}

.hero-stage-labels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: #d9deea;
  font-weight: 800;
}

/* Homepage-only text centering */
.home-centered-text,
.home-centered-text h1,
.home-centered-text h2,
.home-centered-text h3,
.home-centered-text p,
.home-centered-text small,
.home-centered-text .section-head,
.home-centered-text .service-copy,
.home-centered-text .mini-note,
.home-centered-text .concierge-fineprint,
.home-centered-text .form-help,
.home-centered-text .payment-state,
.home-centered-text .disclaimer,
.home-centered-text .form-status,
.home-centered-text .faq-list details,
.home-centered-text .review-card {
  text-align: center;
}

.home-centered-text .service-list {
  list-style-position: inside;
  padding-left: 0;
  text-align: center;
}

@media (min-width: 1024px) {
  .hero h1 {
    white-space: nowrap;
    max-width: none;
  }
}

.quick-path {
  padding: 48px 0;
  border-bottom: 1px solid var(--line-soft);
}

.path-grid,
.steps,
.concierge-proof,
.concierge-roadmap,
.concierge-benefits,
.concierge-how-grid,
.reviews-grid,
.services .service-grid {
  display: grid;
  gap: 12px;
}

.path-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.concierge-proof,
.concierge-roadmap,
.concierge-how-grid,
.reviews-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.concierge-benefits { grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 12px 0; }
.services .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.concierge-roadmap {
  grid-template-columns: minmax(0,1fr) 64px minmax(0,1fr) 64px minmax(0,1fr) 64px minmax(0,1fr);
  align-items: center;
}

.path-grid article,
.steps article,
.concierge-proof article,
.concierge-roadmap article,
.concierge-benefits article,
.concierge-how-grid article,
.review-card,
.service-card,
.card,
.legal-compact,
.policy-section,
.upload-box,
.purchase-box,
.faq-list details {
  border: 1px solid #2f2f2f;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.8);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  transition: transform .22s ease, border-color .22s ease;
}

.path-grid article:hover,
.steps article:hover,
.concierge-proof article:hover,
.concierge-roadmap article:hover,
.service-card:hover,
.review-card:hover,
.faq-list details:hover {
  transform: translateY(-1px) scale(1.008);
  border-color: rgba(255, 255, 255, 0.24);
}

.path-grid article,
.steps article,
.concierge-proof article,
.concierge-roadmap article,
.concierge-benefits article,
.concierge-how-grid article,
.review-card,
.service-card,
.policy-section,
.upload-box,
.purchase-box { padding: 14px; }

.concierge-roadmap,
.concierge-benefits,
.services .service-grid {
  align-items: stretch;
}

.concierge-roadmap article,
.concierge-benefits article,
.service-card {
  height: 100%;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.roadmap-link {
  position: relative;
  height: 24px;
}

.roadmap-track {
  position: absolute;
  left: 6px;
  right: 6px;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(255,255,255,0.2), rgba(255,255,255,0.65), rgba(255,255,255,0.2));
  border-radius: 999px;
}

.roadmap-car {
  position: absolute;
  top: 50%;
  left: 6px;
  width: 18px;
  height: 10px;
  transform: translateY(-50%);
  border-radius: 10px 10px 5px 5px;
  background: linear-gradient(180deg, #ffffff, #d8dbe4);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.22), 0 0 10px rgba(209, 0, 40, 0.3);
  animation: roadmapDrive 2.4s ease-in-out infinite;
}

.roadmap-car::before,
.roadmap-car::after {
  content: "";
  position: absolute;
  bottom: -3px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #13161d;
}

.roadmap-car::before { left: 3px; }
.roadmap-car::after { right: 3px; }

@keyframes roadmapDrive {
  0% { transform: translate(0, -50%); opacity: .85; }
  50% { transform: translate(34px, -50%); opacity: 1; }
  100% { transform: translate(52px, -50%); opacity: .85; }
}

.path-grid small,
.toggle-label,
.concierge-proof small,
.concierge-roadmap small {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 11px;
  color: #9ca4b4;
  font-weight: 800;
}

.path-grid h3,
.steps h3,
.concierge-roadmap h3,
.service-card h3,
.concierge-how h3,
.reviews-block h3,
.section-head h2,
.policy-section h3 {
  margin: 6px 0 8px;
  color: #fff;
}

.path-grid p,
.steps p,
.section-head p,
.service-copy,
.concierge-roadmap p,
.concierge-benefits p,
.service-list,
.concierge-how-grid p,
.concierge-proof p,
.review-card p,
.policy-section p,
.legal-compact p,
.muted-copy,
.mini-note,
.faq-list p,
.payment-state,
.form-help,
.form-status,
.footer-inner p {
  color: var(--muted);
  line-height: 1.56;
}

.path-grid a,
.footer-inner a,
.legal-links a {
  color: #f0f3fb;
  text-decoration: none;
  font-weight: 700;
}

.how-it-works,
.tool-section,
.services,
.policy-main {
  padding: 48px 0;
}

.concierge-request {
  margin: 14px 0 16px;
}

.concierge-request .section-head {
  margin-bottom: 8px;
}

.calc-tabs {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg-elev-2) 82%, transparent 18%);
  box-shadow: var(--shadow);
}

.calc-quick-tabs {
  position: sticky;
  top: 132px;
  z-index: 25;
  padding: 10px 0 8px;
  margin-top: 6px;
}

.calc-consult-hook {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.calc-consult-hook p {
  margin: 0;
  max-width: 720px;
}

.calc-tab-btn {
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg-elev) 84%, transparent 16%);
  color: #d8deea;
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, color .2s ease, background .2s ease;
}

.calc-tab-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
}

.calc-tab-btn.is-active {
  color: #fff;
  border-color: var(--accent);
  background: var(--accent);
}

.card {
  padding: 20px;
  border-radius: var(--radius);
}

.section-head.center { text-align: center; }

.lease-type-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  flex-wrap: wrap;
}

.toggle-pill input { position: absolute; opacity: 0; pointer-events: none; }

.toggle-pill span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--card);
  color: #d8deea;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.toggle-pill span strong { color: transparent; }

.toggle-pill input:checked + span {
  border-color: color-mix(in srgb, var(--accent) 58%, #fff 42%);
  background: color-mix(in srgb, var(--accent) 20%, var(--bg-elev-2) 80%);
  color: #fff;
}

.toggle-pill input:checked + span strong { color: #fff; }

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

label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #d8dde8;
}

input, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 11px;
  background: var(--bg-elev);
  color: #f3f6fd;
  outline: none;
}

input::placeholder { color: #7d8594; }

input:focus, select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(209, 0, 40, 0.16);
}

.results {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.metric {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  padding: 11px;
}

.metric small {
  display: block;
  color: #9ea6b4;
  margin-bottom: 6px;
}

.metric strong { font-size: 1.1rem; color: #fff; }

.subhead { margin: 16px 0 10px; color: #fff; }

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
}

table { width: 100%; border-collapse: collapse; min-width: 620px; }

th, td {
  border-bottom: 1px solid var(--line-soft);
  padding: 9px;
  font-size: 13px;
  text-align: left;
  color: #d3d9e5;
}

th {
  background: var(--bg-elev-2);
  color: #f4f6fb;
}

.concierge-how {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
  padding: 14px;
  margin: 0 0 12px;
}

.concierge-how-grid span,
.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 22%, #000 78%);
  color: #fff;
  font-weight: 800;
  margin-bottom: 8px;
}

.concierge-fineprint,
.disclaimer {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: #d0d0d0;
  padding: 10px;
  font-size: 12px;
  line-height: 1.45;
}

.service-list {
  margin: 0 0 12px;
  padding-left: 0;
  list-style-position: inside;
  text-align: center;
}

.payment-state { margin: 9px 0 0; font-size: 12px; font-weight: 700; color: #d0d0d0; }
.payment-state { margin: 9px 0 0; font-size: 12px; font-weight: 700; color: #d0d0d0; }
.payment-state.paid { color: #ffffff; }

.paypal-wrap { margin-top: 10px; }
.hidden { display: none; }
.admin-only { display: none; }
body.admin-mode .admin-only { display: block; }
.form .full { grid-column: 1 / -1; }

.simple-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.guide-banner {
  margin: 10px 0 14px;
  display: flex;
  justify-content: center;
}

.guide-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  background: color-mix(in srgb, var(--bg-elev) 84%, transparent 16%);
}

.guide-link:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

.service-card .service-list {
  min-height: 80px;
}

.service-card .purchase-box {
  margin-top: auto;
}

.service-card .form.simple-stack {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card .form-status {
  min-height: 38px;
}

.service-card .form.simple-stack .btn {
  margin-top: auto;
}

.allocation-roadmap {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  margin: 6px 0 8px;
}

.allocation-step {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 12px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
}

.allocation-step h3 {
  margin: 0;
  font-size: 16px;
  color: #fff;
}

.allocation-arrow {
  font-size: 24px;
  color: #fff;
  opacity: 0.8;
  font-weight: 800;
}

.allocation-hero-car {
  display: block;
  width: min(820px, 100%);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  margin: 12px auto 0;
  border-radius: 12px;
}

.allocation-page {
  overflow-x: hidden;
}

.allocation-page .hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.allocation-page .hero-grid > div,
.allocation-page .hero-grid > .hero-panel,
.allocation-page .card {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.allocation-page .hero .container {
  width: min(980px, 92vw);
  margin-left: auto;
  margin-right: auto;
}

.allocation-page .hero h1,
.allocation-page .hero .lead-copy {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.allocation-page .allocation-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.allocation-page .allocation-hero-title {
  width: min(760px, 100%);
  text-align: center !important;
  margin: 10px auto 12px !important;
}

.allocation-page .allocation-hero-copy .lead-copy {
  width: min(760px, 100%);
}

/* Keep allocation hero title centered and wrapping naturally */
.allocation-page .hero h1 {
  white-space: normal !important;
  max-width: 760px !important;
}

.allocation-page .hero-actions .btn,
.allocation-page .btn {
  max-width: 100%;
  white-space: normal;
  text-wrap: balance;
}

.allocation-page .hero-actions .btn {
  width: min(560px, 100%);
}

.allocation-page .hero-panel {
  text-align: center;
  padding: 16px;
}

.allocation-page .hero-panel ul {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.legal-compact {
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.legal-links {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.legal-links a {
  border: 1px solid var(--line);
  background: var(--bg-elev);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 12px;
}

.site-footer {
  margin-top: 6px;
  border-top: 1px solid var(--line-soft);
  background: color-mix(in srgb, var(--bg-elev) 86%, #0a0b0f 14%);
}

.footer-inner {
  padding: 14px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-counter-row {
  padding: 0 0 14px;
  display: flex;
  justify-content: center;
}

.viewer-counter {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8f97a6;
  opacity: 0.9;
}

.policy-main { padding: 16px 0 24px; }
.policy-card { max-width: 980px; }

.btn {
  border-radius: 999px;
  padding: 11px 15px;
  font-weight: 800;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn.small { padding: 8px 11px; font-size: 12px; }

.btn-primary {
  color: #fff;
  background: var(--accent);
}

.btn-primary:hover { background: var(--accent-hover); }

.btn-dark {
  color: #fff;
  background: #1a1d24;
  border-color: var(--line);
}

.btn-dark:hover { background: #242833; }

.btn-outline {
  color: #f2f5fc;
  background: transparent;
  border-color: var(--line);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.05);
}

.toast {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 50;
  border: 1px solid var(--line);
  background: #0f1218;
  color: #f1f4fa;
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: var(--shadow);
  font-weight: 700;
}

.form-help {
  margin: 12px 0 14px;
  padding: 10px 12px;
  border-radius: 11px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
}

.form-status {
  margin: 0;
  padding: 9px 10px;
  border-radius: 10px;
  font-size: 13px;
  border: 1px dashed var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.form-status.success {
  background: rgba(209, 0, 40, 0.12);
  color: #ffffff;
  border-color: rgba(209, 0, 40, 0.42);
}

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

.faq-list details { padding: 12px 14px; }

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  color: #f3f6fc;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }

.section-animate {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

.section-animate.in-view { opacity: 1; transform: translateY(0); }

@media (max-width: 1140px) {
  .hero-grid { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr 1fr; }
  .results { grid-template-columns: 1fr 1fr; }
  .path-grid,
  .steps,
  .concierge-proof,
  .concierge-roadmap,
  .concierge-benefits,
  .concierge-how-grid,
  .reviews-grid,
  .services .service-grid { grid-template-columns: 1fr; }

  .roadmap-link { display: none; }
}

@media (max-width: 860px) {
  .main-nav {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    max-width: 100%;
    padding-bottom: 2px;
  }
  .header-inner { gap: 0; }

  .calc-tabs {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .calc-quick-tabs {
    top: 98px;
  }

  .calc-tab-btn {
    flex: 0 1 auto;
    text-align: center;
  }
}

@media (max-width: 760px) {
  .grid,
  .results,
  .services .service-grid { grid-template-columns: 1fr; }
  .header-inner { gap: 0; }
  .logo-mark { height: clamp(72px, 19vw, 114px); max-width: 94vw; }
  .hero-kpi-row { grid-template-columns: 1fr; }
  .calc-quick-tabs { top: 88px; }
  .allocation-roadmap {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .allocation-arrow { display: none; }
}

/* ============================================
   Luxury theme pass — editorial monochrome
   Oswald display / Nunito body, champagne accent
   ============================================ */

h1, h2, h3,
.hero h1,
.allocation-page .hero h1,
.section-head h2,
.section-head h3 {
  font-family: "Oswald", "Avenir Next Condensed", "Arial Narrow", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.hero h1,
.allocation-page .hero h1 {
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.14;
}

h4, h5, h6 { font-family: "Oswald", "Avenir Next Condensed", sans-serif; font-weight: 500; letter-spacing: 0.04em; }

.lead-copy, p, li, label { font-weight: 400; }

.eyebrow,
p.eyebrow,
.section-head .eyebrow,
.hero-panel-tag,
p.hero-panel-tag {
  color: var(--accent);
  letter-spacing: 0.3em;
  font-weight: 600;
}

.btn {
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  font-size: 12px;
  padding: 13px 22px;
}
.btn.small { padding: 9px 14px; font-size: 11px; }

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
}

.btn-outline {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-dark {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
}

.main-nav a {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
}

.hero-stats article small,
.hero-kpi-row article small {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

input, select, textarea {
  border-radius: 2px !important;
}

.card,
.service-card,
.review-card,
.concierge-request {
  border-radius: 2px;
}

/* Luxury pass refinements */
.btn { text-decoration: none; }

.main-nav a {
  border: 0;
  background: transparent;
  border-radius: 0;
  padding: 8px 10px;
  color: #cfd3da;
}
.main-nav a:hover,
.main-nav a.active {
  transform: none;
  color: var(--accent);
  background: transparent;
}

.hero-stats article,
.hero-kpi-row article,
.hero-drive-wrap,
.hero-panel,
.hero-visual-stage,
.path-grid article,
.concierge-proof article,
.concierge-benefits article,
.faq-list details,
.upload-box {
  border-radius: 2px;
}

.skip-link { border-radius: 2px; }

/* PSMP toggle button active state */
.psmp-toggle { width: 100%; }
.psmp-toggle.is-on {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
#l-psmp-price[readonly] { font-weight: 700; }
