/* HMDG Podiatry Google Ads Calculator — full stylesheet */

:root {
  --pink: #E91E63;
  --pink-dark: #C2185B;
  --pink-tint: rgba(233, 30, 99, 0.08);
  --navy: #0f1629;
  --bg: #f5f4f1;
  --warm: #f0efed;
  --card: #ffffff;
  --border: #e5e5e5;
  --border-strong: #d1d5db;
  --text: #0f1629;
  --text-muted: #6b7280;
  --text-soft: #9ca3af;
  --green: #16a34a;
  --green-soft: #dcfce7;
  --amber: #d97706;
  --amber-soft: #fef3c7;
  --amber-green: #65a30d;
  --amber-green-soft: #ecfccb;
  --red: #dc2626;
  --red-soft: #fee2e2;
  --grey: #6b7280;
  --grey-soft: #f3f4f6;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 32px rgba(15, 22, 41, 0.10);
  --radius: 12px;
  --radius-sm: 8px;
}

* { box-sizing: border-box; }

body {
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #ffffff;
  color: var(--text);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  font-size: 17px;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px 96px;
  background: var(--bg);
}

/* ---------- Page header (brand strip) ---------- */

.page-header {
  width: 100%;
  background: #ffffff;
  padding: 28px 28px 22px;
}
.page-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.brand-block {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.brand-logo {
  font-size: 56px;
  font-weight: 800;
  color: var(--pink);
  line-height: 0.9;
  letter-spacing: -0.025em;
  text-transform: lowercase;
}
.brand-tagline {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-top: 6px;
  letter-spacing: -0.005em;
}
.btn-share {
  background: #ffffff;
  color: var(--text);
  border: 1px solid var(--border-strong);
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  white-space: nowrap;
  align-self: center;
}
.btn-share:hover {
  background: var(--warm);
  border-color: var(--text-muted);
}
.page-rule {
  width: 100%;
  height: 2px;
  background: var(--pink);
  border: 0;
  margin: 0 0 56px;
}

/* ---------- Long-form intro ---------- */

.intro {
  padding: 72px 0 56px;
  max-width: 1100px;
}
.intro-eyebrow {
  font-size: 17px;
  font-weight: 600;
  color: var(--pink);
  margin-bottom: 18px;
}
.intro-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 36px;
  color: var(--text);
}
.intro-body {
  max-width: 780px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--text);
}
.intro-body p {
  margin: 0 0 22px;
}
.intro-body p:last-child {
  margin-bottom: 0;
}
.intro-body ul {
  margin: 0 0 22px;
  padding-left: 22px;
  list-style: none;
}
.intro-body li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  line-height: 1.55;
}
.intro-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
}

@media (max-width: 720px) {
  .page-header { padding: 20px 20px 16px; }
  .brand-logo { font-size: 40px; }
  .brand-tagline { font-size: 12px; }
  .btn-share { padding: 8px 14px; font-size: 13px; }
  .page-rule { margin-bottom: 36px; }
  .intro-title { font-size: 34px; line-height: 1.1; }
  .intro-body { font-size: 16px; }
  .intro { padding: 44px 0 36px; }
}

a { color: var(--pink-dark); text-decoration: none; font-weight: 500; }
a:hover { text-decoration: underline; }

button { font-family: inherit; cursor: pointer; }
button:disabled { cursor: not-allowed; opacity: 0.5; }

/* ---------- Steps ---------- */

.step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.step-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.step-head h2 {
  font-size: 22px;
  margin: 0;
  font-weight: 700;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.step-num.small { width: 24px; height: 24px; font-size: 12px; }
.step-sub {
  margin: 0 0 16px;
  color: var(--text-muted);
  font-size: 14px;
}

/* ---------- Collapsible step ---------- */

.step-collapsible { padding: 0; }
.step-collapsible-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: transparent;
  border: 0;
  text-align: left;
  font-family: inherit;
  font-size: inherit;
  color: var(--text);
}
.step-collapsible-toggle h2 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
  flex: 1;
}
.step-collapsible-toggle .chevron {
  font-size: 22px;
  color: var(--text-muted);
  font-weight: 400;
}
.step-collapsible-toggle[aria-expanded="true"] .chevron { content: "−"; }
.step-collapsible-body { padding: 0 24px 24px; }

/* ---------- Form fields ---------- */

