/* Page-specific styles for Reading Remedy */

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: clamp(72px, 11vw, 140px) 0 clamp(64px, 9vw, 120px);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.hero-blob-amber {
  width: 520px; height: 520px;
  background: radial-gradient(circle, #f5a62355, transparent 70%);
  top: -180px; right: -120px;
}
.hero-blob-navy {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #1a3a6b30, transparent 70%);
  bottom: -260px; left: -160px;
}
.hero-pages {
  position: absolute;
  right: -40px;
  bottom: -60px;
  width: 540px;
  opacity: 0.55;
}
@media (max-width: 880px) { .hero-pages { display: none; } }

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
}
.hero-copy h1 { margin-top: 18px; }
.hero-copy h1 .hl {
  font-style: italic;
  color: var(--navy);
  background-image: linear-gradient(transparent 70%, rgba(245, 166, 35, 0.35) 70%);
  background-position: 0 100%;
  padding: 0 6px;
}
.hero-copy .lede { margin-top: 22px; }
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 32px;
}
.hero-meta {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

/* hero card (right side) */
.hero-card {
  position: relative;
  margin: 0;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 30px 60px -30px rgba(26, 31, 46, 0.18),
    0 8px 18px -10px rgba(26, 31, 46, 0.08);
  overflow: hidden;
}
.hero-card-inner { padding: 32px 32px 28px; position: relative; z-index: 1; }
.hero-card-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-600);
  font-weight: 600;
}
.hero-card-stat {
  margin-top: 14px;
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.hero-card-stat .big {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6vw, 4.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.03em;
}
.hero-card-stat .cap {
  font-size: 0.98rem;
  color: var(--ink-soft);
  max-width: 22ch;
  line-height: 1.4;
}
.hero-card-divider {
  height: 1px; background: var(--line);
  margin: 22px 0 18px;
}
.hero-card-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-card-row .num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-card-row .lbl {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 6px;
}
.hero-card-mark {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 180px;
  z-index: 0;
}

/* ============ TRUST BAR ============ */
.trust { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 720px) { .trust-row { grid-template-columns: 1fr; gap: 24px; } }
.trust-cell {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding-right: 24px;
  border-right: 1px solid var(--line);
}
.trust-cell:last-child { border-right: none; }
@media (max-width: 720px) {
  .trust-cell { border-right: none; border-bottom: 1px solid var(--line); padding: 0 0 24px; }
  .trust-cell:last-child { border-bottom: none; }
}
.trust-num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
}
.trust-lbl { color: var(--ink-soft); max-width: 32ch; }
.trust-source {
  margin-top: 26px;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ============ PROBLEM ============ */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 880px) { .problem-grid { grid-template-columns: 1fr; gap: 32px; } }
.problem-body { display: flex; flex-direction: column; gap: 18px; font-size: 1.08rem; color: var(--ink-soft); }
.problem-body em { color: var(--ink); font-style: italic; }
.problem-close { margin-top: 8px; color: var(--ink); font-size: 1.18rem; }

/* shared section head */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head .eyebrow { display: block; margin-bottom: 16px; }
.section-cta { text-align: center; margin-top: 48px; }

/* ============ OUTCOMES ============ */
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 980px) { .outcome-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .outcome-grid { grid-template-columns: 1fr; } }
.outcome-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.outcome-icon {
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  background: var(--amber-100);
  color: var(--navy);
  border-radius: 14px;
}

/* ============ PILOT TEASER ============ */
.pilot-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 980px) { .pilot-teaser-grid { grid-template-columns: 1fr; gap: 40px; } }

