/* Service Charge Rescue — shared styles. Mobile-first, calm and readable. */

:root {
  --blue-deep: #2c5f8a;
  --blue-mid: #3d74a3;
  --blue-soft: #dbe8f2;
  --blue-wash: #eef4f9;
  --ink: #24313f;
  --ink-soft: #4a5a6a;
  --white: #fdfefe;
  --amber-wash: #fdf3e3;
  --amber-edge: #e0b36a;
  --green: #2e7d5b;
  --radius: 14px;
  --shadow: 0 2px 10px rgba(44, 95, 138, 0.10);
}

* { box-sizing: border-box; }

html { font-size: 17px; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--blue-wash);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.page {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 1.1rem;
}

/* ---------- Header ---------- */

.site-header {
  padding: 1rem 0 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.site-header .brand {
  text-decoration: none;
  color: var(--blue-deep);
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.site-header .logo-mark { margin-right: 0.35rem; }

.site-nav {
  display: flex;
  gap: 1rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--blue-deep);
  font-weight: 600;
  font-size: 1rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.site-nav a:hover { text-decoration: underline; }
.site-nav a[aria-current="page"] { text-decoration: underline; }

/* ---------- Breadcrumbs ---------- */

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin: 0.6rem 0 1rem;
}

.breadcrumbs a { color: var(--blue-deep); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs span[aria-hidden="true"] { color: var(--blue-mid); }

/* ---------- Knowledge Base listing ---------- */

.kb { padding: 0.6rem 0 1rem; }

.kb h1 {
  color: var(--blue-deep);
  font-size: 1.7rem;
  margin: 0.2rem 0 0.4rem;
}

.kb-intro {
  color: var(--ink-soft);
  max-width: 40rem;
  margin: 0 0 1.4rem;
}

.kb-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
}

.kb-tab {
  border: 1.5px solid var(--blue-soft);
  background: var(--white);
  color: var(--blue-deep);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.92rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  min-height: 40px;
}

.kb-tab:hover { border-color: var(--blue-mid); }
.kb-tab.active {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  color: #fff;
}

.kb-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.kb-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.1rem 1.2rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: border-color 0.12s ease, transform 0.05s ease;
}

.kb-card:hover { border-color: var(--blue-mid); }
.kb-card:active { transform: scale(0.995); }

.kb-card-cat {
  align-self: flex-start;
  background: var(--blue-soft);
  color: var(--blue-deep);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
}

.kb-card-title {
  color: var(--blue-deep);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
}

