/* ============================================================================
   ochousebuyers.com — Custom OC Cash-Buyer Theme
   Built on the local-service template, re-palette'd navy+orange for real-estate
   trust/authority feel. Structure preserved; color tokens swapped.
   ============================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Nunito:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --ink:         #0b1628;
  --ink-soft:    #1f2f4a;
  --ink-muted:   #4a5a74;
  --paper:       #ffffff;
  --paper-2:     #f5f8fc;
  --paper-3:     #e9f0f9;
  --rule:        #d7e1ef;
  --brand:       #0f4c81;   /* trust navy */
  --brand-dark:  #0a3a66;
  --brand-glow:  #d4e4f4;
  --accent:      #f08c0c;   /* action orange */
  --accent-dark: #c67009;
  --sun:         #ffb84d;
  --success:     #188a52;
  --danger:      #b91c1c;

  --step--1:  0.9rem;
  --step-0:   1.05rem;
  --step-1:   1.2rem;
  --step-2:   1.5rem;
  --step-3:   clamp(2rem, 1.6rem + 2vw, 2.8rem);
  --step-4:   clamp(2.5rem, 2rem + 3vw, 3.8rem);
  --step-5:   clamp(3rem, 2.2rem + 5vw, 5.4rem);

  --font-display: 'Poppins', 'Nunito', sans-serif;
  --font-body: 'Nunito', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 4px rgba(15,76,129,0.08);
  --shadow-md: 0 6px 16px rgba(15,76,129,0.12);
  --shadow-lg: 0 12px 32px rgba(15,76,129,0.15);

  --measure: 68ch;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
}

.wrap { max-width: 1240px; margin-inline: auto; padding-inline: clamp(1rem, 3vw, 2rem); }