.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 720px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
}

.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}
.field-value { font-weight: 700; color: var(--pink-dark); font-variant-numeric: tabular-nums; }

.help-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--warm);
  color: var(--text-muted);
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 700;
  font-family: inherit;
  margin-left: 6px;
  padding: 0;
  line-height: 1;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.help-toggle:hover,
.help-toggle[aria-expanded="true"] {
  background: var(--pink-tint);
  color: var(--pink-dark);
  border-color: var(--pink);
}
.help-panel {
  background: var(--warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}
.help-panel strong { color: var(--text); display: block; margin-bottom: 6px; font-size: 13px; }
.help-panel p { margin: 0 0 8px; }
.help-panel ul { margin: 0; padding-left: 18px; }
.help-panel li { margin-bottom: 4px; }
.help-panel li strong { display: inline; margin: 0; color: var(--text); }
.field-help {
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.4;
}

.control {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  color: var(--text);
  background: var(--card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
.control:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px var(--pink-tint);
}
select.control {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%236b7280' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  appearance: none;
  -webkit-appearance: none;
}

.control-prefix { position: relative; }
.control-prefix .prefix {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 15px;
  pointer-events: none;
}
.control-prefix .control { padding-left: 28px; }

.slider {
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  outline: none;
  width: 100%;
  cursor: pointer;
  margin: 6px 0;
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--pink);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(233, 30, 99, 0.35);
  border: 0;
}
.slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--pink);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(233, 30, 99, 0.35);
  border: 0;
}

/* ---------- Segmented control ---------- */

.segmented {
  display: flex;
  background: var(--warm);
  border-radius: var(--radius-sm);
  padding: 4px;
  gap: 4px;
}
.segmented button {
  flex: 1;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 9px 8px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.segmented button.active {
  background: var(--card);
  color: var(--pink-dark);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

/* ---------- Services table ---------- */

.services-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  -webkit-overflow-scrolling: touch;
}
.services-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 640px;
}
.services-table thead th {
  background: var(--warm);
  text-align: left;
  padding: 10px 12px;
  font-weight: 600;
  color: var(--text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.services-table tbody tr { border-bottom: 1px solid var(--border); }
.services-table tbody tr:last-child { border-bottom: 0; }
.services-table tbody tr:nth-child(even) { background: rgba(240, 239, 237, 0.4); }
.services-table td { padding: 8px 12px; vertical-align: middle; }
.services-table td.service-name { font-weight: 500; }
.services-table td.service-name .cat-pill {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-soft);
  margin-top: 3px;
}
.services-table input.row-input {
  width: 80px;
  padding: 6px 8px;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  background: var(--card);
}
.services-table input.row-input:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 2px var(--pink-tint);
}
.services-table button.row-delete {
  background: transparent;
  border: 0;
  color: var(--text-soft);
  font-size: 18px;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  line-height: 1;
}
.services-table button.row-delete:hover { background: var(--red-soft); color: var(--red); }

.services-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.services-helper {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 14px 0 16px;
  padding: 12px 16px;
  background: var(--warm);
  border-radius: var(--radius-sm);
}
.services-helper strong { color: var(--text); font-weight: 600; }

/* ---------- Buttons ---------- */

.btn-primary {
  background: var(--pink);
  color: #fff;
  border: 0;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  box-shadow: 0 4px 12px rgba(233, 30, 99, 0.25);
}
.btn-primary:hover { background: var(--pink-dark); }
.btn-primary:active { transform: translateY(1px); }
.btn-large { font-size: 16px; padding: 16px 32px; }

.btn-ghost {
  background: transparent;
  color: var(--pink-dark);
  border: 1px solid var(--border-strong);
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  transition: background 0.15s, border-color 0.15s;
}
.btn-ghost:hover { background: var(--pink-tint); border-color: var(--pink); }

.cta-row {
  display: flex;
  justify-content: center;
  margin: 28px 0 32px;
  position: sticky;
  bottom: 16px;
  z-index: 50;
}

@media (max-width: 640px) {
  .cta-row .btn-primary {
    width: 100%;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(233, 30, 99, 0.25);
  }
}

/* ---------- Results ---------- */

.results { margin-top: 8px; }
.results-head h2 {
  font-size: 28px;
  margin: 0 0 8px;
  font-weight: 700;
}
.results-sub {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0 0 18px;
}

