/* Education page supplemental styles.
   Only covers the few elements the funnel CSS doesn't already provide.
   All values reuse the funnel's own design tokens (#667eea / #764ba2,
   the same rgba white surfaces, radii, and muted greys) so the page reads
   as the same brand as the PRT funnel. */

/* Hero lead paragraph */
.hero-sub {
  color: #b5b5b5;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.6;
  max-width: 34rem;
  margin-bottom: clamp(1.5rem, 2.5vw, 2rem);
}

/* "What you'll learn" bullet list */
.edu-learn {
  list-style: none;
  display: grid;
  gap: 0.9rem;
  margin: 0 0 clamp(1.75rem, 3vw, 2.25rem);
  padding: 0;
}
.edu-learn li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: #ddd;
  font-size: clamp(0.9rem, 1.1vw, 1.02rem);
  text-align: left;
}
.edu-learn .tick {
  flex: none;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.25), rgba(118, 75, 162, 0.25));
  border: 1px solid rgba(102, 126, 234, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.edu-learn .tick svg { width: 12px; height: 12px; stroke: #8fa0ff; }

/* Trust meta line under hero copy */
.edu-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  padding-top: clamp(1.25rem, 2vw, 1.75rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #777;
  font-size: clamp(0.75rem, 1vw, 0.9rem);
}
.edu-trust b { color: #fff; font-weight: 600; }

/* "Often used for" line inside a product card */
.product-card .use {
  margin-top: 0.85rem;
  font-size: clamp(0.78rem, 1vw, 0.88rem);
  color: #9b9bb5;
}
.product-card .use b { color: #8fa0ff; font-weight: 600; }
.product-card.plain { text-align: left; }
.product-card.plain h3 { margin-bottom: 0.6rem; }

/* FAQ question / answer cards */
.edu-faq {
  max-width: min(900px, 90vw);
  margin: 0 auto;
  display: grid;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}
.edu-qa {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: clamp(1.25rem, 2vw, 1.6rem) clamp(1.4rem, 2.2vw, 1.9rem);
  text-align: left;
}
.edu-qa h3 {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.edu-qa p {
  color: #999;
  font-size: clamp(0.88rem, 1vw, 0.98rem);
  line-height: 1.6;
  margin: 0;
}

/* Form success state */
.form-ok { text-align: center; padding: 1.5rem 0.5rem; }
.form-ok .ok-check {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.35);
}
.form-ok .ok-check svg { width: 28px; height: 28px; stroke: #fff; }
.form-ok h3 { font-size: 1.3rem; margin-bottom: 0.5rem; text-align: center; }
.form-ok p { color: #999; font-size: 0.95rem; line-height: 1.55; }

/* Stacked shield lockup: white "PRT" over indigo "HELPS" (paired with .logo-funding-text) */
.logo-prt-text {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.02em;
}

/* Text wordmark used in the footer as the parent-company identity */
.site-footer .footer-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  color: #fff;
}

/* Footer compliance disclaimer, sits inside the shared site-footer */
.site-footer .footer-disclaimer {
  color: #5a5a5a;
  font-size: 0.72rem;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}
