/* ═══════════════════════════════════════════════
   ילוד — yelad.org
   Palette is taken from the logo: deep navy + light
   blue, with a warm amber reserved for actions only.
   ═══════════════════════════════════════════════ */

:root {
  /* Brand */
  --navy-900: #0d1e33;
  --navy-800: #14304f;
  --navy-700: #1e3a5f;
  --navy-600: #2c5182;
  --blue-400: #7595c0;
  --blue-200: #b9cbe3;
  --blue-050: #eaf1f9;

  /* Action */
  --amber:      #e8a13a;
  --amber-dark: #cd8620;
  --amber-soft: #fdf3e2;

  /* Neutrals */
  --cream: #faf7f2;
  --white: #ffffff;
  --ink:   #16233a;
  --body:  #4d5b70;
  --muted: #7c8798;
  --line:  #e3e8ef;

  /* Shape */
  --r-lg: 20px;
  --r-md: 14px;
  --r-sm: 10px;

  --shadow-sm: 0 1px 2px rgba(13,30,51,.06), 0 2px 8px rgba(13,30,51,.04);
  --shadow-md: 0 4px 12px rgba(13,30,51,.07), 0 12px 32px rgba(13,30,51,.06);
  --shadow-lg: 0 8px 24px rgba(13,30,51,.10), 0 24px 64px rgba(13,30,51,.10);

  --header-h: 68px;
  --wrap: 1120px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  font-family: 'Assistant', 'Segoe UI', system-ui, sans-serif;
  background: var(--white);
  color: var(--body);
  font-size: 17px;
  line-height: 1.7;
  direction: rtl;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, picture { max-width: 100%; display: block; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.25; font-weight: 800; }
::selection { background: var(--blue-200); color: var(--navy-900); }

:where(a, button, summary, details):focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  top: -60px;
  right: 16px;
  z-index: 999;
  background: var(--navy-900);
  color: #fff;
  padding: 12px 22px;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-weight: 700;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ─── Layout ─── */
.container { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }
.container-narrow { max-width: 760px; }

.section { padding: 88px 0; }
.section-cream { background: var(--cream); }
.section-navy  { background: var(--navy-900); }

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--navy-600);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.eyebrow.center { text-align: center; }
.eyebrow.light  { color: var(--blue-400); }

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -.01em;
  text-align: center;
  text-wrap: balance;
  margin-bottom: 10px;
}
.section-title.light { color: #fff; }

.section-sub {
  font-size: 18px;
  color: var(--muted);
  text-align: center;
  text-wrap: balance;
  max-width: 620px;
  margin: 0 auto 52px;
}
.section-sub.light { color: rgba(255,255,255,.55); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font: inherit;
  font-weight: 700;
  border-radius: var(--r-sm);
  padding: 13px 26px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn-sm    { padding: 9px 18px;  font-size: 15px; }
.btn-lg    { padding: 17px 40px; font-size: 19px; border-radius: var(--r-md); }
.btn-block { width: 100%; }

.btn-amber {
  background: var(--amber);
  color: var(--navy-900);
  box-shadow: 0 2px 6px rgba(205,134,32,.24), 0 8px 24px rgba(205,134,32,.20);
}
.btn-amber:hover { background: var(--amber-dark); transform: translateY(-2px); box-shadow: 0 4px 10px rgba(205,134,32,.28), 0 14px 34px rgba(205,134,32,.26); }
.btn-amber:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--navy-700);
  border-color: var(--line);
}
.btn-outline:hover { border-color: var(--navy-600); background: var(--blue-050); }

.btn-ghost {
  background: rgba(255,255,255,.10);
  color: #fff;
  border-color: rgba(255,255,255,.28);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.5); }

/* ─── Ticker ─── */
.ticker {
  background: var(--navy-900);
  color: rgba(255,255,255,.78);
  font-size: 14px;
  padding: 9px 0;
}
.ticker-inner { display: flex; align-items: center; justify-content: center; gap: 10px; text-align: center; }
.ticker strong { color: var(--amber); font-weight: 700; }
.ticker-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1;  box-shadow: 0 0 0 0 rgba(232,161,58,.6); }
  50%      { opacity: .7; box-shadow: 0 0 0 7px rgba(232,161,58,0); }
}

