/* Extracted verbatim from the Order Stock design handoff <style> block. */
:root {
  --navy:        #003366;
  --navy-deep:   #00264d;
  --navy-darker: #001a36;
  --navy-soft:   #1a4779;
  --navy-tint:   #e8eef5;
  --orange:      #ff6600;
  --orange-deep: #e65a00;
  --orange-soft: #fff1e6;
  --white:       #ffffff;
  --paper:       #f7f8fb;
  --line:        #e5e9ef;
  --line-strong: #cdd5e0;
  --ink:         #0c1a2e;
  --ink-mute:    #4a5670;
  --ink-soft:    #6b7689;
  --check:       #10b981;
  --cross:       #ef4444;
  --neutral:     #6b7689;

  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-display: 'Nunito', 'Inter', system-ui, sans-serif;

  --container: 1240px;
  --section-pad: 112px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Topbar ---------- */
.topbar {
  background: var(--navy-deep);
  color: #c5d3e6;
  font-size: 13px;
  letter-spacing: 0.01em;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 16px;
}
.topbar a { color: #c5d3e6; text-decoration: none; transition: color 0.15s; }
.topbar a:hover { color: #fff; }
.topbar .pipe { opacity: 0.4; margin: 0 14px; }
.topbar-left { display: flex; align-items: center; gap: 10px; }
.topbar-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }

/* ---------- Nav ---------- */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.nav .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px; padding-bottom: 18px;
  gap: 24px;
}
.logo { display: inline-flex; align-items: center; text-decoration: none; color: var(--ink); }
.logo-img { display: block; height: 52px; width: auto; }
.nav-links {
  display: flex; gap: 32px; align-items: center;
  font-size: 14px; font-weight: 500;
}
.nav-links a {
  color: var(--ink); text-decoration: none;
  padding: 6px 0; border-bottom: 2px solid transparent;
  transition: border-color 0.15s, color 0.15s;
}
.nav-links a:hover { border-bottom-color: var(--orange); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: var(--white) !important;
  padding: 11px 20px; border-radius: 6px; border: none;
  font-weight: 600; font-size: 14px; text-decoration: none;
  transition: background 0.15s, transform 0.15s; cursor: pointer;
}
.nav-cta:hover { background: var(--orange-deep); transform: translateY(-1px); }
.nav-cta svg { width: 14px; height: 14px; }
.nav-ctas { display: flex; gap: 10px; align-items: center; }
.nav-cta-secondary {
  background: transparent !important;
  color: var(--navy) !important;
  border: 1.5px solid var(--line-strong) !important;
  font-weight: 600;
}
.nav-cta-secondary:hover {
  border-color: var(--navy) !important;
  background: var(--white) !important;
  transform: translateY(-1px);
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 6px;
  font-weight: 600; font-size: 15px; letter-spacing: 0.01em;
  text-decoration: none; cursor: pointer; border: none;
  transition: background 0.15s, transform 0.15s, border-color 0.15s, color 0.15s;
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-deep); transform: translateY(-1px); }
.btn-secondary {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--line-strong);
}
.btn-secondary:hover { border-color: var(--navy); }
.btn-ghost-light {
  background: rgba(255,255,255,0.08);
  color: var(--white); border: 1px solid rgba(255,255,255,0.18);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.4); }
.btn svg { width: 14px; height: 14px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 30%, rgba(0,51,102,0.06), transparent 70%),
    radial-gradient(ellipse 40% 40% at 15% 70%, rgba(255,102,0,0.04), transparent 70%);
  pointer-events: none;
}
.hero .wrap {
  position: relative;
  padding-top: 72px; padding-bottom: 80px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 28px;
}
.hero-eyebrow .dot { width: 7px; height: 7px; background: var(--orange); border-radius: 50%; }
.hero-eyebrow .pipe { opacity: 0.35; }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.4vw, 64px);
  font-weight: 500; line-height: 1.04; letter-spacing: -0.02em;
  margin: 0 0 24px; color: var(--ink);
  text-wrap: balance;
}
.hero h1 em { font-style: italic; color: var(--navy); }
.hero h1 .accent { color: var(--orange); font-style: italic; }

