/* CSS Document */

/* =========================
   PAGE.CSS – content pages
   ========================= */

.pageHero{
  padding: 34px 0 10px;
}

.heroGrid{
  display: grid;
  grid-template-columns: 1.25fr .85fr;
  gap: 18px;
  align-items: start;
}

.kicker{
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(189,210,237,.55);
  border: 1px solid rgba(20,45,80,.10);
  font-weight: 900;
  letter-spacing: .02em;
  color: rgba(20,45,80,.85);
  margin-bottom: 10px;
}

.lead{
  color: rgba(20,45,80,.78);
  line-height: 1.6;
  font-size: 1.05rem;
  max-width: 70ch;
}

.heroActions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.heroBadges{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.pill{
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(20,45,80,.10);
  color: rgba(20,45,80,.75);
  font-weight: 800;
  font-size: 13px;
}

.heroCard{
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(20,45,80,.10);
  box-shadow: 0 18px 55px rgba(0,0,0,.10);
}

.cardTitle{
  font-weight: 900;
  color: rgba(20,45,80,.9);
  margin-bottom: 10px;
}

.checkList{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.checkList li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(20,45,80,.78);
  font-weight: 700;
}

.check{
  width: 22px;
  height: 22px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(189,210,237,.55);
  border: 1px solid rgba(20,45,80,.10);
  color: rgba(20,45,80,.9);
  font-weight: 1000;
}

.miniNote{
  margin-top: 12px;
  font-size: 13px;
  color: rgba(20,45,80,.66);
  line-height: 1.5;
}

.pageSection{
  padding: 34px 0;
}

.pageSection.soft{
  background: rgba(189,210,237,.22);
  border-top: 1px solid rgba(20,45,80,.06);
  border-bottom: 1px solid rgba(20,45,80,.06);
}

.sectionTitle h2{
  margin: 0 0 8px;
}

.sectionTitle p{
  margin: 0;
  color: rgba(20,45,80,.75);
  max-width: 80ch;
  line-height: 1.6;
}

.content h2{
  margin-top: 26px;
}

.content h3{
  margin-top: 18px;
}

.content p{
  color: rgba(20,45,80,.75);
  line-height: 1.65;
  max-width: 90ch;
}

.content ul{
  margin: 8px 0 16px 18px;
}

.content li{
  margin: 6px 0;
}

.split{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: start;
}

.ctaBand{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(189,210,237,.35);
  border: 1px solid rgba(20,45,80,.10);
  box-shadow: 0 18px 55px rgba(0,0,0,.10);
}

.ctaBand h2{
  margin: 0 0 6px;
}

.ctaBand p{
  margin: 0;
  color: rgba(20,45,80,.75);
  line-height: 1.6;
  max-width: 70ch;
}

.ctaActions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ===== Responsive ===== */
@media (max-width: 980px){
  .heroGrid{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .ctaBand{ flex-direction: column; align-items: flex-start; }
}