/* ─── Header ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.is-stuck { border-bottom-color: var(--line); box-shadow: 0 4px 20px rgba(13,30,51,.05); }

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand-mark { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-size: 20px; font-weight: 800; color: var(--navy-900); }
.brand-tagline { font-size: 11.5px; color: var(--muted); font-weight: 500; }

.header-nav { display: flex; gap: 26px; margin-inline-start: auto; }
.header-nav a {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--body);
  position: relative;
  padding: 4px 0;
}
.header-nav a::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transition: transform .22s ease;
}
.header-nav a:hover { color: var(--navy-900); }
.header-nav a:hover::after { transform: scaleX(1); }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: min(88vh, 780px);
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 30% 28%; }
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to left, rgba(13,30,51,.94) 0%, rgba(13,30,51,.80) 42%, rgba(13,30,51,.34) 78%, rgba(13,30,51,.22) 100%),
    linear-gradient(to top, rgba(13,30,51,.75) 0%, rgba(13,30,51,0) 45%);
}
.hero-fade {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(to top, var(--white), transparent);
  z-index: 0;
}
/* The container stays centred so the hero lines up with every other
   section; only the text block inside it is narrowed. */
.hero-content { position: relative; z-index: 1; padding: 96px 22px 130px; }
.hero-content > * { max-width: 760px; }
.hero .eyebrow { color: var(--blue-400); }

.hero h1 {
  font-size: clamp(36px, 6.2vw, 62px);
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.14;
  text-wrap: balance;
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--amber); }

.hero-sub {
  font-size: clamp(17px, 2vw, 21px);
  color: rgba(255,255,255,.76);
  max-width: 540px;
  text-wrap: pretty;
  margin-bottom: 34px;
}

.hero-cta-group { display: flex; gap: 13px; flex-wrap: wrap; margin-bottom: 46px; }

.hero-stats {
  display: flex;
  gap: 40px;
  list-style: none;
  flex-wrap: wrap;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats .num {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: #fff;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}
.hero-stats .lbl { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.55); }

/* ─── Progress card ─── */
.progress-card {
  position: relative;
  z-index: 2;
  margin-top: -72px;
  margin-bottom: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 30px 34px;
  max-width: 800px;
  margin-inline: auto;
}
.progress-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.progress-title { font-size: 20px; font-weight: 800; }
.progress-note  { font-size: 15px; color: var(--muted); }
.progress-figure { text-align: left; line-height: 1.2; }
.progress-figure strong {
  display: block;
  font-size: 30px;
  font-weight: 800;
  color: var(--navy-700);
  font-variant-numeric: tabular-nums;
}
.progress-figure span { font-size: 13.5px; color: var(--muted); font-weight: 600; }

.progress-track {
  height: 12px;
  background: var(--blue-050);
  border-radius: 99px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  width: var(--pct);
  border-radius: 99px;
  background: linear-gradient(90deg, var(--navy-600), var(--blue-400));
  animation: grow 1.4s cubic-bezier(.22,1,.36,1) both;
}
@keyframes grow { from { width: 0; } to { width: var(--pct); } }

.progress-legend {
  display: flex;
  justify-content: space-between;
  margin-top: 11px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
}

/* ─── Tiers ─── */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}
.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 24px 24px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.tier:hover { transform: translateY(-4px); border-color: var(--blue-200); box-shadow: var(--shadow-md); }

.tier.featured {
  border-color: var(--amber);
  background: linear-gradient(180deg, var(--amber-soft), var(--white) 42%);
  box-shadow: var(--shadow-md);
}
.tier-flag {
  position: absolute;
  top: -13px;
  inset-inline-start: 24px;
  background: var(--amber);
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  padding: 4px 14px;
  border-radius: 99px;
}
.tier-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 14px; }
.tier-icon { font-size: 30px; line-height: 1; }
.tier-amount {
  font-size: 30px;
  font-weight: 800;
  color: var(--navy-900);
  font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
}
.tier h3 { font-size: 17.5px; margin-bottom: 7px; }
.tier p { font-size: 15px; color: var(--muted); line-height: 1.65; margin-bottom: 22px; flex: 1; }

.tier-any { text-align: center; margin-top: 26px; }
.tier-any a {
  font-weight: 700;
  color: var(--navy-600);
  border-bottom: 2px solid var(--blue-200);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.tier-any a:hover { color: var(--navy-900); border-color: var(--amber); }

/* ─── Story ─── */
.story {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 56px;
}
.story-media { position: relative; }
.story-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  /* The row of children runs diagonally from the lower edge upwards, so the
     crop is pulled above centre to keep the whole line in frame. */
  object-position: center 40%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}