.hero-tile {
  background: linear-gradient(135deg, var(--navy), #1a2440);
  color: #fff;
  border-radius: var(--radius);
  padding: 36px 40px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.hero-tile::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 180%;
  background: radial-gradient(circle, rgba(233, 30, 99, 0.18), transparent 60%);
  pointer-events: none;
}
.hero-tile-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}
.hero-tile-name {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}
.hero-tile-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 22px;
}
.hero-stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 6px;
  font-weight: 600;
}
.hero-stat-value {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.hero-tile-pitch {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
  line-height: 1.5;
}
.hero-tile-details {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-tile-details summary {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  list-style: none;
  user-select: none;
}
.hero-tile-details summary::before {
  content: "+ ";
  display: inline;
}
.hero-tile-details[open] summary::before {
  content: "− ";
}
.hero-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 12px;
}
.hero-details-grid > div {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.hero-details-grid span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.5);
}
.hero-details-grid strong {
  font-size: 16px;
  color: #fff;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}
@media (max-width: 640px) {
  .hero-details-grid { grid-template-columns: 1fr; gap: 8px; }
}

.results-howto {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 22px;
  margin-top: 14px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}
.results-howto strong { color: var(--text); margin-right: 4px; }
.results-howto em { font-style: normal; font-weight: 600; color: var(--text); }

.hero-tile-context {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-tile-context .context-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}
.hero-tile-context .context-line strong {
  color: #fff;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.hero-roi {
  background: rgba(233, 30, 99, 0.18);
  border: 1px solid rgba(233, 30, 99, 0.35);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin: 4px 0 18px;
}
.hero-roi-headline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 12px;
  line-height: 1.45;
}
.hero-roi-headline strong { color: #fff; font-weight: 700; }
.hero-roi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.hero-roi-stat span {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  margin-bottom: 3px;
}
.hero-roi-stat strong {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 640px) {
  .hero-roi-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hero-roi-stat strong { font-size: 16px; }
}
.hero-tile-verdict {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  margin-right: 12px;
}
.hero-tile-note {
  display: inline-block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 8px;
}

@media (max-width: 640px) {
  .hero-tile-stats { grid-template-columns: 1fr; gap: 16px; }
  .hero-tile-name { font-size: 22px; }
  .hero-stat-value { font-size: 24px; }
}

.ranked-table-wrap {
  overflow-x: auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  -webkit-overflow-scrolling: touch;
}
.ranked-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  table-layout: fixed;
}
.ranked-table thead {
  background: var(--warm);
}
.ranked-table th {
  padding: 12px 10px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-bottom: 1px solid var(--border);
  vertical-align: bottom;
  line-height: 1.3;
}
.ranked-table td {
  padding: 14px 10px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.ranked-table th:nth-child(1), .ranked-table td:nth-child(1) { width: 22%; }
.ranked-table th:nth-child(2), .ranked-table td:nth-child(2) { width: 12%; }
.ranked-table th:nth-child(3), .ranked-table td:nth-child(3) { width: 12%; }
.ranked-table th:nth-child(4), .ranked-table td:nth-child(4) { width: 11%; }
.ranked-table th:nth-child(5), .ranked-table td:nth-child(5) { width: 11%; }
.ranked-table th:nth-child(6), .ranked-table td:nth-child(6) { width: 11%; }
.ranked-table th:nth-child(7), .ranked-table td:nth-child(7) { width: 21%; }
.ranked-table tbody tr:last-child td { border-bottom: 0; }
.ranked-table tbody tr:nth-child(even) { background: rgba(240, 239, 237, 0.35); }
.ranked-table tbody tr.row-capacity { background: rgba(217, 119, 6, 0.06); }
.ranked-table tbody tr.row-policy { background: rgba(220, 38, 38, 0.04); }
.ranked-table .num { font-variant-numeric: tabular-nums; white-space: nowrap; }
.ranked-table .service-cell strong { display: block; font-weight: 600; }
.ranked-table .service-cell small { color: var(--text-soft); font-size: 11px; }
.ranked-table .cpa-cell .range {
  display: block;
  font-size: 11px;
  color: var(--text-soft);
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  margin-top: 2px;
}
.ranked-table .num { line-height: 1.3; }
.ranked-table .cap-detail {
  display: inline-block;
  font-size: 11px;
  color: var(--text-soft);
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  margin-top: 2px;
}
.ranked-table .cap-pill {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--amber-soft);
  color: var(--amber);
  padding: 2px 6px;
  border-radius: 999px;
  margin-left: 4px;
  vertical-align: middle;
}
.ranked-table .value-cell strong {
  font-weight: 700;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.ranked-table tbody tr.row-demand-capped { background: rgba(217, 119, 6, 0.04); }

/* Verdict badges */
.badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.3;
}
.badge.scale            { background: var(--green-soft); color: var(--green); }
.badge.test             { background: var(--amber-green-soft); color: var(--amber-green); }
.badge.capacity         { background: var(--amber-soft); color: var(--amber); border: 1px dashed var(--amber); }
.badge.funnel           { background: var(--amber-soft); color: var(--amber); }
.badge.retention        { background: var(--green-soft); color: var(--green); border: 1px solid rgba(22, 163, 74, 0.3); }
.badge.downstream       { background: var(--amber-green-soft); color: var(--amber-green); }
.badge.policy           { background: var(--red-soft); color: var(--red); }
.badge.poor             { background: var(--grey-soft); color: var(--grey); }

