/* ─── Programs ─── */
.program-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.program-card {
  background: var(--bg-card); border-radius: var(--radius-sm);
  padding: 24px; text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.25s ease;
}
.program-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.1); }
.program-card .prog-icon { font-size: 36px; margin-bottom: 10px; }
.program-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.program-card p { font-size: 14px; color: var(--text-light); margin-bottom: 8px; }
.program-card .prog-stat {
  font-size: 13px; font-weight: 700; color: var(--red);
  background: #fef2f2; padding: 4px 14px; border-radius: 8px; display: inline-block;
}

/* ─── Testimonials ─── */
.testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.testimonial-card {
  background: var(--bg-card); border-radius: var(--radius-sm);
  padding: 24px; border: 1px solid #f0f0f0;
}
.testimonial-card .quote {
  font-size: 15px; line-height: 1.7; color: var(--text); margin-bottom: 14px;
}
.testimonial-card .quote::before { content: '"'; color: var(--red); font-size: 28px; font-weight: 800; line-height: 0; vertical-align: -8px; }
.testimonial-card .attribution {
  display: flex; align-items: center; gap: 10px;
}
.testimonial-card .attribution .avatar {
  width: 40px; height: 40px; border-radius: 50%; object-fit: cover;
}
.testimonial-card .attribution .name { font-size: 14px; font-weight: 700; }
.testimonial-card .attribution .role { font-size: 12px; color: var(--text-light); }

/* ─── Trust & Transparency ─── */
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.trust-card {
  background: var(--bg-card); border-radius: var(--radius-sm);
  padding: 20px 24px; display: flex; align-items: center; gap: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.trust-card .trust-icon { font-size: 28px; }
.trust-card .trust-title { font-size: 15px; font-weight: 700; }
.trust-card .trust-desc { font-size: 13px; color: var(--text-light); }

/* ─── Final CTA ─── */
.final-cta-wrap {
  background: linear-gradient(135deg, var(--red-dark), var(--red), var(--red-light));
  color: #fff; text-align: center;
  padding: 60px 20px; border-radius: var(--radius);
  margin: 20px 0;
}
.final-cta-wrap h2 { font-size: 30px; font-weight: 800; margin-bottom: 10px; }
.final-cta-wrap p { font-size: 16px; opacity: 0.85; margin-bottom: 24px; }
.final-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--red); font-weight: 800;
  padding: 18px 44px; border-radius: 14px; font-size: 20px;
  transition: all 0.25s ease; box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}
.final-cta:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(0,0,0,0.3); }

/* ─── Footer ─── */
.site-footer {
  background: var(--dark); color: rgba(255,255,255,0.6);
  padding: 36px 0; text-align: center; font-size: 13px; margin-top: 40px;
}
.site-footer .footer-links { display: flex; justify-content: center; gap: 20px; margin-bottom: 10px; }
.site-footer .footer-links a { color: rgba(255,255,255,0.7); font-weight: 600; transition: color 0.2s; }
.site-footer .footer-links a:hover { color: #fff; }
.site-footer p { line-height: 1.6; }

/* ─── Privacy Page ─── */
.privacy-page {
  max-width: 720px; margin: 0 auto; padding: 60px 20px;
}
.privacy-page h1 { font-size: 32px; font-weight: 800; margin-bottom: 6px; }
.privacy-page .last-updated { font-size: 14px; color: #999; margin-bottom: 28px; }
.privacy-page h2 { font-size: 22px; font-weight: 700; margin: 28px 0 10px; }
.privacy-page h3 { font-size: 17px; font-weight: 700; margin: 20px 0 6px; }
.privacy-page p { font-size: 15px; line-height: 1.8; color: #444; margin-bottom: 12px; }
.privacy-page ul { margin: 8px 0 16px; padding-right: 24px; }
.privacy-page ul li { font-size: 15px; line-height: 1.7; color: #444; margin-bottom: 5px; }

/* ─── Story / Stat / Trust / Docs extras ─── */
.story-text { font-size: 15px; line-height: 1.8; color: var(--text-light); }
.story-text p { margin-bottom: 10px; }
.story-em { font-size: 18px; font-weight: 700; color: var(--red); line-height: 1.6; margin-bottom: 16px; }
.stat { text-align: center; padding: 20px; background: var(--bg-card); border-radius: var(--radius-sm); box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.stat strong { font-size: 28px; font-weight: 800; color: var(--red); display: block; }
.stat span { font-size: 13px; color: var(--text-light); font-weight: 600; display: block; }
.trust-item { background: var(--bg-card); border-radius: var(--radius-sm); padding: 20px 24px; display: flex; align-items: center; gap: 14px; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.trust-item .trust-icon { font-size: 28px; }
.trust-item h3 { font-size: 15px; font-weight: 700; margin: 0; }
.trust-item p { font-size: 13px; color: var(--text-light); margin: 0; }
.docs { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.doc-link { display: inline-block; background: var(--bg-card); border: 1px solid #eee; padding: 10px 20px; border-radius: 10px; font-size: 14px; font-weight: 600; color: var(--text); transition: all 0.2s; }
.doc-link:hover { border-color: var(--red); color: var(--red); }
.testimonial { max-width: 640px; margin: 0 auto; text-align: center; }
.testimonial blockquote { font-size: 17px; line-height: 1.8; color: #ccc; font-weight: 400; }
.testimonial cite { font-size: 14px; color: #888; font-style: normal; display: block; margin-top: 12px; }
.section-white { background: var(--bg-card); padding: 60px 0; }
.section-dark { background: var(--dark); padding: 60px 0; }
.custom-cta-wrap { text-align: center; margin-top: 20px; }
.custom-cta { display: inline-flex; align-items: center; gap: 6px; background: transparent; border: 2px dashed #ddd; color: var(--text-light); padding: 12px 28px; border-radius: 12px; font-weight: 700; font-size: 15px; cursor: pointer; transition: all 0.25s ease; font-family: inherit; }
.custom-cta:hover { border-color: var(--red); color: var(--red); }

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .hero { min-height: 80vh; }
  .hero h1 { font-size: 28px; }
  .hero-sub { font-size: 15px; }
  .hero-content { padding: 70px 20px 50px; }
  .hero-stats { gap: 16px; }
  .hero-stat-num { font-size: 22px; }
  .hero-cta { font-size: 16px; padding: 14px 24px; }

  .story-layout { grid-template-columns: 1fr; gap: 24px; }
  .story-image-wrap img { height: 250px; }

  .tier-grid { grid-template-columns: 1fr 1fr; }
  .program-grid { grid-template-columns: 1fr; gap: 14px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; gap: 12px; }
  .stats-box { grid-template-columns: 1fr; gap: 12px; }

  .progress-card { padding: 20px; border-radius: var(--radius-sm); }
  .section { padding: 40px 0; }
  .section-title { font-size: 24px; }
  .final-cta { padding: 16px 32px; font-size: 18px; }
  .hero-logo { width: 80px; height: 80px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 24px; }
  .tier-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .hero-cta { width: 100%; max-width: 280px; justify-content: center; }
  .urgency-bar { font-size: 12px; padding: 8px 12px; }
  .progress-header { font-size: 12px; }
}