/* infographic placeholder card on home */
.infographic {
  margin: 0;
  background: linear-gradient(160deg, #20447a, #14305a);
  color: #fff;
  border-radius: 22px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 30px 80px -40px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
}
.infographic::before {
  content: "";
  position: absolute;
  top: -80px; right: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(245,166,35,0.25), transparent 70%);
  pointer-events: none;
}
.infographic-head { position: relative; }
.infographic-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; }
.infographic-sub { font-size: 0.86rem; opacity: 0.7; letter-spacing: 0.06em; }
.infographic-body { margin-top: 24px; position: relative; }
.ig-stat {
  display: flex; align-items: baseline; gap: 18px;
  padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,0.12);
}
.ig-num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(3.6rem, 7vw, 5rem);
  color: var(--amber);
  line-height: 1; letter-spacing: -0.03em;
}
.ig-lbl { font-size: 1rem; color: rgba(255,255,255,0.85); line-height: 1.4; }
.ig-row {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 18px;
  align-items: center; padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.ig-stat-sm { display: flex; flex-direction: column; gap: 4px; }
.ig-num-sm { font-family: var(--font-display); font-weight: 700; font-size: 2.2rem; color: #fff; line-height: 1; }
.ig-lbl-sm { font-size: 0.88rem; color: rgba(255,255,255,0.7); }
.ig-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.14); }
.ig-quote {
  margin: 22px 0 0; padding: 0;
  font-family: var(--font-display); font-style: italic;
  font-size: 1.05rem; line-height: 1.5;
  color: rgba(255,255,255,0.92); position: relative;
}
.ig-quote .ig-mark { font-size: 2.4rem; color: var(--amber); line-height: 0; vertical-align: -0.4em; margin-right: 6px; }
.ig-quote footer { margin-top: 10px; font-style: normal; font-family: var(--font-body); font-size: 0.82rem; color: rgba(255,255,255,0.55); letter-spacing: 0.04em; }

/* ============ WHY ============ */
.why-grid { display: flex; flex-direction: column; max-width: 880px; margin: 0 auto; }
.why-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  padding: 28px 0;
  align-items: start;
  border-bottom: 1px solid var(--line);
}
.why-row:last-child { border-bottom: none; }
.why-num {
  font-family: var(--font-display);
  font-size: 1rem; color: var(--amber-600); font-weight: 600;
  letter-spacing: 0.08em; padding-top: 4px;
}
.why-content h3 { margin-bottom: 6px; }
.why-content p { color: var(--ink-soft); }
.why-check {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green);
  display: grid; place-items: center;
}

/* ============ FOOTER CTA ============ */
.footer-cta {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-deep) 100%);
  position: relative;
  overflow: hidden;
}
.footer-cta-inner {
  text-align: center;
  max-width: 720px;
  position: relative;
  padding: clamp(56px, 8vw, 96px) 28px;
}
.footer-cta-inner h2 { margin-bottom: 18px; }
.footer-cta-inner .lede { margin: 0 auto 32px; }
.footer-cta-mark {
  position: absolute;
  inset: 0; pointer-events: none;
  display: flex; align-items: center; justify-content: center;
  z-index: 0;
}
.footer-cta-mark svg { width: 100%; max-width: 760px; opacity: 0.45; }
.footer-cta-inner > * { position: relative; z-index: 1; }

/* ============ PAGE HERO (interior pages) ============ */
.page-hero {
  position: relative;
  padding: clamp(72px, 10vw, 120px) 0 clamp(48px, 6vw, 80px);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -160px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(245,166,35,0.18), transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: end;
}
@media (max-width: 880px) { .page-hero-inner { grid-template-columns: 1fr; gap: 32px; } }
.page-hero-mark { width: 100%; max-width: 360px; justify-self: end; }
.page-hero-mark svg { width: 100%; height: auto; }
.page-hero h1 { margin-top: 18px; }
.page-hero .lede { margin-top: 22px; }
.page-hero-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 28px; }