.hero-sub {
  font-size: 19px; line-height: 1.6;
  color: var(--ink-mute);
  margin: 0 0 36px; max-width: 560px;
}

.hero-cta-row {
  display: flex; gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-meta {
  display: flex; gap: 28px; padding-top: 24px;
  border-top: 1px solid var(--line); flex-wrap: wrap;
}
.hero-meta-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--ink-mute);
}
.hero-meta-item svg { width: 16px; height: 16px; color: var(--navy); flex: 0 0 16px; }

.hero-image {
  position: relative;
  border-radius: 8px; overflow: hidden;
  aspect-ratio: 5/4.4; background: var(--navy-deep);
  box-shadow: 0 32px 80px -32px rgba(0,51,102,0.4);
}
.hero-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-tag {
  position: absolute;
  bottom: 22px; left: 22px; right: 22px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  padding: 16px 20px; border-radius: 6px;
  border-top: 3px solid var(--orange);
  display: grid; grid-template-columns: auto 1fr; gap: 16px;
  align-items: center;
}
.hero-tag-vol {
  font-family: var(--font-display); font-style: italic;
  font-size: 26px; font-weight: 500; color: var(--navy); line-height: 1;
}
.hero-tag-vol span {
  display: block; font-size: 11px; font-style: normal; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft); margin-top: 4px; font-family: var(--font-sans);
}
.hero-tag-desc {
  font-size: 12.5px; line-height: 1.45;
  color: var(--ink-mute);
  border-left: 1px solid var(--line);
  padding-left: 16px;
}
.hero-tag-desc strong { color: var(--navy); font-weight: 600; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-image { aspect-ratio: 4/3.5; max-width: 540px; margin-inline: auto; }
}
@media (max-width: 600px) {
  .hero .wrap { padding-top: 48px; padding-bottom: 56px; }
}

/* ---------- Section base ---------- */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}
.section.paper { background: var(--paper); }
.section.dark {
  background: var(--navy);
  color: var(--white);
}
.section.dark .section-eyebrow { color: var(--orange); }
.section.dark .section-title { color: var(--white); }
.section.dark .section-lede { color: rgba(255,255,255,0.78); }

.section-eyebrow {
  display: inline-flex; align-items: baseline; gap: 12px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 20px;
}
.section-eyebrow .num {
  font-family: var(--font-display); font-style: italic;
  font-size: 20px; color: var(--orange);
  font-weight: 400; letter-spacing: 0;
}
.section.dark .section-eyebrow .num { color: var(--orange); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.6vw, 48px);
  font-weight: 500; line-height: 1.1; letter-spacing: -0.018em;
  margin: 0 0 20px; color: var(--ink);
  max-width: 900px; text-wrap: balance;
}
.section-title em { font-style: italic; color: var(--navy); }
.section.dark .section-title em { color: var(--orange); }
.section-lede {
  font-size: 18px; line-height: 1.6;
  color: var(--ink-mute);
  margin: 0 0 56px; max-width: 720px;
}

@media (max-width: 700px) {
  :root { --section-pad: 72px; }
}