.story-media::after {
  content: '';
  position: absolute;
  inset-inline-end: -14px;
  bottom: -14px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--blue-200);
  border-radius: var(--r-lg);
  z-index: -1;
}
.story-text p { margin-bottom: 16px; }
.story-text .lede { font-size: 24px; font-weight: 700; color: var(--ink); }

.pull {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy-800);
  line-height: 1.55;
  background: var(--blue-050);
  border-inline-start: 4px solid var(--navy-600);
  border-start-end-radius: var(--r-sm);
  border-end-end-radius: var(--r-sm);
  padding: 18px 22px;
  margin: 24px 0;
}
.story-close { color: var(--body); }
.story-close strong { color: var(--ink); display: block; margin-bottom: 4px; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  list-style: none;
}
.stat-row li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 26px 22px;
  text-align: center;
  transition: border-color .2s, transform .2s;
}
.stat-row li:hover { border-color: var(--blue-200); transform: translateY(-2px); }
.stat-row strong {
  display: block;
  font-size: 34px;
  font-weight: 800;
  color: var(--navy-700);
  letter-spacing: -.02em;
  line-height: 1.2;
}
.stat-row span { font-size: 14.5px; font-weight: 600; color: var(--muted); }

/* ─── Programs ─── */
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.program {
  position: relative;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 34px 28px;
  overflow: hidden;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.program:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); transform: translateY(-3px); }
.program-num {
  position: absolute;
  top: 16px;
  inset-inline-end: 22px;
  font-size: 46px;
  font-weight: 800;
  color: rgba(255,255,255,.06);
  line-height: 1;
}
.program-icon { font-size: 34px; display: block; margin-bottom: 16px; }
.program h3 { color: #fff; font-size: 20px; margin-bottom: 9px; }
.program p  { font-size: 15.5px; color: rgba(255,255,255,.6); line-height: 1.7; }

.quote {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  padding: 40px 32px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-lg);
}
.quote blockquote {
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.7;
  color: rgba(255,255,255,.9);
  font-weight: 500;
  text-wrap: pretty;
}
.quote blockquote::before {
  content: '\201D';
  display: block;
  font-size: 64px;
  line-height: .6;
  color: var(--amber);
  margin-bottom: 14px;
}
.quote figcaption { margin-top: 18px; font-size: 14.5px; font-weight: 600; color: var(--blue-400); }

/* ─── Trust ─── */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.trust {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 26px;
  transition: border-color .2s, box-shadow .2s;
}
.trust:hover { border-color: var(--blue-200); box-shadow: var(--shadow-sm); }
.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  font-size: 24px;
  background: var(--blue-050);
  border-radius: 14px;
  margin-bottom: 16px;
}
.trust h3 { font-size: 18px; margin-bottom: 8px; }
.trust p  { font-size: 15px; color: var(--muted); line-height: 1.7; }

/* ─── FAQ ─── */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq details {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  padding: 4px 22px;
  transition: border-color .2s, box-shadow .2s;
}
.faq details[open] { border-color: var(--blue-200); box-shadow: var(--shadow-sm); }
.faq summary {
  list-style: none;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  flex-shrink: 0;
  font-size: 24px;
  font-weight: 400;
  color: var(--navy-600);
  transition: transform .25s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { font-size: 15.5px; color: var(--muted); padding-bottom: 20px; line-height: 1.75; }

/* ─── Final CTA ─── */
.final {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  padding: 86px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: '';
  position: absolute;
  top: -40%;
  inset-inline-start: -10%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(232,161,58,.14), transparent 68%);
  pointer-events: none;
}
.final h2 { font-size: clamp(28px, 4vw, 40px); color: #fff; margin-bottom: 12px; text-wrap: balance; }
.final p  { font-size: 18px; color: rgba(255,255,255,.65); max-width: 520px; margin: 0 auto 32px; text-wrap: balance; }
.pay-note { font-size: 14px !important; color: rgba(255,255,255,.42) !important; margin: 20px auto 0 !important; }

/* ─── Footer ─── */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.55); font-size: 15px; padding: 56px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
}
.footer-mark { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; margin-bottom: 14px; }
.footer-name { font-size: 21px; font-weight: 800; color: #fff; line-height: 1.2; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,.45); }

.footer-nav { display: flex; flex-direction: column; gap: 9px; }
.footer-nav h4 { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--blue-400); margin-bottom: 5px; }
.footer-nav a { font-size: 15px; color: rgba(255,255,255,.6); transition: color .2s; width: fit-content; }
.footer-nav a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-block: 22px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: rgba(255,255,255,.38);
}