/* ============ TWO COLUMN ============ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 880px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }
.two-col-body { display: flex; flex-direction: column; gap: 18px; font-size: 1.08rem; color: var(--ink-soft); }
.two-col-body em { color: var(--ink); font-style: italic; }

/* ============ TIMELINE ============ */
.timeline { list-style: none; padding: 0; margin: 0 auto; max-width: 860px; position: relative; }
.timeline::before {
  content: "";
  position: absolute;
  left: 110px; top: 16px; bottom: 16px;
  width: 2px;
  background: linear-gradient(to bottom, var(--amber), var(--green) 50%, var(--navy));
  border-radius: 2px;
  opacity: 0.5;
}
@media (max-width: 640px) { .timeline::before { left: 18px; } }
.timeline-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 40px;
  padding: 12px 0;
  align-items: stretch;
  position: relative;
}
@media (max-width: 640px) { .timeline-row { grid-template-columns: 36px 1fr; gap: 18px; } }
.timeline-marker {
  position: relative;
  display: flex; flex-direction: column; align-items: flex-start;
  padding-top: 18px;
}
.timeline-week {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--amber-600);
  font-size: 1.05rem;
  font-weight: 600;
}
@media (max-width: 640px) { .timeline-week { display: none; } }
.timeline-dot {
  position: absolute;
  left: 102px; top: 24px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--paper);
  border: 3px solid var(--amber);
  box-shadow: 0 0 0 4px var(--paper);
}
@media (max-width: 640px) { .timeline-dot { left: 10px; } }
.timeline-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 26px;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.timeline-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -24px rgba(26, 31, 46, 0.18);
}
.timeline-card h3 { margin-bottom: 8px; }
.timeline-card p { color: var(--ink-soft); }

/* ============ FEATURES TABLE ============ */
.features-table {
  margin: 0 auto;
  max-width: 820px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.features-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--line);
  margin: 0;
}
.features-row:last-child { border-bottom: none; }
.features-row dt {
  font-weight: 600; color: var(--navy);
}
.features-row dd { margin: 0; color: var(--ink-soft); }
@media (max-width: 640px) {
  .features-row { grid-template-columns: 1fr; gap: 4px; padding: 14px 20px; }
}

/* ============ OUTCOMES SPLIT ============ */
.outcomes-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 880px) { .outcomes-split { grid-template-columns: 1fr; } }
.outcomes-col {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px;
}
.outcomes-col-amber {
  background: linear-gradient(180deg, #fff7e9, #fef3dc);
  border-color: #f3deb0;
}
.outcomes-col h2 { margin: 12px 0 22px; }
.check-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.check-list li {
  display: grid; grid-template-columns: 24px 1fr; gap: 14px; align-items: start;
  font-size: 1rem; color: var(--ink-soft);
}
.check-list li span:last-child { padding-top: 1px; }
.check-mark {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
}

/* ============ PILOT — BIG STATS ============ */
.big-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 880px) { .big-stats { grid-template-columns: 1fr; } }
.big-stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px;
  text-align: left;
}
.big-stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.6rem, 7vw, 5.2rem);
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
}
.big-stat:nth-child(1) .big-stat-num { color: var(--amber-600); }
.big-stat:nth-child(2) .big-stat-num { color: var(--navy); }
.big-stat:nth-child(3) .big-stat-num { color: var(--green); }
.big-stat p { color: var(--ink-soft); }