/* ---------- Order builder ---------- */
.order-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}
.order-lines {
  display: flex; flex-direction: column; gap: 18px;
}
.order-line {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 24px; align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 26px;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.order-line.has-qty {
  border-color: var(--orange);
  box-shadow: 0 18px 40px -28px rgba(255,102,0,0.5);
}
.order-line-media {
  width: 96px; height: 96px;
  border-radius: 10px;
  background: var(--navy-tint);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  color: var(--navy);
}
.order-line-media img { width: 100%; height: 100%; object-fit: cover; }
.order-line-media svg { width: 40px; height: 40px; }
.order-line-info { min-width: 0; }
.order-line-tag {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 7px;
}
.order-line-name {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500; line-height: 1.15;
  color: var(--ink); letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.order-line-pack {
  font-size: 13.5px; color: var(--ink-soft);
  line-height: 1.45; margin-bottom: 12px;
}
.order-line-price {
  display: inline-flex; align-items: baseline; gap: 8px;
}
.order-line-price b {
  font-size: 17px; font-weight: 700; color: var(--navy);
}
.order-line-price span {
  font-size: 12.5px; color: var(--ink-soft);
}
.order-line-right {
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
}

.qty {
  display: inline-flex; align-items: center;
  border: 1.5px solid var(--line-strong);
  border-radius: 8px; overflow: hidden;
  background: var(--white);
}
.qty button {
  width: 38px; height: 40px; border: none; background: var(--white);
  color: var(--navy); font-size: 20px; font-weight: 600;
  cursor: pointer; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.12s, color 0.12s;
}
.qty button:hover { background: var(--orange-soft); color: var(--orange-deep); }
.qty button:disabled { color: var(--line-strong); cursor: not-allowed; background: var(--white); }
.qty input {
  width: 52px; height: 40px; border: none; text-align: center;
  font-family: var(--font-sans); font-size: 16px; font-weight: 600;
  color: var(--ink); border-left: 1.5px solid var(--line);
  border-right: 1.5px solid var(--line);
  -moz-appearance: textfield;
}
.qty input::-webkit-inner-spin-button, .qty input::-webkit-outer-spin-button {
  -webkit-appearance: none; margin: 0;
}
.line-total {
  font-family: var(--font-display); font-style: italic;
  font-size: 22px; font-weight: 500; color: var(--navy);
  min-height: 24px;
}
.line-total.zero { color: var(--ink-soft); opacity: 0.5; }

.order-line-form {
  appearance: none; -webkit-appearance: none;
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 600;
  color: var(--navy);
  background-color: var(--orange-soft);
  border: 1.5px solid var(--orange);
  border-radius: 7px;
  padding: 7px 32px 7px 12px;
  margin: 0 0 11px; max-width: 100%;
  cursor: pointer; line-height: 1.2;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='%23ff6600' d='M0 0h10L5 6z'/></svg>");
  background-repeat: no-repeat; background-position: right 11px center;
  transition: background-color 0.12s, border-color 0.12s;
}
.order-line-form:hover { background-color: #ffe6d1; }
.order-line-form:focus { outline: none; border-color: var(--orange-deep); }

/* Summary card */
.order-summary {
  position: sticky; top: 96px;
  background: var(--navy);
  color: var(--white);
  border-radius: 16px;
  padding: 32px;
  overflow: hidden;
}
.order-summary-h {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500;
  color: var(--white); margin: 0 0 4px;
}
.order-summary-sub {
  font-size: 13px; color: rgba(255,255,255,0.6);
  margin: 0 0 22px;
}

/* Tier meter */
.tier-meter { margin-bottom: 24px; }
.tier-meter-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 10px;
}
.tier-meter-now {
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--orange);
}
.tier-meter-next {
  font-size: 12px; color: rgba(255,255,255,0.55);
}
.tier-bar {
  height: 7px; border-radius: 999px;
  background: rgba(255,255,255,0.12);
  overflow: hidden;
}
.tier-bar-fill {
  height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, var(--orange-deep), var(--orange));
  transition: width 0.35s cubic-bezier(.3,.7,.4,1);
}
.tier-ticks {
  display: flex; justify-content: space-between;
  margin-top: 8px;
  font-size: 10.5px; color: rgba(255,255,255,0.4);
  letter-spacing: 0.02em;
}
.tier-ticks span.on { color: rgba(255,255,255,0.85); font-weight: 600; }