.kb-card-excerpt {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.kb-card-date {
  color: var(--ink-soft);
  font-size: 0.82rem;
  margin-top: 0.1rem;
}

.kb-empty {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.6rem 1.4rem;
  text-align: center;
  color: var(--ink-soft);
}

.kb-cta { margin-top: 2rem; }

/* ---------- Knowledge Base article ---------- */

.kb-article { padding: 0.6rem 0 1rem; }

.kb-tag {
  display: inline-block;
  background: var(--blue-soft);
  color: var(--blue-deep);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.6rem;
}

.kb-article h1 {
  color: var(--blue-deep);
  font-size: 1.75rem;
  line-height: 1.25;
  margin: 0 0 1rem;
}

.kb-body {
  max-width: 40rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
}

.kb-body h2 {
  color: var(--blue-deep);
  font-size: 1.3rem;
  margin: 1.8rem 0 0.6rem;
}

.kb-body h3 {
  color: var(--blue-deep);
  font-size: 1.1rem;
  margin: 1.4rem 0 0.4rem;
}

.kb-body p { margin: 0 0 1rem; }
.kb-body ul, .kb-body ol { margin: 0 0 1rem; padding-left: 1.3rem; }
.kb-body li { margin-bottom: 0.4rem; }
.kb-body a { color: var(--blue-deep); font-weight: 600; }

.kb-related { margin: 2.4rem 0 0; }
.kb-related h2 {
  color: var(--blue-deep);
  font-size: 1.3rem;
  margin: 0 0 1rem;
}

.kb-article-cta {
  margin: 2rem 0 0;
  background: var(--blue-soft);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
  text-align: center;
}

.kb-article-cta a {
  color: var(--blue-deep);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  line-height: 1.4;
}

.kb-article-cta a:hover { text-decoration: underline; }

@media (min-width: 600px) {
  .kb-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Trust strip ---------- */

.trust-strip {
  background: var(--blue-soft);
  color: var(--blue-deep);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 600;
  margin: 0.8rem 0 0;
}

/* ---------- Hero ---------- */

.hero {
  text-align: center;
  padding: 1.2rem 0 1rem;
}

.hero h1 {
  font-size: 1.05rem;
  line-height: 1.3;
  margin: 0 auto 0.7rem;
  max-width: 40rem;
  color: var(--blue-deep);
}

.hero-lead {
  font-size: 1rem;
  color: var(--ink);
  margin: 1.6rem auto 0.9rem;
  max-width: 36rem;
  line-height: 1.55;
}

.hero-urgent {
  background: var(--amber-wash);
  border: 1.5px solid var(--amber-edge);
  color: #6b4e1c;
  border-radius: var(--radius);
  padding: 0.8rem 1.1rem;
  margin: 0 auto 1.4rem;
  max-width: 36rem;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.5;
}

.pack-lead {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-deep);
  margin: 0 auto 0.3rem;
}

.hero .sub {
  font-size: 1.02rem;
  color: var(--ink-soft);
  margin: 0 auto 0;
  max-width: 34rem;
}

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

.btn {
  display: block;
  width: 100%;
  min-height: 58px;
  padding: 0.95rem 1.4rem;
  border: none;
  border-radius: var(--radius);
  font-size: 1.12rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, transform 0.05s ease;
}

.btn:active { transform: scale(0.99); }

.btn-primary {
  background: var(--blue-deep);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: #254f74; }

.btn-secondary {
  background: var(--white);
  color: var(--blue-deep);
  border: 2px solid var(--blue-mid);
}
.btn-secondary:hover { background: var(--blue-soft); }

.btn-ghost {
  background: none;
  color: var(--ink-soft);
  min-height: 48px;
  font-weight: 600;
  font-size: 1rem;
}
.btn-ghost:hover { color: var(--blue-deep); }

.btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

.cta-stack {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 0 auto;
  max-width: 26rem;
}

.cta-eyebrow {
  margin: 1.1rem 0 0.5rem;
  text-align: center;
  color: var(--blue-deep);
  font-size: 0.98rem;
  font-weight: 700;
}

.cta-stack .btn {
  flex-direction: column;
  gap: 0.1rem;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.btn-label {
  font-size: 1.4rem;
  line-height: 1.25;
}

.btn-price {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.2;
}

.cta-note {
  margin: 0.9rem auto 0;
  max-width: 26rem;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* ---------- The problem (stat tiles) ---------- */

.problem {
  padding: 1rem 0 0.6rem;
}

.problem h2 {
  text-align: center;
  color: var(--blue-deep);
  font-size: 1.35rem;
  margin: 0 0 0.8rem;
}

.problem-copy {
  color: var(--ink-soft);
  text-align: center;
  max-width: 32rem;
  margin: 0 auto 1.2rem;
  font-size: 1rem;
}

.solution-copy {
  margin-top: 1.2rem;
  margin-bottom: 0;
  color: var(--ink);
}

.stat-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.stat-tile {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.1rem 1.2rem;
  text-align: center;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue-deep);
  line-height: 1.15;
}

.stat-label {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-top: 0.35rem;
  line-height: 1.4;
}

.stat-sources {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.8rem;
  margin: 0.7rem auto 0;
  max-width: 32rem;
}

.stat-sources a { color: var(--blue-deep); }

/* ---------- Skyline graphic ---------- */

.skyline-figure {
  margin: 1.2rem 0 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.3rem 1.2rem 1rem;
}

.skyline {
  display: block;
  width: 100%;
  height: auto;
}

.skyline .lit {
  animation: window-glow 4s ease-in-out infinite;
}

@keyframes window-glow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

@media (prefers-reduced-motion: reduce) {
  .skyline .lit { animation: none; }
}

.skyline-figure figcaption {
  margin-top: 0.9rem;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.5;
  max-width: 30rem;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- How it works ---------- */

.how {
  padding: 1.6rem 0 0.6rem;
}

.how h2 {
  text-align: center;
  color: var(--blue-deep);
  font-size: 1.35rem;
  margin: 0 0 1.1rem;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.1rem 1.2rem;
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.step-num {
  flex: none;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue-deep);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

.step-card h3 { margin: 0.1rem 0 0.25rem; font-size: 1.05rem; }
.step-card p { margin: 0; color: var(--ink-soft); font-size: 0.97rem; }

/* ---------- Wizard ---------- */

.wizard {
  padding: 1.2rem 0 2rem;
}

.progress-wrap {
  margin-bottom: 1.4rem;
}

.progress-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
}

.progress-track {
  height: 10px;
  background: var(--blue-soft);
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--blue-mid);
  border-radius: 999px;
  transition: width 0.25s ease;
}

.q-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.4rem 1.2rem;
}

.q-card h2 {
  font-size: 1.3rem;
  line-height: 1.3;
  margin: 0 0 0.4rem;
  color: var(--blue-deep);
}

.q-help {
  color: var(--ink-soft);
  font-size: 0.96rem;
  margin: 0 0 1.1rem;
}

/* Choice options (radio & checkbox) */

.options {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.option {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 56px;
  padding: 0.8rem 1rem;
  border: 2px solid var(--blue-soft);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  font-size: 1.05rem;
  transition: border-color 0.12s ease, background 0.12s ease;
}

.option input {
  width: 1.4rem;
  height: 1.4rem;
  flex: none;
  accent-color: var(--blue-deep);
  cursor: pointer;
}

.option.selected {
  border-color: var(--blue-mid);
  background: var(--blue-wash);
}

.option .opt-label { flex: 1; }
.option .opt-note {
  display: block;
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-weight: 400;
}
.option .opt-price {
  font-weight: 700;
  color: var(--blue-deep);
  white-space: nowrap;
}

/* Text inputs */

.field { margin-bottom: 0.4rem; }

.field label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-size: 0.98rem;
}

input[type="text"],
input[type="number"],
textarea {
  width: 100%;
  min-height: 54px;
  padding: 0.8rem 1rem;
  font-size: 1.1rem;
  font-family: inherit;
  color: var(--ink);
  border: 2px solid var(--blue-soft);
  border-radius: var(--radius);
  background: var(--white);
}

textarea { min-height: 120px; resize: vertical; line-height: 1.5; }

input:focus, textarea:focus {
  outline: none;
  border-color: var(--blue-mid);
}

.input-prefix {
  display: flex;
  align-items: stretch;
}

.input-prefix .prefix {
  display: flex;
  align-items: center;
  padding: 0 1rem;
  background: var(--blue-soft);
  color: var(--blue-deep);
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: var(--radius) 0 0 var(--radius);
  border: 2px solid var(--blue-soft);
  border-right: none;
}

.input-prefix input {
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* Notices inside wizard */

.notice {
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  font-size: 0.97rem;
  margin-top: 0.9rem;
}

.notice-warn {
  background: var(--amber-wash);
  border: 1.5px solid var(--amber-edge);
  color: #6b4e1c;
}

.notice a { color: inherit; font-weight: 700; }

.q-error {
  color: #a33d3d;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0.7rem 0 0;
  display: none;
}

.wizard-nav {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.wizard-nav .btn-primary { flex: 1; }
.wizard-nav .btn-ghost { flex: none; width: auto; padding: 0.95rem 1rem; }

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

.results { padding: 1.4rem 0 2rem; }

.results h1 {
  font-size: 1.5rem;
  color: var(--blue-deep);
  text-align: center;
  margin: 0.4rem 0 0.5rem;
}

.results .lede {
  text-align: center;
  color: var(--ink-soft);
  margin: 0 0 1.4rem;
}

.pack-list {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.4rem 1.2rem;
  margin-bottom: 1.3rem;
}

.pack-item {
  display: flex;
  gap: 0.8rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--blue-soft);
  align-items: flex-start;
}
.pack-item:last-child { border-bottom: none; }

.pack-item .tick {
  flex: none;
  color: var(--green);
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 0.05rem;
}

.pack-item h3 { margin: 0 0 0.15rem; font-size: 1.02rem; }
.pack-item p { margin: 0; color: var(--ink-soft); font-size: 0.93rem; }

.free-note {
  text-align: center;
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 0.8rem 0 0;
}

/* ---------- Sample letter ---------- */

.sample {
  padding: 1.6rem 0 0.6rem;
}

.sample h2,
.faq h2,
.cta-repeat h2 {
  text-align: center;
  color: var(--blue-deep);
  font-size: 1.35rem;
  margin: 0 0 0.8rem;
}

.section-copy {
  color: var(--ink-soft);
  text-align: center;
  max-width: 32rem;
  margin: 0 auto 1.2rem;
  font-size: 1rem;
}

.letter-paper {
  position: relative;
  background: var(--white);
  border: 1px solid var(--blue-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.6rem 1.5rem 0;
  max-width: 30rem;
  margin: 0 auto;
  max-height: 21rem;
  overflow: hidden;
  font-size: 0.92rem;
  line-height: 1.6;
}

.letter-paper p { margin: 0 0 0.8rem; }

.ph {
  background: var(--blue-soft);
  color: var(--blue-deep);
  border-radius: 6px;
  padding: 0.05rem 0.45rem;
  font-weight: 600;
  white-space: nowrap;
}

.letter-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6rem;
  background: linear-gradient(to bottom, rgba(253, 254, 254, 0), var(--white));
  pointer-events: none;
}

.sample-note {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.92rem;
  max-width: 30rem;
  margin: 1rem auto 0;
}

/* ---------- FAQ ---------- */

.faq {
  padding: 1.6rem 0 0.6rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 0.7rem;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 1rem 1.2rem;
  min-height: 56px;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 1rem;
  list-style: none;
  position: relative;
  padding-right: 2.6rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  font-size: 1.4rem;
  color: var(--blue-mid);
  font-weight: 400;
}

.faq-item[open] summary::after { content: "\2212"; }

.faq-item p {
  margin: 0;
  padding: 0 1.2rem 1.1rem;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.faq-item a { color: var(--blue-deep); }

/* ---------- Repeated CTA ---------- */

.cta-repeat {
  padding: 1.8rem 0 0.6rem;
  text-align: center;
}

/* ---------- Legal pages ---------- */

.legal {
  padding: 1.2rem 0 1rem;
}

.legal h1 {
  color: var(--blue-deep);
  font-size: 1.6rem;
  margin: 0.4rem 0 0.3rem;
}

.legal-updated {
  color: var(--ink-soft);
  font-size: 0.88rem;
  margin: 0 0 1.4rem;
}

.legal h2 {
  color: var(--blue-deep);
  font-size: 1.15rem;
  margin: 1.5rem 0 0.4rem;
}

.legal p {
  margin: 0 0 0.8rem;
  color: var(--ink);
}

.legal a { color: var(--blue-deep); }

/* ---------- Contact page ---------- */

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.4rem 1.2rem;
  margin: 1.2rem 0 1.6rem;
  text-align: center;
}

.contact-email {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue-deep);
  word-break: break-all;
  margin-bottom: 1rem;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  max-width: 22rem;
  margin: 0 auto;
}

.contact-hint {
  margin: 1rem auto 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  max-width: 26rem;
}

/* .legal a would otherwise repaint the button text dark blue on dark blue */
.legal a.btn-primary { color: #fff; }

.footer-copyright {
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 0.8rem;
}

@media (min-width: 600px) {
  .contact-actions { flex-direction: row; }
  .contact-actions .btn { flex: 1; }
}

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

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--blue-deep);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover { text-decoration: underline; }

.site-footer {
  margin-top: 2.5rem;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid var(--blue-soft);
}

.site-footer p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  text-align: center;
  max-width: 34rem;
  margin: 0 auto;
}

.site-footer a { color: var(--blue-deep); }

/* ---------- Consent box & next steps (success page) ---------- */

.consent-box {
  background: var(--amber-wash);
  border: 1.5px solid var(--amber-edge);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  margin: 0 auto 1rem;
  max-width: 34rem;
  text-align: left;
}

.consent-label {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.95rem;
  color: #6b4e1c;
  line-height: 1.5;
}

.consent-label input {
  width: 1.3rem;
  height: 1.3rem;
  flex: none;
  margin-top: 0.1rem;
  accent-color: var(--blue-deep);
  cursor: pointer;
}

.next-steps {
  text-align: left;
  max-width: 34rem;
  margin: 1.6rem auto 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem 1.4rem;
}

.next-steps h2 { color: var(--blue-deep); font-size: 1.2rem; margin: 0 0 0.6rem; }
.next-steps ol { margin: 0; padding-left: 1.2rem; color: var(--ink); line-height: 1.55; }
.next-steps li { margin-bottom: 0.5rem; }

/* ---------- Larger screens ---------- */

@media (min-width: 600px) {
  html { font-size: 18px; }
  .hero h1 { font-size: 1.25rem; }
  .cta-stack { flex-direction: row; }
  .cta-stack .btn { flex: 1; }
  .stat-row { grid-template-columns: repeat(3, 1fr); }
}
