:root {
  --navy: #0b1220;
  --navy-2: #111b2e;
  --navy-3: #17233a;
  --ink: #0f172a;
  --muted: #5b677a;
  --line: #e6ebf2;
  --paper: #ffffff;
  --soft: #f7f8fb;
  --orange: #ff5722;
  --orange-2: #ff6b35;
  --red: #e11d2e;
  --green: #22c55e;
  --taken: #94a3b8;
  --shadow: 0 18px 50px rgba(11, 18, 32, 0.1);
  --radius: 14px;
  --header-h: 88px;
  --font-display: "Archivo", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  margin: 0 0 0.5em;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.1rem, 4.4vw, 3.5rem); font-weight: 900; }
h2 { font-size: clamp(1.75rem, 3vw, 2.4rem); font-weight: 800; color: var(--ink); }
h3 { font-size: 1.15rem; font-weight: 700; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.center { text-align: center; }

.section-kicker {
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  margin-bottom: 0.6rem;
}

.section-lead {
  max-width: 720px;
  margin: 0 auto 2.4rem;
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-lead.light { color: #c5cddb; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 16px 36px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}

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

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 87, 34, 0.28);
}

.btn-primary:hover { background: #f04818; }

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.35);
}

.btn-outline {
  background: #fff;
  color: var(--red);
  border-color: var(--red);
}

.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  min-height: var(--header-h);
  padding: 10px 24px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 20px;
  align-items: center;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark svg { width: 46px; height: 46px; }

.logo-type { display: flex; flex-direction: column; line-height: 1; }
.logo-type strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.logo-type strong span { color: var(--red); }
.logo-type em {
  font-style: normal;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #334155;
  font-weight: 700;
  margin-top: 4px;
}

.header-trust {
  display: flex;
  justify-content: center;
  gap: 28px;
  align-items: center;
}

.wreath {
  display: grid;
  justify-items: center;
  line-height: 1.1;
  border: 2px solid #d4af37;
  border-radius: 50%;
  width: 86px;
  height: 86px;
  place-content: center;
  color: #8a6d1b;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
}
.wreath-stars { color: #e0b422; font-size: 0.7rem; letter-spacing: -1px; }
.wreath-num { font-size: 0.95rem; color: var(--ink); }

.bbb-chip {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.75rem;
}
.bbb-chip b { display: block; }
.bbb-chip small { color: var(--muted); }
.bbb-grade {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #1d4ed8;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.05rem;
}

.header-contact { text-align: right; }
.header-contact .phone {
  display: block;
  color: var(--red);
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  font-family: var(--font-display);
}
.header-contact .email {
  color: #2563eb;
  font-size: 0.82rem;
  text-decoration: none;
}

.langs { display: flex; gap: 6px; justify-content: flex-end; margin-top: 4px; }
.lang {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
}
.lang.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }

.header-cta {
  display: none;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 8px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
}

/* Hero */
.hero {
  background: radial-gradient(1200px 500px at 80% 20%, #1c2b4a 0%, var(--navy) 55%);
  color: #fff;
  padding: 64px 24px 72px;
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  color: var(--orange-2);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 14px;
}

.hero h1 { margin-bottom: 16px; }
.lede { font-size: 1.12rem; color: #d7deea; max-width: 36em; }

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

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  list-style: none;
  margin: 0;
}
.hero-pills li {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.8rem;
  color: #e2e8f0;
}

.video-card {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: #000;
  box-shadow: 0 30px 60px rgba(0,0,0,.35);
}
.video-card img { width: 100%; height: 360px; object-fit: cover; filter: brightness(.82); }
.video-card figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,.75));
  color: #fff;
  text-align: left;
}
.video-card figcaption b { display: block; font-family: var(--font-display); }
.video-card figcaption span { font-size: 0.85rem; opacity: .85; }

.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.play-btn::after {
  content: "";
  position: absolute;
  left: 29px; top: 24px;
  border-style: solid;
  border-width: 13px 0 13px 22px;
  border-color: transparent transparent transparent #fff;
}
.play-btn.sm { width: 56px; height: 56px; }
.play-btn.sm::after { left: 22px; top: 18px; border-width: 10px 0 10px 16px; }