a { color: var(--brand); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { color: var(--accent-dark); }

/* ---------- Top phone bar ---------- */
.topbar {
  background: var(--ink); color: #fff;
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 600;
  padding-block: 0.55rem;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.topbar a { color: #fff; text-decoration: none; }
.topbar a:hover { color: var(--sun); text-decoration: underline; }
.topbar .tel { color: var(--sun); font-weight: 700; font-family: var(--font-display); }
.topbar-left, .topbar-right { display: flex; gap: 1.2rem; align-items: center; }
@media (max-width: 540px) {
  .topbar-left { display: none; }
  .topbar-inner { justify-content: center; }
}

/* ---------- Masthead ---------- */
.masthead {
  background: var(--paper);
  border-bottom: 3px solid var(--brand);
  padding-block: 0.9rem 1rem;
  position: sticky; top: 0; z-index: 40;
}
.masthead-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.wordmark {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 800; letter-spacing: -0.02em;
  color: var(--ink); text-decoration: none;
}
.wordmark em { font-style: normal; color: var(--accent); }
.nav ul { display: flex; gap: 0.4rem; margin: 0; padding: 0; list-style: none; align-items: center; }
.nav a {
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  color: var(--ink); text-decoration: none;
  padding: 0.5rem 0.9rem; border-radius: var(--radius-pill);
  transition: all .15s;
}
.nav a:hover, .nav a[aria-current="page"] { background: var(--paper-3); color: var(--brand); text-decoration: none; }
.nav details { display: none; }
@media (max-width: 720px) {
  .nav > ul { display: none; }
  .nav details { display: block; }
  .nav details summary {
    font-family: var(--font-body); font-weight: 600; font-size: 0.9rem;
    padding: 0.5rem 1rem; background: var(--paper-3); border-radius: var(--radius-pill);
    cursor: pointer; list-style: none;
  }
  .nav details[open] > ul {
    flex-direction: column; background: var(--paper); padding: 0.75rem;
    border: 1px solid var(--rule); border-radius: var(--radius);
    box-shadow: var(--shadow-md); margin-top: 0.5rem; gap: 0;
  }
  .nav details[open] > ul li { width: 100%; }
  .nav details[open] > ul a { display: block; width: 100%; }
}

/* ---------- Hero ---------- */
.hero {
  padding-block: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 3.5rem);
  background:
    radial-gradient(ellipse 70% 60% at 85% 10%, var(--brand-glow), transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 80%, var(--paper-2), transparent 65%),
    var(--paper);
  position: relative;
}
.hero-inner { max-width: 1100px; margin-inline: auto; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-size: 0.9rem; font-weight: 700;
  color: var(--brand); background: #fff;
  padding: 0.5rem 1rem; border-radius: var(--radius-pill);
  border: 2px solid var(--brand); margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.hero-kicker::before { content: "🏡"; font-size: 1rem; }
.hero h1 {
  font-family: var(--font-display);
  font-size: var(--step-5); font-weight: 800;
  line-height: 1.05; letter-spacing: -0.03em;
  margin: 0 0 1.5rem; color: var(--ink);
  max-width: 22ch;
}
.hero h1 em {
  font-style: normal; color: var(--accent);
  position: relative; display: inline-block;
}
.hero h1 em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0.05em; height: 0.18em;
  background: var(--sun); z-index: -1; opacity: 0.5; border-radius: 4px;
}
.hero-lede {
  font-size: clamp(1.15rem, 1rem + 0.6vw, 1.4rem);
  line-height: 1.5; color: var(--ink-soft);
  max-width: 58ch; margin: 0 0 2rem;
  font-weight: 500;
}
.hero-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.hero-byline {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.9rem; color: var(--ink-soft); margin-top: 1.5rem;
  padding-top: 1.5rem; border-top: 2px dashed var(--rule);
}
.hero-byline::before { content: "✓"; color: var(--accent); font-weight: 900; }

.trust-strip {
  display: flex; gap: 2rem; flex-wrap: wrap; align-items: center; justify-content: center;
  margin-top: 1.8rem; padding: 1rem 1.5rem;
  background: #fff; border: 2px solid var(--rule); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.trust-strip .item { display: flex; gap: 0.6rem; align-items: center; }
.trust-strip .stars { color: var(--sun); font-size: 1.1rem; letter-spacing: 1px; }
.trust-strip .item strong { font-family: var(--font-display); color: var(--ink); font-weight: 700; }
.trust-strip .item span { color: var(--ink-muted); font-size: 0.9rem; }

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 1.8rem;
  background: var(--accent); color: #fff;
  text-decoration: none; font-family: var(--font-display);
  font-weight: 700; font-size: 1rem;
  border-radius: var(--radius-pill); border: none; cursor: pointer;
  box-shadow: var(--shadow-md); transition: all .15s;
}
.btn-primary:hover {
  background: var(--accent-dark); transform: translateY(-2px);
  box-shadow: var(--shadow-lg); text-decoration: none; color: #fff;
}
.btn-primary svg { width: 18px; height: 18px; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 1.8rem;
  background: #fff; color: var(--ink);
  text-decoration: none; font-family: var(--font-display);
  font-weight: 700; font-size: 1rem;
  border: 2px solid var(--ink); border-radius: var(--radius-pill); cursor: pointer;
  transition: all .15s;
}
.btn-ghost:hover { background: var(--ink); color: #fff; text-decoration: none; }

/* ---------- Stats band ---------- */
.stats-band {
  padding-block: 3rem;
  background: var(--brand); color: #fff;
}
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 2rem; }
.stat-card { text-align: center; padding: 0.5rem; }
.stat-num {
  display: block; font-family: var(--font-display);
  font-size: clamp(2rem, 1.5rem + 2vw, 3rem); font-weight: 800;
  line-height: 1; color: var(--sun);
  letter-spacing: -0.02em; margin-bottom: 0.5rem;
}
.stat-label { display: block; font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.3rem; }
.stat-sub { display: block; font-size: 0.88rem; color: rgba(255,255,255,0.75); }

/* ---------- Features section ---------- */
.features { padding-block: clamp(3rem, 6vw, 5rem); }
.features-header { text-align: center; max-width: 760px; margin: 0 auto 3rem; }
.features-header .kicker {
  display: inline-block; font-family: var(--font-display); font-size: 0.85rem; font-weight: 700;
  color: var(--brand); background: var(--paper-2);
  padding: 0.4rem 1rem; border-radius: var(--radius-pill); margin-bottom: 1rem;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.features-header h2 {
  font-family: var(--font-display); font-size: var(--step-4); font-weight: 800;
  line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 0.8rem;
}
.features-header h2 em { font-style: normal; color: var(--accent); }
.features-header p { color: var(--ink-soft); font-size: var(--step-1); margin: 0; }

.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.5rem; }
.feature-card {
  background: #fff; border: 2px solid var(--rule);
  border-radius: var(--radius-lg); padding: 1.75rem;
  text-decoration: none; color: var(--ink);
  transition: all .2s; display: flex; flex-direction: column;
  position: relative;
}
.feature-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-lg); transform: translateY(-3px); text-decoration: none;
}
.feature-card .num-pill {
  display: inline-block; font-family: var(--font-display); font-size: 0.75rem; font-weight: 700;
  color: var(--brand); background: var(--paper-2);
  padding: 0.25rem 0.7rem; border-radius: var(--radius-pill);
  margin-bottom: 1rem; align-self: flex-start;
}
.feature-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--brand); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; box-shadow: var(--shadow-sm);
  font-size: 22px;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h3 {
  font-family: var(--font-display); font-size: var(--step-2); font-weight: 700;
  line-height: 1.3; margin: 0 0 0.5rem;
}
.feature-card p { margin: 0; font-size: 0.95rem; color: var(--ink-soft); flex-grow: 1; }
.feature-card .arrow {
  margin-top: 1rem; font-size: 0.9rem; font-weight: 700; color: var(--accent);
  display: inline-flex; align-items: center; gap: 0.3rem;
}
.feature-card:hover .arrow { gap: 0.6rem; }