/* ============ PILOT — BIG INFOGRAPHIC ============ */
.big-infographic {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  overflow: hidden;
}
.big-infographic::before {
  content: "";
  position: absolute;
  top: -100px; left: -80px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(26,58,107,0.08), transparent 70%);
  pointer-events: none;
}
.bi-head { text-align: center; position: relative; }
.bi-head h2 { margin-top: 8px; }
.bi-sub { font-family: var(--font-display); font-style: italic; color: var(--muted); margin-top: 8px; }
.bi-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
}
@media (max-width: 720px) { .bi-grid { grid-template-columns: 1fr; } }
.bi-cell {
  border-radius: 16px;
  padding: 32px 28px;
  text-align: left;
  color: #fff;
}
.bi-cell-amber { background: linear-gradient(160deg, #f5a623, #e89400); }
.bi-cell-navy { background: linear-gradient(160deg, #1a3a6b, #14305a); }
.bi-cell-green { background: linear-gradient(160deg, #5bad5e, #4a9c4d); }
.bi-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 6vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.bi-cell p { font-size: 1rem; line-height: 1.4; }
.bi-quotes {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 720px) { .bi-quotes { grid-template-columns: 1fr; } }
.bi-quotes blockquote {
  margin: 0;
  padding: 22px 26px;
  background: var(--paper-deep);
  border-radius: 14px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
  position: relative;
}
.bi-quotes blockquote .quote-mark {
  font-size: 2.2rem; color: var(--amber); line-height: 0;
  vertical-align: -0.4em; margin-right: 6px; font-style: normal;
}
.bi-quotes blockquote footer {
  margin-top: 10px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.bi-note {
  margin-top: 28px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ============ QUOTES GRID (Pilot Voice) ============ */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 720px) { .quotes-grid { grid-template-columns: 1fr; } }
.quote-card {
  margin: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 32px;
  position: relative;
}
.quote-card .quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.6;
  color: var(--amber);
  display: block;
  margin-bottom: 8px;
}
.quote-card blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.18rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.94);
}
.quote-card figcaption {
  margin-top: 20px;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}

/* ============ ABOUT — BIO ============ */
.bio-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 880px) { .bio-grid { grid-template-columns: 1fr; gap: 32px; } }
.portrait-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
}
.portrait-stripes {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -8deg,
    rgba(26, 58, 107, 0.06) 0,
    rgba(26, 58, 107, 0.06) 12px,
    transparent 12px,
    transparent 24px
  );
}
.portrait-mono {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.92rem;
  color: var(--muted);
  gap: 4px;
}
.portrait-mono .small { font-size: 0.78rem; }
.bio-meta {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.bio-meta li:first-child { color: var(--ink); font-size: 1.02rem; }
.bio-body { display: flex; flex-direction: column; gap: 18px; font-size: 1.08rem; color: var(--ink-soft); }
.bio-body strong { color: var(--ink); }
.creds {
  margin: 12px 0 0; padding: 0; list-style: none;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px;
  font-size: 0.95rem; color: var(--ink-soft);
}
@media (max-width: 540px) { .creds { grid-template-columns: 1fr; } }
.creds li span { color: var(--amber); margin-right: 8px; font-weight: 700; }

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(28px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}
.field .req { color: var(--amber-600); margin-left: 3px; }
.field .hint {
  font-size: 0.84rem;
  color: var(--muted);
  margin-bottom: 4px;
}
.field input,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  transition: border-color 160ms var(--ease), background 160ms var(--ease), box-shadow 160ms var(--ease);
  resize: vertical;
  min-height: 48px;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(26, 58, 107, 0.1);
}
.field-error input,
.field-error textarea {
  border-color: #c1432e;
  background: #fdf3f1;
}
.field .err { font-size: 0.84rem; color: #c1432e; margin-top: 4px; }

.honey {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.contact-aside h3 { font-family: var(--font-display); margin-bottom: 18px; }
.reassure-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 18px; }
.reassure-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
}
.reassure-list strong { display: block; color: var(--ink); }
.reassure-list span { color: var(--ink-soft); font-size: 0.95rem; }
.reassure-ico {
  width: 36px; height: 36px;
  background: var(--amber-100);
  color: var(--navy);
  border-radius: 10px;
  display: grid; place-items: center;
}
.contact-direct {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.contact-direct a {
  display: inline-block;
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  border-bottom: 1.5px solid var(--amber);
  padding-bottom: 2px;
}

/* THANK YOU */
.thanks { padding: clamp(80px, 14vw, 160px) 0; text-align: center; }
.thanks-inner { max-width: 640px; }
.thanks-mark {
  width: 88px; height: 88px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green);
  display: grid; place-items: center;
}
.thanks .hero-ctas { justify-content: center; }