.summary-rows {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 18px;
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 6px;
}
.summary-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 14px; color: rgba(255,255,255,0.78);
}
.summary-row b { color: var(--white); font-weight: 600; font-variant-numeric: tabular-nums; }
.summary-row.discount b { color: var(--orange); }
.summary-row.muted { font-size: 12.5px; color: rgba(255,255,255,0.5); }
.summary-row .free { color: #34d399; font-weight: 600; }

.summary-total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 18px; margin-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.summary-total-label {
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
}
.summary-total-value {
  font-family: var(--font-display);
  font-size: 34px; font-weight: 500; color: var(--white);
  line-height: 1; font-variant-numeric: tabular-nums;
}

.summary-cta {
  width: 100%; margin-top: 22px;
  justify-content: center;
}
.summary-cta.disabled {
  background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.5);
  pointer-events: none;
}
.summary-note {
  margin-top: 14px;
  font-size: 12px; line-height: 1.5;
  color: rgba(255,255,255,0.55);
  text-align: center;
}
.summary-note a { color: var(--orange); text-decoration: none; }

.order-trust {
  display: flex; flex-wrap: wrap; gap: 10px 28px;
  margin-top: 40px; padding-top: 28px;
  border-top: 1px solid var(--line);
}
.order-trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--ink-mute);
}
.order-trust-item svg { width: 18px; height: 18px; color: var(--orange); flex: 0 0 18px; }
.order-trust-item strong { color: var(--navy); font-weight: 600; }

@media (max-width: 980px) {
  .order-grid { grid-template-columns: 1fr; gap: 28px; }
  .order-summary { position: static; }
}
@media (max-width: 560px) {
  .order-line { grid-template-columns: 1fr; gap: 16px; }
  .order-line-media { width: 72px; height: 72px; }
  .order-line-right { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ---------- Pricing tiers ---------- */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.tier-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 30px 26px;
  display: flex; flex-direction: column; gap: 8px;
  position: relative;
}
.tier-card.feature {
  border-color: var(--navy);
  background: linear-gradient(180deg, var(--white) 0%, rgba(0,51,102,0.03) 100%);
}
.tier-card-badge {
  position: absolute; top: -11px; left: 26px;
  background: var(--orange); color: var(--white);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
  white-space: nowrap;
}
.tier-card-name {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-soft);
}
.tier-card-off {
  font-family: var(--font-display);
  font-size: 48px; font-weight: 500; letter-spacing: -0.02em;
  color: var(--navy); line-height: 1;
}
.tier-card-off em { font-style: italic; color: var(--orange); }
.tier-card-off span { font-size: 20px; color: var(--ink-mute); }
.tier-card-thresh {
  font-size: 13.5px; color: var(--ink); font-weight: 600;
  margin-top: 2px;
}
.tier-card-desc {
  font-size: 13px; color: var(--ink-mute); line-height: 1.5;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .tiers-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
}
@media (max-width: 520px) {
  .tiers-grid { grid-template-columns: 1fr; }
}
.tiers-grid.tiers-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
}
@media (max-width: 560px) {
  .tiers-grid.tiers-grid-2 { grid-template-columns: 1fr; }
}
.tiers-grid.tiers-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 820px) {
  .tiers-grid.tiers-grid-3 { grid-template-columns: 1fr; }
}

/* ---------- Terms / perks ---------- */
.perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.perk-card {
  background: var(--white);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 30px 28px;
  display: flex; flex-direction: column; gap: 14px;
  background: rgba(255,255,255,0.04);
}
.perk-icon {
  width: 46px; height: 46px;
  border-radius: 11px;
  background: rgba(255,102,0,0.16);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
}
.perk-icon svg { width: 24px; height: 24px; }
.perk-h {
  font-family: var(--font-display);
  font-size: 21px; font-weight: 500; line-height: 1.2;
  color: var(--white); margin: 0;
}
.perk-b {
  font-size: 14px; line-height: 1.55;
  color: rgba(255,255,255,0.72); margin: 0;
}
.perk-b strong { color: var(--white); font-weight: 600; }

@media (max-width: 900px) {
  .perks-grid { grid-template-columns: 1fr; }
}

/* ---------- How it works ---------- */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {
  position: relative;
  padding-top: 30px;
}
.step::before {
  content: '';
  position: absolute; top: 12px; left: 0; right: -24px;
  height: 1px; background: var(--line);
}
.step:last-child::before { right: 0; }
.step-num {
  position: absolute; top: 0; left: 0;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}