/* ---------- Growth plan (consolidated results card) ---------- */

.growth-plan {
  background: linear-gradient(135deg, var(--navy), #1a2440);
  color: #fff;
  border-radius: var(--radius);
  padding: 36px 40px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.growth-plan::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 180%;
  background: radial-gradient(circle, rgba(233, 30, 99, 0.18), transparent 60%);
  pointer-events: none;
}
.growth-plan-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}
.growth-plan-name {
  font-size: 34px;
  font-weight: 700;
  margin: 0 0 14px;
  line-height: 1.15;
}
.growth-plan-pitch {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 22px;
  line-height: 1.55;
  max-width: 760px;
}
.growth-plan-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
@media (max-width: 720px) { .growth-plan-stats { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
.gp-stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
  margin-bottom: 6px;
}
.gp-stat-value {
  font-size: 28px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
  color: #fff;
}
.growth-plan-allocations {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.gp-allocation-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  font-size: 14px;
}
@media (max-width: 720px) {
  .gp-allocation-row { grid-template-columns: 1fr 1fr; }
  .gp-alloc-name { grid-column: 1 / -1; }
}
.gp-alloc-name {
  font-weight: 600;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.gp-alloc-name small {
  font-weight: 400;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
}
.gp-alloc-row {
  font-variant-numeric: tabular-nums;
}
.gp-alloc-row span {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}
.gp-allocation-row > div:not(.gp-alloc-name) {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: #fff;
}
.gp-allocation-row > div:not(.gp-alloc-name) span {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}
.gp-alloc-role {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 2px 8px;
  border-radius: 999px;
  margin-right: 8px;
  vertical-align: middle;
}
.gp-alloc-core .gp-alloc-role { background: rgba(22, 163, 74, 0.30); color: #86efac; }
.gp-alloc-test .gp-alloc-role { background: rgba(217, 119, 6, 0.30); color: #fcd34d; }
.gp-alloc-scale .gp-alloc-role { background: rgba(101, 163, 13, 0.30); color: #bef264; }
.gp-alloc-core { border-left: 3px solid #16a34a; }
.gp-alloc-test { border-left: 3px solid #d97706; }
.gp-alloc-scale { border-left: 3px solid #65a30d; }
.gp-allocation-empty {
  padding: 14px 18px;
  background: rgba(220, 38, 38, 0.18);
  border: 1px solid rgba(220, 38, 38, 0.4);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: #fff;
  line-height: 1.55;
}
.gp-allocation-empty strong { display: block; margin-bottom: 4px; }
.growth-plan-warnings {
  margin-top: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.growth-plan-warnings h4 {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.85);
}
.growth-plan-warnings ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.growth-plan-warnings li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}
.growth-plan-warnings li::before {
  content: "•";
  position: absolute;
  left: 6px;
  top: 0;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
}
.growth-plan-warnings li.severity-warn::before { color: #fcd34d; }

/* ---------- Budget growth ladder ---------- */

.budget-ladder {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}
@media (max-width: 720px) { .budget-ladder { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .budget-ladder { grid-template-columns: 1fr; } }

.ladder-step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  position: relative;
  box-shadow: var(--shadow-sm);
  opacity: 0.55;
}
.ladder-step-past { opacity: 0.4; }
.ladder-step-current {
  opacity: 1;
  border-color: var(--pink);
  border-width: 2px;
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.15);
  background: linear-gradient(135deg, #fef2f8, #fce7f3);
}
.ladder-step-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.ladder-step-current .ladder-step-label { color: var(--pink-dark); }
.ladder-step-headline {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
}
.ladder-step-detail {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.ladder-step-marker {
  display: inline-block;
  margin-top: 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--pink);
  color: #fff;
  padding: 3px 10px;
  border-radius: 999px;
}

/* ---------- Disclaimer ---------- */

.gp-disclaimer {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin: -8px 0 0;
  line-height: 1.5;
  font-style: italic;
}

/* ---------- Grouped service cards ---------- */

.service-group {
  margin-bottom: 32px;
}
.service-group-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: var(--warm);
  border-left: 4px solid var(--border-strong);
}
.service-group.group-start    .service-group-head { border-left-color: var(--green); background: rgba(22, 163, 74, 0.06); }
.service-group.group-grow     .service-group-head { border-left-color: var(--amber); background: rgba(217, 119, 6, 0.06); }
.service-group.group-gateway  .service-group-head { border-left-color: var(--amber-green); background: rgba(101, 163, 13, 0.06); }
.service-group.group-compliance .service-group-head { border-left-color: var(--red); background: rgba(220, 38, 38, 0.04); }
.service-group.group-skip     .service-group-head { border-left-color: var(--grey); background: var(--grey-soft); }

.service-group-title {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}
.service-group-intro {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 720px) { .service-cards { grid-template-columns: 1fr; } }

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}
.card-title-block { flex: 1; min-width: 0; }
.card-title {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
}
.card-meta {
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.4;
}
.card-reason {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

.card-bar-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.card-bar-track {
  height: 10px;
  background: var(--warm);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.card-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: var(--text-muted);
  transition: width 0.35s ease;
}
.card-bar-fill.bar-start    { background: linear-gradient(90deg, #4ade80, var(--green)); }
.card-bar-fill.bar-grow     { background: linear-gradient(90deg, #fbbf24, var(--amber)); }
.card-bar-fill.bar-gateway  { background: linear-gradient(90deg, #a3e635, var(--amber-green)); }
.card-bar-fill.bar-compliance { background: linear-gradient(90deg, #f87171, var(--red)); }
.card-bar-fill.bar-skip     { background: var(--grey); }
.card-bar-fill.is-negative  { background: var(--red); width: 4px !important; }
.card-bar-label {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
}
.card-bar-label strong {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  margin: 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--border);
}
.card-stats > div { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.card-stats dt {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}
.card-stats dd {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* ---------- What not to do ---------- */

.dont-do {
  margin-top: 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
}
.dont-do-title {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}
.dont-do-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dont-do-list li {
  font-size: 15px;
  color: var(--text);
  line-height: 1.55;
  padding-left: 26px;
  position: relative;
}
.dont-do-list li::before {
  content: "✗";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-weight: 700;
  font-size: 16px;
}

/* ---------- HMDG diagnostic CTA ---------- */

.hmdg-cta {
  margin-top: 32px;
  background: linear-gradient(135deg, var(--navy), #1a2440);
  color: #fff;
  border-radius: var(--radius);
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hmdg-cta::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 180%;
  background: radial-gradient(circle, rgba(233, 30, 99, 0.18), transparent 60%);
  pointer-events: none;
}
.hmdg-cta-inner {
  position: relative;
  max-width: 760px;
}
.hmdg-cta h3 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}
.hmdg-cta p {
  margin: 0 0 20px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}
.hmdg-cta .btn-primary {
  display: inline-block;
  text-decoration: none;
}
.hmdg-cta .btn-primary:hover { text-decoration: none; }

/* ---------- Investment summary ---------- */

.investment-summary {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.inv-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 720px) { .inv-stats { grid-template-columns: repeat(2, 1fr); } }
.inv-stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 6px;
}
.inv-stat-value {
  font-size: 26px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--text);
  line-height: 1.1;
}
.inv-allocations {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.inv-alloc-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 14px;
  align-items: baseline;
  padding: 10px 14px;
  background: var(--warm);
  border-radius: var(--radius-sm);
  font-size: 14px;
}
.inv-alloc-name {
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.inv-alloc-name small {
  font-weight: 400;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}
.inv-alloc-role {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 2px 8px;
  border-radius: 999px;
  margin-right: 6px;
  vertical-align: middle;
}
.inv-alloc-core .inv-alloc-role { background: var(--green-soft); color: var(--green); }
.inv-alloc-test .inv-alloc-role { background: var(--amber-soft); color: var(--amber); }
.inv-alloc-scale .inv-alloc-role { background: var(--amber-green-soft); color: var(--amber-green); }
.inv-alloc-core { border-left: 3px solid var(--green); }
.inv-alloc-test { border-left: 3px solid var(--amber); }
.inv-alloc-scale { border-left: 3px solid var(--amber-green); }
.inv-alloc-row > div span {
  display: block;
  font-size: 11px;
  color: var(--text-soft);
  font-weight: 500;
  margin-top: 2px;
}
.inv-alloc-row > div:not(.inv-alloc-name) {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}
@media (max-width: 720px) {
  .inv-alloc-row { grid-template-columns: 1fr 1fr; }
  .inv-alloc-name { grid-column: 1 / -1; }
}

/* ---------- Section sub-heading ---------- */

.section-title {
  font-size: 22px;
  margin: 32px 0 6px;
  font-weight: 700;
}
.section-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0 0 16px;
  line-height: 1.55;
}

.row-input-percent { width: 60px; }
.badge-rating {
  display: block;
  font-size: 11px;
  color: var(--text-soft);
  margin-top: 4px;
  font-weight: 500;
}

/* ---------- At-a-glance ---------- */

.glance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
@media (max-width: 720px) { .glance-grid { grid-template-columns: 1fr; } }
.glance-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}
.glance-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 6px;
}
.glance-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
}
.glance-stat {
  font-size: 26px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--pink-dark);
  line-height: 1.1;
}
.glance-stat span {
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 500;
  margin-left: 4px;
}
.glance-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ---------- Section sub-heading ---------- */

.section-title {
  font-size: 18px;
  margin: 28px 0 4px;
  font-weight: 700;
}
.section-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 14px;
}

/* ---------- Hero stats — 4 column ---------- */

.hero-tile-stats {
  grid-template-columns: repeat(4, 1fr) !important;
}
@media (max-width: 720px) {
  .hero-tile-stats { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ---------- Percent input ---------- */

.row-input-percent { width: 60px; }

/* ---------- Warnings ---------- */

.warnings {
  margin-top: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--amber);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
}
.warnings h3 {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--amber);
}
.warnings ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.warnings li {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
  padding-left: 22px;
  position: relative;
}
.warnings li::before {
  content: "•";
  position: absolute;
  left: 8px;
  top: 0;
  color: var(--amber);
  font-weight: 700;
}
.warnings li.severity-info::before { color: var(--text-soft); }

/* ---------- Email gate ---------- */

.email-gate {
  margin-top: 32px;
  background: linear-gradient(135deg, #fef2f8, #fce7f3);
  border: 1px solid rgba(233, 30, 99, 0.2);
  border-radius: var(--radius);
  padding: 32px;
}
.email-gate-inner { max-width: 600px; margin: 0 auto; }
.email-gate h2 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 700;
}
.email-gate p {
  margin: 0 0 20px;
  color: var(--text-muted);
  font-size: 15px;
}
.email-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}
@media (max-width: 640px) { .email-fields { grid-template-columns: 1fr; } }
.email-status {
  margin-top: 12px;
  font-size: 14px;
  color: var(--green);
  font-weight: 500;
}
.email-status.error { color: var(--red); }

/* ---------- Footer ---------- */

.footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.footer p { margin: 0 0 6px; }
.data-refresh { font-size: 11px; color: var(--text-soft); }

/* ---------- Toast ---------- */

.toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 100;
  max-width: 90%;
  text-align: center;
}

/* ---------- Mobile tweaks ---------- */

@media (max-width: 640px) {
  .page { padding: 24px 16px 100px; }
  .step { padding: 20px; }
  .step-collapsible-toggle { padding: 16px 20px; }
  .step-collapsible-body { padding: 0 20px 20px; }
  .hero-tile { padding: 22px; }
  .results-head h2 { font-size: 20px; }
  .email-gate { padding: 24px 20px; }
}

/* ========== LANDING PAGE ========== */

.brand-link { text-decoration: none; color: inherit; }
.brand-link:hover { opacity: 0.85; }

.landing-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.landing-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}
.landing-nav a:hover { color: var(--pink-dark); text-decoration: none; }

.btn-cta-header {
  background: var(--pink);
  color: #fff !important;
  border-color: var(--pink);
}
.btn-cta-header:hover {
  background: var(--pink-dark);
  border-color: var(--pink-dark);
  color: #fff !important;
}

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

.landing { background: #fff; }
.landing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Hero */
.landing-hero {
  padding: 96px 0 88px;
  text-align: center;
}
.landing-hero h1 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 auto 22px;
  max-width: 1000px;
  color: var(--text);
}
.landing-hero-sub {
  font-size: 22px;
  color: var(--text);
  font-weight: 500;
  margin: 0 auto 18px;
  max-width: 760px;
  line-height: 1.4;
}
.landing-hero-desc {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0 auto 36px;
  max-width: 720px;
  line-height: 1.55;
}
.landing-hero-cta {
  margin-bottom: 22px;
}
.landing-hero-meta {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  margin: 0 0 8px;
}
.landing-hero-privacy {
  font-size: 13px;
  color: var(--text-soft);
  margin: 0;
}

@media (max-width: 720px) {
  .landing-hero { padding: 56px 0 56px; }
  .landing-hero h1 { font-size: 36px; }
  .landing-hero-sub { font-size: 18px; }
  .landing-hero-desc { font-size: 15px; }
}

/* Sections */
.landing-section {
  padding: 80px 0;
  background: #fff;
}
.landing-section-warm {
  background: var(--bg);
}
.landing-h2 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  color: var(--text);
  max-width: 900px;
}
.landing-prose {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 48px;
}
.landing-prose p {
  margin: 0 0 18px;
}
.landing-prose p:last-child { margin-bottom: 0; }

@media (max-width: 720px) {
  .landing-section { padding: 56px 0; }
  .landing-h2 { font-size: 28px; }
  .landing-prose { font-size: 15px; margin-bottom: 32px; }
}

/* Feature cards (3-up) */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .feature-cards { grid-template-columns: 1fr; } }
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 28px 30px;
  box-shadow: var(--shadow-sm);
}
.landing-section-warm .feature-card { background: #fff; }
.feature-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.3;
  color: var(--text);
}
.feature-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Steps block (3-step process) */
.steps-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 36px;
}
@media (max-width: 900px) { .steps-block { grid-template-columns: 1fr; } }
.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.step-card-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.step-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  color: var(--text);
}
.step-card > p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
}
.step-example {
  background: var(--warm);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.example-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
}
.example-row span { color: var(--text-muted); }
.example-row strong {
  color: var(--text);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.centered-cta {
  text-align: center;
  margin-top: 8px;
}

/* What you get grid */
.includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .includes-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .includes-grid { grid-template-columns: 1fr; } }
.include-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
}
.include-item h4 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.include-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
}

/* Companion buttons */
.companion-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

/* FAQs */
.faq-list {
  max-width: 880px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 16px;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* Final CTA */
.landing-final-cta {
  padding: 96px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--navy), #1a2440);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.landing-final-cta::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 180%;
  background: radial-gradient(circle, rgba(233, 30, 99, 0.18), transparent 60%);
  pointer-events: none;
}
.landing-final-cta h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  position: relative;
}
.landing-final-cta .btn-primary {
  position: relative;
}
.landing-final-meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin: 22px 0 0;
  position: relative;
}

@media (max-width: 720px) {
  .landing-final-cta { padding: 56px 0; }
  .landing-final-cta h2 { font-size: 26px; }
}

/* Landing footer */
.landing-footer {
  background: #fff;
  padding: 32px 0 40px;
  border-top: 1px solid var(--border);
}
.landing-footer-line {
  font-size: 14px;
  color: var(--text);
  margin: 0 0 6px;
}
.landing-footer-line span {
  color: var(--text-soft);
  margin: 0 6px;
}
.landing-footer-line a {
  color: var(--pink-dark);
}
.landing-footer-disclaimer {
  font-size: 12px;
  color: var(--text-soft);
  margin: 0;
}
