/* =========================================================
   Steward · Chennai e-Auto Franchise — Marketing Page Styles
   ========================================================= */

:root {
  --ink: #1e3a34;
  --ink-2: #16302b;
  --ink-soft: #3f5c55;
  --maroon: #8e2430;
  --maroon-dark: #6f1b25;
  --maroon-tint: #f7e9ea;
  --cream: #f6f2ea;
  --paper: #ffffff;
  --gold: #b98a3e;
  --sky: #4c8fb0;
  --text: #262622;
  --muted: #6b6b63;
  --line: #e6e0d3;
  --good: #2f7a5c;
  --warn: #b9642f;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(30, 58, 52, 0.06), 0 1px 1px rgba(30, 58, 52, 0.04);
  --shadow-md: 0 12px 32px -12px rgba(22, 48, 43, 0.22);
  --shadow-lg: 0 24px 60px -20px rgba(22, 48, 43, 0.35);

  --serif: Cambria, "Century Schoolbook", Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Calibri, Arial, sans-serif;

  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  margin: 0 0 0.4em;
  line-height: 1.15;
  font-weight: 700;
}

p { margin: 0 0 1em; }
a { color: inherit; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--maroon);
  display: inline-block;
  border-radius: 2px;
}
section.on-dark .eyebrow { color: #e7b9a8; }
section.on-dark .eyebrow::before { background: #e7b9a8; }

.section-head {
  max-width: 720px;
  margin: 0 0 44px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 36px); }
.section-head .lede { font-size: 17px; color: var(--muted); margin: 0; }
section.on-dark .section-head .lede { color: #c9d6d1; }

.section-pad { padding: 96px 0; }
@media (max-width: 720px) {
  .section-pad { padding: 64px 0; }
}

.on-dark { background: var(--ink); color: #eef3f1; }
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: #fbfaf6; }
.on-dark p { color: #cddad5; }
.on-cream { background: var(--cream); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--maroon);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--maroon-dark); box-shadow: var(--shadow-md); }
.btn-ghost-light {
  border-color: rgba(255,255,255,0.35);
  color: #fff;
  background: rgba(255,255,255,0.06);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.6); }
.btn-outline {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-block { width: 100%; }

/* ---------- Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { height: 34px; width: auto; }
.brand-tag {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  border-left: 1px solid var(--line);
  padding-left: 10px;
  line-height: 1.3;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
}
.nav-links a:hover { color: var(--maroon); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  border: none;
  background: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 4px 0;
  border-radius: 2px;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 18px 24px 26px;
    gap: 16px;
  }
  .brand-tag { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1100px 600px at 85% -10%, rgba(142,36,48,0.35), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(76,143,176,0.18), transparent 55%),
    linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  color: #fff;
  padding: 76px 0 60px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.hero h1 {
  color: #fff;
  font-size: clamp(32px, 4.6vw, 52px);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.hero h1 em { color: #f0c9bb; font-style: normal; }
.hero .lede {
  font-size: 18px;
  color: #d7e2dd;
  max-width: 560px;
  margin-bottom: 30px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

.stat-chip-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 700px) {
  .stat-chip-row { grid-template-columns: repeat(2, 1fr); }
}
.stat-chip {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 16px 14px;
}
.stat-chip .num {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 4px;
}
.stat-chip .label {
  font-size: 12.5px;
  color: #c3d1cb;
  line-height: 1.3;
}

.hero-card {
  background: var(--paper);
  color: var(--text);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 30px;
  position: relative;
}
.hero-card .tag {
  display: inline-block;
  background: var(--maroon-tint);
  color: var(--maroon);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.hero-card .big-num {
  font-family: var(--serif);
  font-size: 40px;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 2px;
}
.hero-card .big-cap { color: var(--muted); font-size: 13.5px; margin-bottom: 20px; }
.hero-card-rows { border-top: 1px solid var(--line); padding-top: 16px; display: grid; gap: 12px; }
.hero-card-row { display: flex; justify-content: space-between; font-size: 14px; }
.hero-card-row span:first-child { color: var(--muted); }
.hero-card-row span:last-child { font-weight: 700; color: var(--ink); }

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--ink-2);
  color: #cfdbd6;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.trust-bar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  justify-content: center;
  align-items: center;
  font-size: 13.5px;
  font-weight: 600;
  text-align: center;
}
.trust-bar b { color: #fff; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--maroon-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.icon-badge img { width: 24px; height: 24px; }
.icon-badge.sky { background: #e6f1f6; }
.icon-badge.gold { background: #f6ecda; }
.icon-badge.ink { background: #e4ebe9; }

.card h3 { font-size: 17px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 14.5px; margin-bottom: 12px; }
.card .stat-row { display: flex; gap: 22px; border-top: 1px solid var(--line); padding-top: 14px; margin-top: auto; }
.card .stat-row .num { font-family: var(--serif); font-weight: 700; color: var(--maroon); font-size: 22px; display: block; }
.card .stat-row .cap { font-size: 11.5px; color: var(--muted); }

.exec-grid { align-items: stretch; }
.exec-grid .card { display: flex; flex-direction: column; }

/* ---------- Tables ---------- */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  min-width: 560px;
  background: var(--paper);
}
thead th {
  background: var(--ink);
  color: #fff;
  text-align: left;
  padding: 14px 18px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
tbody td {
  padding: 13px 18px;
  border-top: 1px solid var(--line);
  color: var(--text);
}
tbody tr:nth-child(even) { background: #fbf9f5; }
tbody td:first-child { font-weight: 700; color: var(--ink); }
table.highlight-col td:nth-child(3),
table.highlight-col th:nth-child(3) { background: rgba(142,36,48,0.06); }
.cell-muted { color: var(--muted); font-size: 13.5px; }
.cell-good { color: var(--good); font-weight: 700; }
.cell-bad { color: var(--maroon); font-weight: 700; }

/* ---------- Comparison / funnel ---------- */
.funnel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: funnel;
}
@media (max-width: 900px) { .funnel { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .funnel { grid-template-columns: 1fr; } }
.funnel-step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  position: relative;
}
.funnel-step .n {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 28px;
  color: var(--maroon);
}
.funnel-step .n small { font-size: 14px; color: var(--muted); font-family: var(--sans); font-weight: 700; }
.funnel-step h4 { font-size: 14.5px; margin: 10px 0 6px; }
.funnel-step p { font-size: 13.5px; color: var(--muted); margin: 0; }
.funnel-arrow {
  display: none;
}

.market-econ {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 20px 24px;
  align-items: center;
  justify-content: space-between;
}
.market-econ p { margin: 0; color: #dbe6e1; font-size: 14.5px; }
.market-econ b { color: #fff; font-family: var(--serif); }

/* ---------- Driver comparison ---------- */
.compare-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 700px) { .compare-2col { grid-template-columns: 1fr; } }
.compare-card {
  border-radius: var(--radius);
  padding: 26px;
  border: 1px solid var(--line);
}
.compare-card.bad { background: #fbf3f1; border-color: #ecd6cf; }
.compare-card.good { background: #f1f7f3; border-color: #cfe4d7; }
.compare-card h4 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.compare-line { display: flex; justify-content: space-between; padding: 9px 0; border-top: 1px dashed rgba(0,0,0,0.1); font-size: 14.5px; }
.compare-line:first-of-type { border-top: none; }
.compare-line b { color: var(--ink); }
.compare-total { display: flex; justify-content: space-between; font-size: 18px; font-weight: 700; margin-top: 14px; padding-top: 14px; border-top: 1.5px solid rgba(0,0,0,0.15); color: var(--ink); }
.compare-callout {
  text-align: center;
  margin-top: 22px;
  padding: 18px;
  background: var(--ink);
  border-radius: var(--radius);
  color: #fff;
}
.compare-callout .num { font-family: var(--serif); font-size: 30px; font-weight: 700; color: #f0c9bb; }

/* ---------- Feature list w/ checks ---------- */
.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .feature-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .feature-list { grid-template-columns: 1fr; } }
.feature-item { display: flex; gap: 14px; }
.feature-item .ico {
  flex: none;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--maroon-tint);
  display: flex; align-items: center; justify-content: center;
}
.feature-item .ico img { width: 20px; height: 20px; }
.feature-item h4 { font-size: 14.5px; margin: 0 0 4px; }
.feature-item .kicker { font-size: 12px; font-weight: 700; color: var(--maroon); text-transform: uppercase; letter-spacing: 0.04em; }
.feature-item p { font-size: 13.5px; color: var(--muted); margin: 0; }

/* ---------- Pricing / earn cards ---------- */
.earn-grid { grid-template-columns: 1fr 1fr; }
@media (max-width: 800px) { .earn-grid { grid-template-columns: 1fr; } }
.earn-card {
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  border: 1px solid var(--line);
  background: var(--paper);
}
.earn-card.featured {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  box-shadow: var(--shadow-lg);
}
.earn-card.featured h3, .earn-card.featured h4 { color: #fff; }
.earn-card .badge {
  position: absolute;
  top: -13px; left: 32px;
  background: var(--maroon);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 999px;
  text-transform: uppercase;
}
.earn-card .rate { font-family: var(--serif); font-size: 42px; font-weight: 700; margin: 14px 0 2px; }
.earn-card.featured .rate { color: #f0c9bb; }
.earn-card:not(.featured) .rate { color: var(--maroon); }
.earn-card .payout { font-size: 15px; margin-bottom: 20px; }
.earn-card.featured .payout { color: #dbe6e1; }
.earn-card:not(.featured) .payout { color: var(--muted); }
.earn-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.earn-list li { display: flex; gap: 10px; font-size: 14px; align-items: flex-start; }
.earn-list img { width: 16px; height: 16px; margin-top: 2px; flex: none; }
.earn-card:not(.featured) .earn-list li { color: var(--ink-soft); }
.earn-card.featured .earn-list li { color: #e7efec; }

/* ---------- Investment tiers ---------- */
.tiers-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
@media (max-width: 900px) { .tiers-grid { grid-template-columns: 1fr; } }
.tier-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tier-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tier-card.popular { border: 2px solid var(--maroon); box-shadow: var(--shadow-md); }
.tier-card .badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--maroon); color: #fff; font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px;
  white-space: nowrap;
}
.tier-name { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--maroon); }
.tier-fleet { color: var(--muted); font-size: 13.5px; margin-bottom: 14px; }
.tier-price { font-family: var(--serif); font-size: 32px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.tier-price-cap { font-size: 12.5px; color: var(--muted); margin-bottom: 22px; }
.tier-rows { display: grid; gap: 12px; border-top: 1px solid var(--line); padding-top: 18px; margin-bottom: 22px; flex: 1; }
.tier-row { display: flex; justify-content: space-between; font-size: 14px; }
.tier-row span:first-child { color: var(--muted); }
.tier-row b { color: var(--ink); }
.tier-row.hi b { color: var(--maroon); font-family: var(--serif); font-size: 17px; }

/* ---------- Charts (hand-built SVG) ---------- */
.chart-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.chart-card h4 { font-size: 15px; margin-bottom: 4px; }
.chart-card .chart-cap { color: var(--muted); font-size: 13px; margin-bottom: 18px; }
.stack-bar-row { margin-bottom: 22px; }
.stack-bar-label { display: flex; justify-content: space-between; font-size: 13.5px; margin-bottom: 6px; font-weight: 700; color: var(--ink); }
.stack-bar { display: flex; height: 34px; border-radius: 8px; overflow: hidden; width: 100%; }
.stack-seg { display: flex; align-items: center; justify-content: center; color: #fff; font-size: 12px; font-weight: 700; }
.stack-legend { display: flex; gap: 18px; margin-top: 14px; flex-wrap: wrap; }
.stack-legend span { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--muted); }
.stack-legend i { width: 11px; height: 11px; border-radius: 3px; display: inline-block; }

.returns-flex { display: grid; grid-template-columns: 1.3fr 1fr; gap: 26px; align-items: stretch; }
@media (max-width: 900px) { .returns-flex { grid-template-columns: 1fr; } }
.returns-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.returns-stat { background: var(--cream); border-radius: var(--radius); padding: 18px; }
.returns-stat .num { font-family: var(--serif); font-size: 24px; font-weight: 700; color: var(--maroon); display: block; }
.returns-stat .cap { font-size: 12px; color: var(--muted); }

/* ---------- Timeline (hubs / signature) ---------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 980px) { .timeline { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .timeline { grid-template-columns: 1fr; } }
.timeline-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  text-align: left;
}
.timeline-card .tl-badge {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  color: #fff;
  background: var(--maroon);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.timeline-card .icon-badge { margin-bottom: 12px; }
.timeline-card h4 { font-size: 15px; margin-bottom: 6px; }
.timeline-card p { font-size: 13px; color: var(--muted); margin: 0; }
.timeline-card .fleet-num { font-family: var(--serif); font-weight: 700; color: var(--ink); font-size: 20px; margin-top: 10px; }

.timeline-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .timeline-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .timeline-4 { grid-template-columns: 1fr; } }

/* ---------- Two column roles ---------- */
.roles-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 800px) { .roles-grid { grid-template-columns: 1fr; } }
.roles-card { border-radius: var(--radius-lg); padding: 30px; }
.roles-card.franchisee { background: var(--cream); }
.roles-card.steward { background: var(--ink); color: #fff; }
.roles-card.steward h3 { color: #fff; }
.role-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.role-list li { display: flex; gap: 12px; font-size: 14px; align-items: flex-start; }
.role-list img { width: 18px; height: 18px; margin-top: 2px; flex: none; }
.roles-card.franchisee .role-list li { color: var(--ink-soft); }
.roles-card.steward .role-list li { color: #dbe6e1; }

/* ---------- Risks table ---------- */
.risk-row-critical td { background: rgba(142,36,48,0.05); }

/* ---------- Assumptions ---------- */
.assumption-grid { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 700px) { .assumption-grid { grid-template-columns: 1fr; } }
.assumption-list { list-style: none; margin: 10px 0 0; padding: 0; display: grid; gap: 10px; }
.assumption-list li { font-size: 13.5px; color: var(--muted); padding-left: 18px; position: relative; }
.assumption-list li::before {
  content: "";
  position: absolute; left: 0; top: 7px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--maroon);
}

/* ---------- Final CTA ---------- */
.cta-final {
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon) 60%, #a83b46);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px;
  text-align: center;
}
.cta-final h2 { color: #fff; }
.cta-final p { color: #f6e2df; max-width: 620px; margin: 0 auto 28px; }
.cta-final .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-final .btn-primary { background: #fff; color: var(--maroon-dark); }
.cta-final .btn-primary:hover { background: #f4e9e8; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink-2);
  color: #b8c6c0;
  padding: 56px 0 28px;
  font-size: 13.5px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}
.footer-brand img { height: 30px; margin-bottom: 10px; }
.footer-brand p { max-width: 320px; color: #9db1a9; }
.footer-links { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col h5 {
  color: #fff; font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.06em;
  margin: 0 0 14px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer-col a { text-decoration: none; color: #9db1a9; }
.footer-col a:hover { color: #fff; }
.footer-disclaimer { color: #7f9289; font-size: 12px; line-height: 1.6; margin-bottom: 14px; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; color: #7f9289; font-size: 12px; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js .reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}
.note {
  font-size: 13.5px;
  color: var(--muted);
  background: var(--cream);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 18px;
}
.note b { color: var(--ink); }
.callout-strip {
  margin-top: 30px;
  padding: 22px 26px;
  border-radius: var(--radius);
  background: var(--cream);
  font-size: 15.5px;
  color: var(--ink-soft);
  border-left: 4px solid var(--maroon);
}
.callout-strip b { color: var(--ink); }

.badge-recommend {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--good);
  background: #e6f3ec;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.icon-inline { width: 18px; height: 18px; vertical-align: -3px; margin-right: 6px; }