/* Trust bar */
.trust-bar {
  background: #fff;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item strong { display: block; font-size: 0.88rem; }
.trust-item span { font-size: 0.78rem; color: var(--muted); }
.stars { color: #e0b422; }

.g-mark, .bbb-mark, .sa-mark, .yr-mark {
  width: 48px; height: 48px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #fff;
}
.g-mark { background: #4285f4; }
.bbb-mark { background: #1d4ed8; font-size: 0.72rem; }
.sa-mark { background: #16a34a; }
.yr-mark { background: var(--navy); }

/* Apply */
.apply-wrap {
  background: var(--navy);
  padding: 56px 24px 40px;
}

.apply-card {
  max-width: 1140px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
}

.apply-copy { padding: 40px 36px; }
.apply-copy h2 em { color: var(--red); font-style: normal; }

.direct-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0;
}
.direct-line small { display: block; color: var(--muted); font-size: 0.78rem; }
.direct-line a {
  color: var(--red);
  font-weight: 800;
  font-size: 1.35rem;
  text-decoration: none;
  font-family: var(--font-display);
}

.phone-orb, .icon-orb {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.phone-orb svg { width: 22px; }
.icon-orb { font-size: 1.2rem; margin: 0 auto 12px; }
.icon-orb.sm { width: 42px; height: 42px; margin: 0 0 12px; font-size: 1rem; }

.apply-points {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}
.apply-points li { padding: 6px 0 6px 22px; position: relative; }
.apply-points li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.lead-form {
  padding: 32px 32px 28px;
  background: var(--soft);
  border-left: 1px solid var(--line);
}
.lead-form h3 { margin-bottom: 16px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.lead-form label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 12px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px 12px;
  border: 1px solid #d5dde8;
  border-radius: 10px;
  background: #fff;
  outline: none;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.15);
}

.lead-form input.is-invalid { border-color: var(--red); }

.check {
  display: flex !important;
  align-items: center;
  gap: 10px;
  font-weight: 500 !important;
}
.check input { width: auto; margin: 0; }

.form-fine { font-size: 0.75rem; color: var(--muted); text-align: center; margin-top: 10px; }

.form-success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  padding: 14px;
  border-radius: 10px;
  margin-bottom: 12px;
  font-weight: 600;
}

.disclaimer {
  max-width: 900px;
  margin: 28px auto 0;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  padding: 18px 22px;
  color: #b7c0ce;
}
.disclaimer h4 {
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.disclaimer p { font-size: 0.82rem; }

/* Intro / next */
.intro, .next-step, .stats-section, .cta-band, .benefits, .path, .compare, .territory, .services, .media, .stories, .invest, .faq,
.fit, .models, .econ, .calc-section, .flow, .founder, .owners, .fees, .finance, .discovery {
  padding: 80px 24px;
}

.intro, .next-step, .benefits, .territory, .faq, .fit, .models, .fees, .discovery, .founder { background: #fff; }
.stats-section, .cta-band, .path, .compare, .services, .media, .stories, .calc-section, .flow, .owners, .finance { background: var(--soft); }
.invest { background: #fff; }

.split {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.rule-copy {
  border-left: 3px solid var(--red);
  padding-left: 18px;
  color: var(--muted);
}

.photo-card {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.photo-card img { width: 100%; height: 380px; object-fit: cover; }
.photo-card img,
.service.featured img,
.story img,
.video-card img {
  background: #dbe3ee;
}
.photo-card figcaption {
  padding: 12px 16px;
  font-size: 0.85rem;
  color: var(--muted);
  background: #fff;
}

.stats-section h2, .cta-band h2, .benefits h2, .path h2, .compare h2, .territory h2, .services h2, .media h2, .stories h2, .invest h2, .faq h2, .market h2,
.fit h2, .models h2, .econ h2, .calc-section h2, .flow h2, .owners h2, .fees h2, .finance h2, .discovery h2 {
  text-align: center;
}

.stat-grid, .benefit-grid, .path-grid, .media-grid, .story-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

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

.stat-card, .benefit-grid article, .cta-panel, .path-grid li {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  padding: 28px 22px;
  text-align: center;
}

.stat-card b {
  display: block;
  color: var(--red);
  font-size: 3rem;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-card span { color: var(--muted); font-weight: 600; }

.cta-panel { max-width: 720px; margin: 0 auto; padding: 36px 24px; }
.cta-panel p { color: var(--muted); margin-bottom: 16px; }

.benefit-grid { grid-template-columns: repeat(4, 1fr); }
.benefit-grid article { text-align: left; }
.benefit-grid p { color: var(--muted); font-size: 0.94rem; }

.path-grid {
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  padding: 0;
  counter-reset: none;
}
.path-grid li { text-align: left; }
.path-grid span {
  color: var(--red);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
}
.path-grid p { color: var(--muted); font-size: 0.92rem; }

/* Market */
.market {
  background: var(--navy);
  color: #fff;
  padding: 80px 24px;
}
.market h2 em { color: var(--red); font-style: normal; }

.market-grid {
  max-width: 1100px;
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.market-grid blockquote,
.win-card {
  background: var(--navy-3);
  border-radius: 16px;
  padding: 28px;
  margin: 0;
}

.market-grid blockquote {
  font-size: 1.25rem;
  line-height: 1.45;
  font-weight: 600;
}
.market-grid blockquote em { color: var(--red); font-style: italic; }

.win-card ol { list-style: none; padding: 0; margin: 18px 0 0; }
.win-card li { display: flex; gap: 14px; margin-bottom: 16px; }
.win-card li span {
  color: var(--red);
  font-weight: 900;
  font-family: var(--font-display);
}
.win-card h4 { margin: 0 0 4px; color: #fff; }
.win-card p { color: #c5cddb; font-size: 0.92rem; }

.kpi-row {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.kpi-row div {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 18px;
  text-align: center;
}
.kpi-row b {
  display: block;
  color: var(--orange-2);
  font-size: 1.8rem;
  font-family: var(--font-display);
}
.kpi-row span { color: #c5cddb; font-size: 0.88rem; }

.compare-table, .invest-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
}

.compare-table th, .compare-table td,
.invest-table th, .invest-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.compare-table thead th { background: var(--navy); color: #fff; font-weight: 700; }
.compare-table thead th.hl,
.compare-table td.hl { background: #fff4ef; color: var(--ink); font-weight: 700; }
.compare-table thead th.hl { background: var(--orange); color: #fff; }

.table-wrap {
  max-width: 1100px;
  margin: 0 auto;
  overflow-x: auto;
  box-shadow: var(--shadow);
  border-radius: 14px;
}

.territory-layout {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.map-panel {
  background: var(--soft);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--line);
}

.map-legend {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: var(--muted);
}
.dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  margin-right: 6px;
}
.dot.open { background: #16a34a; }
.dot.taken { background: var(--taken); }

.us-map {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  gap: 6px;
}

.state-cell {
  border: 0;
  border-radius: 8px;
  padding: 10px 4px;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  background: #dcfce7;
  color: #166534;
}
.state-cell.taken {
  background: #e2e8f0;
  color: #64748b;
  cursor: default;
}
.state-cell.is-active { outline: 2px solid var(--orange); background: #bbf7d0; }

.territory-side {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.avail-count { color: var(--muted); }
.avail-count b {
  display: block;
  font-size: 2.6rem;
  color: var(--red);
  font-family: var(--font-display);
  line-height: 1;
}

.market-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}
.market-chips li {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.8rem;
  font-weight: 600;
}

.service-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  grid-template-rows: auto auto;
  gap: 18px;
}

.service {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(15,23,42,.06);
}
.service.featured {
  grid-row: span 2;
  padding: 0;
  overflow: hidden;
}
.service.featured img { height: 220px; width: 100%; object-fit: cover; }
.service.featured div { padding: 24px; }
.service ul { margin: 0; padding-left: 18px; color: var(--muted); }
.service p { color: var(--muted); }

.media-grid { grid-template-columns: repeat(4, 1fr); }
.media-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(15,23,42,.06);
  display: flex;
  flex-direction: column;
  min-height: 220px;
}
.outlet {
  color: var(--red);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.media-card h3 { font-size: 1rem; flex: 1; }
.read { color: #2563eb; font-size: 0.85rem; font-weight: 600; }

.story-grid { grid-template-columns: repeat(4, 1fr); }
.story {
  position: relative;
  border: 0;
  padding: 0 0 16px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(15,23,42,.06);
}
.story img { height: 170px; width: 100%; object-fit: cover; }
.story .play-btn { top: 58px; bottom: auto; }
.dur {
  position: absolute;
  top: 140px;
  right: 10px;
  background: rgba(0,0,0,.7);
  color: #fff;
  font-size: 0.72rem;
  padding: 2px 6px;
  border-radius: 4px;
}
.story h3, .story p { padding: 0 14px; }
.story p { color: var(--muted); font-size: 0.88rem; }

.invest-layout {
  max-width: 1100px;
  margin: 0 auto 16px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 24px;
  align-items: stretch;
}

.invest-total {
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.invest-total .range {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  margin: 8px 0 12px;
  color: var(--orange-2);
}
.invest-table .total td {
  background: #fff4ef;
  font-weight: 800;
  color: var(--ink);
}
.fine-print {
  max-width: 1100px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 0.82rem;
}
.fine-print.light { color: #9aa6b8; }
.section-kicker.light { color: var(--orange-2); }

.faq-list { max-width: 800px; margin: 0 auto; }
.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 10px;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  font-family: var(--font-display);
}
.faq-list p { color: var(--muted); margin-top: 8px; }

.final-cta {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 72px 24px;
}
.final-cta p { color: #c5cddb; margin-bottom: 22px; }
.final-cta h2 { color: #fff; }

.site-footer {
  background: #070b14;
  color: #c5cddb;
  padding: 48px 24px 24px;
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 24px;
}
.footer-grid a { display: block; text-decoration: none; margin: 6px 0; color: #e2e8f0; }
.footer-grid h3 { color: #fff; font-size: 0.9rem; }
.logo.light .logo-type strong { color: #fff; }
.copyright {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 18px;
  font-size: 0.78rem;
  color: #8b95a7;
}

.faq-list a { color: var(--orange); font-weight: 600; }

.fit-grid {
  max-width: 1100px;
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.fit-card {
  border-radius: 16px;
  padding: 28px 26px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}
.fit-card h3 { margin-bottom: 14px; }
.fit-card ul { margin: 0; padding: 0; list-style: none; }
.fit-card li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: var(--muted);
}
.fit-card.yes { background: #f0fdf4; border: 1px solid #bbf7d0; }
.fit-card.no { background: #fff7f7; border: 1px solid #fecaca; }
.fit-card.yes li::before,
.fit-card.no li::before {
  position: absolute;
  left: 0;
  top: 8px;
  width: 18px;
  font-weight: 800;
}
.fit-card.yes li::before { content: "✓"; color: #16a34a; }
.fit-card.no li::before { content: "×"; color: var(--red); }
.fit-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 0 28px;
}
.fit-chips span {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 600;
}

.model-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.model-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  border: 1px solid var(--line);
}
.model-card.featured-model { border-color: var(--orange); box-shadow: 0 16px 40px rgba(255, 87, 34, 0.12); }
.model-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.model-card ul { margin: 12px 0 0; padding-left: 18px; color: var(--muted); }
.model-card p { color: var(--muted); }

.econ {
  background: var(--navy);
  color: #fff;
}
.econ h2 { color: #fff; }
.econ-kpis {
  max-width: 1100px;
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.econ-kpis article {
  background: var(--navy-3);
  border-radius: 14px;
  padding: 22px 16px;
  text-align: center;
}
.econ-kpis b {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--orange-2);
  letter-spacing: -0.03em;
}
.econ-kpis span { color: #c5cddb; font-size: 0.88rem; }
.econ-table-wrap {
  max-width: 1100px;
  margin: 0 auto;
  overflow-x: auto;
  border-radius: 14px;
}
.econ-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--navy-3);
  color: #fff;
}
.econ-table th, .econ-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.econ-table thead th { color: #c5cddb; font-size: 0.82rem; font-weight: 600; }
.econ-table tbody th { color: #fff; font-weight: 700; }

.calc-layout {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: stretch;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 28px 70px rgba(11, 18, 32, 0.12);
  background: #fff;
}
.calc-controls {
  padding: 36px 34px 32px;
  background:
    radial-gradient(420px 180px at 0% 0%, rgba(255, 87, 34, 0.07), transparent 60%),
    #fff;
}
.calc-pane-kicker {
  color: var(--red);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.calc-controls h3 {
  font-size: 1.45rem;
  margin-bottom: 8px;
}
.calc-pane-copy {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 22px;
}
.calc-field {
  display: block;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px 12px;
  margin-bottom: 12px;
}
.calc-field-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.calc-field-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: #334155;
}
.calc-field-top b {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--orange);
  background: #fff;
  border: 1px solid #ffd5c7;
  border-radius: 999px;
  padding: 4px 10px;
  min-width: 4.5rem;
  text-align: center;
}
.calc-ends {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 0.72rem;
  color: #94a3b8;
}
.calc-ends i { font-style: normal; }
.calc-controls input[type="range"] {
  --p: 50%;
  width: 100%;
  height: 8px;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  background: linear-gradient(to right, var(--orange) var(--p), #dbe3ee var(--p));
  border-radius: 99px;
  outline: none;
  cursor: pointer;
}
.calc-controls input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--orange);
  box-shadow: 0 4px 10px rgba(255, 87, 34, 0.35);
}
.calc-controls input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--orange);
  box-shadow: 0 4px 10px rgba(255, 87, 34, 0.35);
}
.calc-controls input[type="range"]::-moz-range-track {
  height: 8px;
  background: transparent;
  border: 0;
}
.calc-formula {
  margin: 6px 0 0;
  font-size: 0.78rem;
  color: #64748b;
  font-family: var(--font-display);
}
.calc-out {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px 32px 32px;
  color: #fff;
  background:
    radial-gradient(520px 280px at 80% -10%, rgba(255, 87, 34, 0.28), transparent 55%),
    linear-gradient(180deg, #15233d 0%, var(--navy) 100%);
}
.calc-label {
  color: #ffb59a;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 6px;
}
.calc-hero {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.4vw, 4.2rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin: 0 0 8px;
  text-shadow: 0 10px 40px rgba(255, 87, 34, 0.35);
}
.calc-hero-sub {
  color: #c5cddb;
  font-size: 0.95rem;
  margin-bottom: 22px;
}
.calc-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.calc-metrics div {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 10px;
  text-align: center;
}
.calc-metrics b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--orange-2);
  margin-bottom: 4px;
}
.calc-metrics span {
  display: block;
  color: #9aa6b8;
  font-size: 0.72rem;
  line-height: 1.3;
}
.calc-note {
  color: #9aa6b8;
  font-size: 0.86rem;
  margin: 0 0 20px;
  flex: 1;
}
.calc-out .btn { align-self: flex-start; }

.flow-steps {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.flow-steps li {
  background: #fff;
  border-radius: 14px;
  padding: 20px 16px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}
.flow-steps span {
  color: var(--red);
  font-family: var(--font-display);
  font-weight: 900;
}
.flow-steps p { color: var(--muted); font-size: 0.9rem; }

.founder-quote {
  border-left: 3px solid var(--red);
  margin: 18px 0;
  padding-left: 16px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
}

.owner-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.owner-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}
.owner-card img { width: 100%; height: 220px; object-fit: cover; background: #dbe3ee; }
.owner-card div { padding: 18px; }
.owner-quote { font-weight: 600; color: var(--ink); }
.owner-meta { color: var(--muted); font-size: 0.88rem; }
.owner-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}
.owner-card li {
  background: var(--soft);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 700;
}

.finance-grid {
  max-width: 1100px;
  margin: 0 auto 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.finance-grid article {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}
.finance-grid p { color: var(--muted); font-size: 0.92rem; }
.include-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.include-grid div {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  border: 1px solid var(--line);
}
.include-grid ul { margin: 0; padding-left: 18px; color: var(--muted); }

.discovery-steps {
  max-width: 1100px;
  margin: 0 auto 28px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.discovery-steps li {
  background: var(--soft);
  border-radius: 14px;
  padding: 22px 18px;
  border-top: 3px solid var(--orange);
}
.discovery-steps span {
  display: block;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.discovery-steps p { color: var(--muted); font-size: 0.92rem; }

.social-rail {
  position: fixed;
  left: 0;
  top: 42%;
  z-index: 30;
  display: flex;
  flex-direction: column;
}
.social-rail a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  background: #1877f2;
}
.social-rail a:nth-child(2) { background: #e60023; }
.social-rail a.ig { background: #c32aa3; }

.float-ctas {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 35;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.float-phone, .float-chat {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,.2);
}
.float-phone { background: #22c55e url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1.1-.2 1.2.4 2.5.6 3.8.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.6 21 3 13.4 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.6.6 3.8.1.4 0 .8-.3 1.1L6.6 10.8z'/%3E%3C/svg%3E") center/22px no-repeat; }
.float-chat { background: var(--red) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M4 4h16v12H7l-3 3V4z'/%3E%3C/svg%3E") center/22px no-repeat; }

.chat-bubble {
  background: #fff;
  color: var(--ink);
  padding: 10px 28px 10px 12px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  font-size: 0.82rem;
  max-width: 220px;
  position: relative;
}
.chat-bubble button {
  position: absolute;
  top: 4px; right: 6px;
  border: 0; background: none;
  cursor: pointer; font-size: 1rem;
}
.chat-bubble.is-hidden { display: none; }

.video-modal {
  border: 0;
  border-radius: 16px;
  padding: 0;
  width: min(480px, calc(100% - 32px));
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}
.video-modal::backdrop { background: rgba(7, 11, 20, .6); }
.modal-body { padding: 32px 28px 28px; }
.modal-close {
  position: absolute;
  right: 10px; top: 6px;
  border: 0; background: none;
  font-size: 1.6rem;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .header-trust { display: none; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .header-cta { display: inline-flex; }
  .hero-grid, .apply-card, .split, .market-grid, .territory-layout, .invest-layout, .service-grid, .benefit-grid, .path-grid, .media-grid, .story-grid, .stat-grid, .kpi-row, .footer-grid,
  .calc-layout {
    grid-template-columns: 1fr;
  }
  .fit-grid, .model-grid, .econ-kpis, .flow-steps, .owner-grid, .finance-grid, .include-grid, .discovery-steps {
    grid-template-columns: 1fr 1fr;
  }
  .service.featured { grid-row: auto; }
  .form-row { grid-template-columns: 1fr; }
  .social-rail { display: none; }
}

@media (max-width: 720px) {
  .header-contact { display: none; }
  .header-contact.is-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 16px 20px 20px;
    gap: 8px;
    z-index: 45;
  }
  .nav-toggle { display: flex; }
  .hero { padding: 40px 16px 48px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .video-card img { height: 220px; }
  .apply-copy, .lead-form { padding: 24px 18px; }
  .us-map { grid-template-columns: repeat(8, 1fr); }
  .fit-grid, .model-grid, .econ-kpis, .flow-steps, .owner-grid, .finance-grid, .include-grid, .discovery-steps {
    grid-template-columns: 1fr;
  }
  .calc-controls, .calc-out { padding: 24px 20px; }
  .calc-metrics { grid-template-columns: 1fr; }
  .calc-out .btn { width: 100%; }
}