.step-h {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 500; line-height: 1.2;
  color: var(--ink); margin: 14px 0 8px;
  letter-spacing: -0.01em;
}
.step-b {
  font-size: 14px; line-height: 1.55; color: var(--ink-mute);
}
.section.dark .step-h { color: var(--white); }
.section.dark .step-b { color: rgba(255,255,255,0.82); }
.section.dark .step::before { background: rgba(255,255,255,0.18); }
@media (max-width: 820px) {
  .steps-row { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .step::before { display: none; }
}
@media (max-width: 480px) {
  .steps-row { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-top: 1px solid var(--line-strong); }
.faq-item:last-child { border-bottom: 1px solid var(--line-strong); }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 19px; font-weight: 500;
  color: var(--ink); letter-spacing: -0.005em;
  transition: color 0.15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--navy); }
.faq-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--paper); position: relative; flex-shrink: 0;
  transition: background 0.15s, transform 0.2s;
}
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  background: var(--navy); transition: transform 0.2s, background 0.15s;
}
.faq-icon::before { width: 10px; height: 2px; transform: translate(-50%, -50%); }
.faq-icon::after  { width: 2px; height: 10px; transform: translate(-50%, -50%); }
.faq-item[open] .faq-icon { background: var(--orange); }
.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after { background: white; }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-body {
  padding: 0 60px 24px 0;
  font-size: 15px; line-height: 1.65; color: var(--ink-mute);
}
.faq-body strong { color: var(--ink); font-weight: 600; }
@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .faq-body { padding-right: 0; }
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--navy);
  color: var(--white);
  padding: 96px 0;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,102,0,0.12), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,102,0,0.06), transparent 50%);
  pointer-events: none;
}
.final-cta .wrap { position: relative; text-align: center; }
.final-cta-eyebrow {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 24px;
  display: inline-flex; align-items: center; gap: 10px;
}
.final-cta-eyebrow .dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }
.final-cta-h {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 500; line-height: 1.05; letter-spacing: -0.02em;
  margin: 0 auto 24px; max-width: 800px;
  color: var(--white); text-wrap: balance;
}
.final-cta-h em { font-style: italic; color: var(--orange); }
.final-cta-sub {
  font-size: 18px; line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin: 0 auto 40px; max-width: 580px;
}
.final-cta-row {
  display: inline-flex; gap: 16px;
  flex-wrap: wrap; justify-content: center;
}

/* ---------- Footer ---------- */
footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.65);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .logo-img--inverse {
  filter: brightness(0) invert(1);
  height: 44px; opacity: 0.95;
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 14px; line-height: 1.6;
  color: rgba(255,255,255,0.7);
  max-width: 320px;
}
.footer-col h5 {
  color: var(--white);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin: 0 0 16px;
}
.footer-col ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.footer-col a {
  color: rgba(255,255,255,0.65);
  text-decoration: none; font-size: 14px;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--orange); }
.footer-meta {
  padding-top: 24px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
  font-size: 12.5px; color: rgba(255,255,255,0.5);
}
.footer-meta a { color: rgba(255,255,255,0.5); text-decoration: none; margin-left: 16px; }
.footer-meta a:hover { color: var(--orange); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Density variants (tweak) ---------- */
body.density-compact { --section-pad: 72px; }
body.density-generous { --section-pad: 140px; }

/* ---------- Accent tweak ---------- */
body.accent-coral {
  --orange: #f04e3a;
  --orange-deep: #d23721;
  --orange-soft: #fde9e6;
}
body.accent-teal {
  --orange: #0d9488;
  --orange-deep: #0a7269;
  --orange-soft: #e1f4f2;
}

/* ---------- Hero layout variants (tweak) ---------- */
body.hero-image-left .hero-grid {
  grid-template-columns: 1fr 1.08fr;
}
body.hero-image-left .hero-content { order: 2; }
body.hero-image-left .hero-image { order: 1; }

@media (max-width: 980px) {
  body.hero-image-left .hero-image { order: 2; }
  body.hero-image-left .hero-content { order: 1; }
}