/* ---------- Section band ---------- */
.section-band {
  padding-block: clamp(3rem, 5vw, 5rem); text-align: center;
  background: var(--accent); color: #fff;
  margin-block: 4rem;
  position: relative; overflow: hidden;
}
.section-band::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 8px;
  background: repeating-linear-gradient(45deg, var(--sun) 0 12px, transparent 12px 24px);
}
.section-band::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 8px;
  background: repeating-linear-gradient(45deg, var(--sun) 0 12px, transparent 12px 24px);
}
.section-band h2 {
  font-family: var(--font-display); font-size: var(--step-3); font-weight: 800;
  margin: 0 0 1rem; color: #fff; max-width: 28ch; margin-inline: auto;
  line-height: 1.2; letter-spacing: -0.02em;
}
.section-band h2 em { font-style: normal; color: var(--ink); }
.section-band p { color: rgba(255,255,255,0.95); max-width: 54ch; margin: 0 auto 1.5rem; font-size: var(--step-1); font-weight: 500; }
.section-band .btn-primary { background: var(--ink); }
.section-band .btn-primary:hover { background: #000; }

/* ---------- Article layout ---------- */
.article { max-width: var(--measure); margin: 0 auto; padding-block: 2rem 4rem; }
.article p, .article ul, .article ol { font-size: var(--step-0); line-height: 1.75; margin: 0 0 1.2em; }
.article > p:first-of-type { font-size: 1.15rem; color: var(--ink-soft); }
.article h2 {
  font-family: var(--font-display); font-size: var(--step-3); font-weight: 800;
  line-height: 1.2; letter-spacing: -0.02em; margin: 3rem 0 1rem;
}
.article h2 .num {
  display: block; font-family: var(--font-display); font-size: 0.85rem; font-weight: 700;
  color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.4rem;
}
.article h3 { font-family: var(--font-display); font-size: var(--step-2); font-weight: 700; margin: 2rem 0 0.8rem; color: var(--brand); }
.article h4 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin: 1.5rem 0 0.5rem; color: var(--ink); }
.article .dropcap::first-letter {
  font-family: var(--font-display); font-size: 3.8em; float: left; line-height: 0.9;
  padding-right: 0.08em; font-weight: 800; color: var(--accent);
}
.article .pullquote {
  font-family: var(--font-display); font-size: var(--step-2); font-weight: 700;
  line-height: 1.3; color: var(--ink);
  background: var(--paper-2); padding: 1.5rem 1.75rem;
  border-radius: var(--radius-lg); border-left: 5px solid var(--accent);
  margin: 3rem 0; position: relative;
}
.article .pullquote::before {
  content: "❝"; position: absolute; top: -0.5rem; left: 1rem;
  font-size: 3rem; color: var(--sun); line-height: 1;
  font-family: serif;
}
.article .factbox {
  background: var(--paper-2); border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem; margin: 2.5rem 0; border: 2px solid var(--rule);
}
.article .factbox-label {
  font-family: var(--font-display); font-size: 0.75rem; font-weight: 700;
  color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 0.5rem;
}
.article .factbox h4 { font-family: var(--font-display); font-size: var(--step-1); font-weight: 700; margin: 0 0 0.5rem; color: var(--ink); }
.article .factbox p { margin: 0 0 0.6rem; font-size: 0.96rem; }
.article .factbox p:last-child { margin-bottom: 0; }
.article .warning {
  background: #fff4e6; border-left: 5px solid var(--accent);
  padding: 1.2rem 1.5rem; border-radius: var(--radius-lg);
  margin: 2rem 0;
}
.article .warning strong { color: var(--danger); display: block; margin-bottom: 0.3rem; font-family: var(--font-display); font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase; }
.article table { border-collapse: collapse; width: 100%; margin: 2rem 0; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); font-size: 0.96rem; }
.article th, .article td { padding: 0.85rem 1rem; text-align: left; border-bottom: 1px solid var(--rule); }
.article th { background: var(--brand); color: #fff; font-weight: 700; font-size: 0.9rem; font-family: var(--font-display); }
.article tr:last-child td { border-bottom: none; }
.article tr.highlight td { background: #fff4e6; font-weight: 600; }

.article .timeline { list-style: none; padding: 0; margin: 2rem 0; }
.article .timeline li {
  position: relative; padding: 1rem 1.2rem 1rem 3.5rem; margin-bottom: 0.8rem;
  background: #fff; border: 2px solid var(--rule); border-radius: var(--radius-lg);
  font-size: 0.98rem;
}
.article .timeline li::before {
  counter-increment: timeline-step;
  content: counter(timeline-step);
  position: absolute; left: 0.7rem; top: 0.9rem;
  width: 2.2rem; height: 2.2rem; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1rem;
}
.article .timeline { counter-reset: timeline-step; }
.article .timeline strong { font-family: var(--font-display); color: var(--brand); display: block; margin-bottom: 0.2rem; }
.article .timeline .daylabel { font-family: var(--font-mono); font-size: 0.82rem; color: var(--ink-muted); margin-left: 0.5rem; font-weight: 500; }

.article .checklist { list-style: none; padding: 0; margin: 1.5rem 0; }
.article .checklist li {
  position: relative; padding-left: 2rem; margin-bottom: 0.8rem;
}
.article .checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 1.4rem; height: 1.4rem; border-radius: 50%;
  background: var(--success); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 0.85rem;
}
.article .xlist { list-style: none; padding: 0; margin: 1.5rem 0; }
.article .xlist li {
  position: relative; padding-left: 2rem; margin-bottom: 0.8rem;
}
.article .xlist li::before {
  content: "✕"; position: absolute; left: 0; top: 0;
  width: 1.4rem; height: 1.4rem; border-radius: 50%;
  background: var(--danger); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 0.82rem;
}

.article .qa { margin: 2rem 0; }
.article .qa details {
  background: #fff; border: 2px solid var(--rule); border-radius: var(--radius-lg);
  margin-bottom: 0.8rem; padding: 1rem 1.4rem;
}
.article .qa details[open] { border-color: var(--brand); }
.article .qa summary {
  cursor: pointer; font-family: var(--font-display); font-weight: 700;
  color: var(--ink); font-size: 1.05rem;
  list-style: none; padding-right: 1.5rem; position: relative;
}
.article .qa summary::after {
  content: "+"; position: absolute; right: 0; top: -0.1rem;
  color: var(--accent); font-size: 1.5rem; font-weight: 700; transition: transform .15s;
}
.article .qa details[open] summary::after { content: "−"; }
.article .qa details p { margin: 0.8rem 0 0; font-size: 0.98rem; }

.article .decision-tree {
  background: var(--paper-2); padding: 1.5rem 1.75rem; margin: 2rem 0;
  border-radius: var(--radius-lg); border: 2px solid var(--rule);
}
.article .decision-tree h4 { margin-top: 0; color: var(--accent); }
.article .decision-tree ol { padding-left: 1.5rem; }
.article .decision-tree ol li { margin-bottom: 0.6rem; }
.article .decision-tree .dt-row { display: grid; gap: 1rem; margin-bottom: 1rem; }
.article .decision-tree .dt-row + .dt-row { grid-template-columns: 1fr 1fr; }
@media (max-width: 640px) { .article .decision-tree .dt-row + .dt-row { grid-template-columns: 1fr; } }
.article .decision-tree .dt-q {
  background: var(--primary); color: #fff;
  padding: 0.9rem 1.15rem; border-radius: var(--radius);
  font-weight: 700; text-align: center;
}
.article .decision-tree .dt-yes, .article .decision-tree .dt-no {
  background: #fff; padding: 1rem 1.15rem;
  border-left: 4px solid var(--accent); border-radius: var(--radius);
  font-size: 0.96rem; line-height: 1.55;
}
.article .decision-tree .dt-yes { border-left-color: var(--primary); }
.article .decision-tree .dt-no { border-left-color: var(--accent); }

/* ---------- Contact page grid ---------- */
.contact-grid {
  display: grid; gap: 1.25rem; grid-template-columns: repeat(3, 1fr);
  margin: 2rem 0;
}
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--paper-2); padding: 1.5rem 1.5rem 1.25rem;
  border-radius: var(--radius-lg); border: 1px solid var(--rule);
}
.contact-card h3 { margin: 0 0 0.5rem; font-size: 1.05rem; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.contact-card p { margin: 0.4rem 0; }
.contact-card a { color: var(--primary); font-weight: 600; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 1rem; }
.form-row { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-size: 0.9rem; font-weight: 600; color: var(--ink); }
.field input, .field textarea {
  font-family: var(--font-body); font-size: 1rem;
  padding: 0.8rem 1rem;
  background: #fff; color: var(--ink);
  border: 2px solid var(--rule); border-radius: var(--radius);
  outline: none; transition: all .15s;
}
.field input:focus, .field textarea:focus {
  border-color: var(--brand); box-shadow: 0 0 0 4px rgba(15,76,129,0.1);
}
.field textarea { min-height: 120px; resize: vertical; }
.hp-field { position: absolute !important; left: -9999px !important; height: 1px !important; width: 1px !important; overflow: hidden; }
.form-submit {
  padding: 1rem 1.8rem;
  background: var(--accent); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  border: none; border-radius: var(--radius-pill); cursor: pointer;
  box-shadow: var(--shadow-md); transition: all .15s; justify-self: start;
}
.form-submit:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.fine-print { font-size: 0.82rem; color: var(--ink-muted); margin: 0.5rem 0 0; }
.flash { padding: 0.9rem 1.2rem; font-size: 0.95rem; margin-bottom: 1.5rem; border-radius: var(--radius); font-weight: 500; }
.flash-error { background: #fef2f2; color: #991b1b; border: 2px solid #fecaca; }

.inline-form {
  background: var(--paper-2); border: 2px solid var(--rule);
  border-radius: var(--radius-lg); padding: 2rem; margin: 3rem auto;
  max-width: var(--measure); position: relative;
}
.inline-form .kicker {
  display: inline-block; font-family: var(--font-display); font-size: 0.8rem; font-weight: 700;
  color: var(--accent); background: #fff;
  padding: 0.3rem 0.8rem; border-radius: var(--radius-pill);
  text-transform: uppercase; letter-spacing: 0.05em; margin: 0 0 0.8rem;
}
.inline-form h3 { font-family: var(--font-display); font-size: var(--step-2); font-weight: 800; margin: 0 0 0.8rem; color: var(--ink); }
.inline-form h3 em { font-style: normal; color: var(--accent); }
.inline-form > p { color: var(--ink-soft); margin: 0 0 1.5rem; font-size: 1.05rem; }

.benefit-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem 1.5rem; padding: 1.25rem; margin-bottom: 1.5rem;
  background: #fff; border: 2px solid var(--rule); border-radius: var(--radius-lg);
}
.benefit { display: flex; gap: 0.75rem; align-items: flex-start; }
.benefit svg { width: 26px; height: 26px; color: var(--accent); flex-shrink: 0; }
.benefit strong { display: block; font-family: var(--font-display); font-size: 0.98rem; font-weight: 700; color: var(--ink); line-height: 1.3; margin-bottom: 0.2rem; }
.benefit span { font-size: 0.85rem; color: var(--ink-soft); }

/* ---------- Related ---------- */
.related { max-width: var(--measure); margin: 3rem auto 0; padding-top: 2rem; border-top: 2px dashed var(--rule); }
.related h2 {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: var(--ink); text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 1.5rem;
}
.related ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.related li {
  padding: 1.25rem 1.5rem; background: var(--paper-2); border: 2px solid transparent;
  border-radius: var(--radius-lg); transition: all .15s;
}
.related li:hover { background: #fff; border-color: var(--brand); transform: translateX(6px); }
.related li a { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--ink); text-decoration: none; }
.related li a:hover { color: var(--accent); }
.related li p { margin: 0.3rem 0 0; font-size: 0.92rem; color: var(--ink-soft); }

/* ---------- Sticky CTA (mobile) ---------- */
.sticky-cta {
  display: none;
  position: fixed; bottom: 12px; left: 12px; right: 12px;
  padding: 1rem 1.2rem; border-radius: var(--radius-pill);
  background: var(--accent); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  text-align: center; text-decoration: none;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 720px) {
  .sticky-cta { display: flex; justify-content: center; align-items: center; gap: 0.5rem; }
  main { padding-bottom: 80px; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #e9f0f9; padding-block: 3rem 2rem; margin-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2rem; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin: 0 0 1rem; color: #fff; }
.site-footer p { color: rgba(233,240,249,0.75); margin: 0 0 0.5rem; font-size: 0.92rem; line-height: 1.5; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.5rem; }
.site-footer a { color: rgba(233,240,249,0.85); font-size: 0.92rem; text-decoration: none; }
.site-footer a:hover { color: var(--sun); text-decoration: underline; }
.footer-bottom {
  display: flex; justify-content: space-between; padding-top: 1.5rem;
  border-top: 1px solid rgba(233,240,249,0.1); font-size: 0.85rem; color: rgba(233,240,249,0.6); flex-wrap: wrap; gap: 1rem;
}

/* ---------- 404 ---------- */
.e404-hero { padding-block: 5rem; text-align: center; }
.e404-hero h1 { font-size: var(--step-5); color: var(--accent); margin: 0; font-family: var(--font-display); font-weight: 800; }
.e404-hero h2 { font-size: var(--step-3); margin: 0.5rem 0 1rem; font-family: var(--font-display); }
.e404-hero p { color: var(--ink-soft); max-width: 50ch; margin: 0 auto 2rem; }