/* ─── Sticky mobile CTA ─── */
.sticky-cta {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 70;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 16px calc(11px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(14px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 24px rgba(13,30,51,.10);
  transform: translateY(110%);
  transition: transform .3s cubic-bezier(.22,1,.36,1);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-text { display: flex; flex-direction: column; line-height: 1.25; }
.sticky-text strong { font-size: 17px; font-weight: 800; color: var(--navy-900); font-variant-numeric: tabular-nums; }
.sticky-text span   { font-size: 12.5px; color: var(--muted); font-weight: 600; }

/* ─── Scroll reveal ─── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s cubic-bezier(.22,1,.36,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.tier-grid .reveal:nth-child(2), .program-grid .reveal:nth-child(2), .trust-grid .reveal:nth-child(2) { transition-delay: .08s; }
.tier-grid .reveal:nth-child(3), .program-grid .reveal:nth-child(3), .trust-grid .reveal:nth-child(3) { transition-delay: .16s; }
.tier-grid .reveal:nth-child(4) { transition-delay: .24s; }

/* ─── Privacy / Accessibility pages ─── */
.doc-page { max-width: 760px; margin-inline: auto; padding: 72px 22px 88px; }
.doc-page h1 { font-size: clamp(28px, 4vw, 38px); margin-bottom: 8px; }
.doc-page .updated { font-size: 14.5px; color: var(--muted); margin-bottom: 36px; }
.doc-page h2 { font-size: 22px; margin: 38px 0 12px; }
.doc-page h3 { font-size: 17.5px; margin: 26px 0 8px; }
.doc-page p  { margin-bottom: 14px; }
.doc-page ul { margin: 10px 0 20px; padding-inline-start: 22px; }
.doc-page li { margin-bottom: 7px; }
.doc-page a  { color: var(--navy-600); border-bottom: 1px solid var(--blue-200); }
.doc-page a:hover { color: var(--navy-900); border-color: var(--navy-600); }

/* ═══════════ Responsive ═══════════ */
@media (max-width: 1024px) {
  .header-nav { display: none; }
  .tier-grid  { grid-template-columns: repeat(2, 1fr); }
  .story      { grid-template-columns: 1fr; gap: 36px; }
  .story-media img { aspect-ratio: 4 / 3; object-position: center 48%; }
  .story-media::after { display: none; }
  .program-grid { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  .section { padding: 62px 0; }
  .section-sub { margin-bottom: 38px; font-size: 16.5px; }

  .hero { min-height: auto; }
  .hero-content { padding: 62px 22px 104px; }
  .hero-bg img { object-position: 42% 22%; }
  .hero-scrim {
    background:
      linear-gradient(to top, rgba(13,30,51,.96) 22%, rgba(13,30,51,.72) 62%, rgba(13,30,51,.5) 100%);
  }
  .hero-cta-group { flex-direction: column; align-items: stretch; margin-bottom: 34px; }
  .hero-stats { gap: 22px; justify-content: space-between; width: 100%; }
  .hero-stats .lbl { font-size: 12.5px; }

  .progress-card { margin-top: -54px; padding: 24px 22px; }
  .progress-top  { align-items: flex-start; }
  .progress-legend { font-size: 12.5px; }

  .trust-grid { grid-template-columns: 1fr; }
  .stat-row   { grid-template-columns: 1fr; gap: 12px; }
  .stat-row li { display: flex; align-items: center; gap: 16px; text-align: start; padding: 18px 20px; }
  .stat-row strong { font-size: 27px; min-width: 96px; }

  .quote { padding: 30px 24px; }
  .final { padding: 66px 0; }
  .footer-bottom { flex-direction: column; gap: 6px; }

  .sticky-cta { display: flex; }
  /* keep the sticky bar from covering the last line of the footer */
  .site-footer { padding-bottom: 74px; }
}

@media (max-width: 560px) {
  .tier-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .ticker { font-size: 12.5px; }
  .brand-tagline { display: none; }
  .header-cta { margin-inline-start: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
