/* Parenting Course Landing Page */

/* HERO */
.p-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.p-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 45%;
  background: linear-gradient(135deg, #FEF6F3 0%, #F2EDE4 100%);
  border-radius: 0 0 0 60px;
  z-index: 0;
}
.p-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
.p-hero__copy { max-width: 520px; }
.p-hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-rust);
  background: rgba(200,86,58,0.1);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.p-hero__headline {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 24px;
}
.p-hero__sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.p-hero__trust { display: flex; flex-direction: column; gap: 10px; }
.p-trust__item { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--fg-muted); }
.p-trust__item svg { flex-shrink: 0; }

/* CHECKLIST CARD */
.p-checklist-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid rgba(200,86,58,0.12);
}
.p-checklist-card__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-rust);
  background: rgba(200,86,58,0.1);
  padding: 5px 12px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 16px;
}
.p-checklist-card__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
  color: var(--fg);
}
.p-checklist-card__desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.p-checklist-card__bullets { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.p-checklist-card__bullets li {
  font-size: 14px;
  color: var(--fg);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.p-checklist-card__bullets li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-rust);
  font-weight: 600;
}

/* FORM */
.p-form { display: flex; flex-direction: column; gap: 12px; }
.p-form--centered { max-width: 440px; margin: 0 auto; }
.p-form__input {
  padding: 14px 18px;
  border: 1.5px solid rgba(26,26,26,0.15);
  border-radius: var(--radius);
  font-size: 16px;
  font-family: var(--font-body);
  background: var(--white);
  color: var(--fg);
  transition: border-color 0.2s;
  width: 100%;
}
.p-form__input:focus {
  outline: none;
  border-color: var(--accent-rust);
}
.p-form__btn {
  background: var(--accent-rust);
  color: white;
  border: none;
  padding: 15px 28px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: -0.01em;
}
.p-form__btn:hover { background: #B54A32; transform: translateY(-1px); }
.p-form__btn:active { transform: translateY(0); }
.p-form__btn:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }
.p-form__note { font-size: 12px; color: var(--fg-muted); text-align: center; margin-top: -4px; }
.p-form__success {
  background: rgba(92,126,95,0.12);
  border: 1px solid rgba(92,126,95,0.3);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: var(--accent-sage);
  font-size: 15px;
  text-align: center;
}
.p-form__error {
  background: rgba(200,86,58,0.08);
  border: 1px solid rgba(200,86,58,0.2);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--accent-rust);
  font-size: 14px;
}

/* PROBLEMS */
.p-problems { padding: 100px 40px; background: var(--white); }
.p-problems__inner { max-width: 1200px; margin: 0 auto; }
.p-section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--fg);
  margin-bottom: 12px;
}
.p-section-sub { font-size: 18px; color: var(--fg-muted); margin-bottom: 56px; max-width: 560px; }
.p-problems__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.p-problem-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1.5px solid rgba(26,26,26,0.06);
}
.p-problem-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(200,86,58,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.p-problem-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--fg);
}
.p-problem-card p { font-size: 15px; color: var(--fg-muted); line-height: 1.65; }

/* CURRICULUM */
.p-curriculum { padding: 100px 40px; background: var(--bg-alt); }
.p-curriculum__inner { max-width: 1200px; margin: 0 auto; }
.p-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-rust);
  margin-bottom: 16px;
}
.p-modules { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }
.p-module {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid rgba(26,26,26,0.08);
}
.p-module:first-child { border-top: 1px solid rgba(26,26,26,0.08); }
.p-module__num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  color: rgba(200,86,58,0.25);
  line-height: 1;
  padding-top: 4px;
}
.p-module__content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--fg);
}
.p-module__content p { font-size: 15px; color: var(--fg-muted); line-height: 1.65; }

/* TESTIMONIALS */
.p-testimonials { padding: 100px 40px; background: var(--white); }
.p-testimonials__inner { max-width: 1200px; margin: 0 auto; }
.p-testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.p-testi {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1.5px solid rgba(26,26,26,0.06);
}
.p-testi__quote {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  font-style: italic;
  color: var(--fg);
  line-height: 1.55;
  margin-bottom: 16px;
}
.p-testi__author { font-size: 14px; color: var(--fg-muted); }

/* CTA */
.p-cta { padding: 100px 40px; background: var(--fg); }
.p-cta__inner { max-width: 680px; margin: 0 auto; text-align: center; }
.p-cta__headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
}
.p-cta__sub { font-size: 18px; color: rgba(255,255,255,0.65); margin-bottom: 36px; line-height: 1.65; }
.p-cta .p-form__input { border-color: rgba(255,255,255,0.15); background: rgba(255,255,255,0.08); color: white; }
.p-cta .p-form__input::placeholder { color: rgba(255,255,255,0.45); }
.p-cta .p-form__btn { background: var(--accent-rust); }
.p-cta .p-form__note { color: rgba(255,255,255,0.4); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .p-hero__inner { grid-template-columns: 1fr; gap: 60px; }
  .p-hero__copy { max-width: 100%; }
  .p-problems__grid { grid-template-columns: 1fr 1fr; }
  .p-testimonials__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .p-hero { padding: 100px 24px 60px; }
  .p-hero::before { display: none; }
  .p-problems { padding: 70px 24px; }
  .p-problems__grid { grid-template-columns: 1fr; }
  .p-curriculum { padding: 70px 24px; }
  .p-module { grid-template-columns: 60px 1fr; gap: 20px; }
  .p-testimonials { padding: 70px 24px; }
  .p-testimonials__grid { grid-template-columns: 1fr; }
  .p-cta { padding: 70px 24px; }
  .p-form--centered { max-width: 100%; }
}
@media (max-width: 480px) {
  .p-hero__headline { font-size: 30px; }
  .p-checklist-card { padding: 28px 24px; }
}