/* Pregnancy & Postpartum Landing Page — uses sage accent instead of rust */

/* HERO */
.pg-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.pg-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 45%;
  background: linear-gradient(135deg, #EFF5F0 0%, #E4EDE5 100%);
  border-radius: 0 0 0 60px;
  z-index: 0;
}
.pg-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%;
}
.pg-hero__copy { max-width: 520px; }
.pg-hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-sage);
  background: rgba(92,126,95,0.1);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.pg-hero__headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 24px;
}
.pg-hero__sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.pg-hero__trust { display: flex; flex-direction: column; gap: 10px; }
.pg-trust__item { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--fg-muted); }
.pg-trust__item svg { flex-shrink: 0; }

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

/* FORM */
.pg-form { display: flex; flex-direction: column; gap: 12px; }
.pg-form--centered { max-width: 440px; margin: 0 auto; }
.pg-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%;
}
.pg-form__input:focus {
  outline: none;
  border-color: var(--accent-sage);
}
.pg-form__btn {
  background: var(--accent-sage);
  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;
}
.pg-form__btn:hover { background: #4A6A4D; transform: translateY(-1px); }
.pg-form__btn:active { transform: translateY(0); }
.pg-form__btn:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }
.pg-form__note { font-size: 12px; color: var(--fg-muted); text-align: center; margin-top: -4px; }
.pg-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;
}
.pg-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;
}

/* SHARED SECTION STYLES */
.pg-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;
}
.pg-section-sub { font-size: 18px; color: var(--fg-muted); margin-bottom: 56px; max-width: 600px; }
.pg-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-sage);
  margin-bottom: 16px;
}

/* FEARS */
.pg-fears { padding: 100px 40px; background: var(--white); }
.pg-fears__inner { max-width: 1200px; margin: 0 auto; }
.pg-fears__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pg-fear-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1.5px solid rgba(92,126,95,0.1);
}
.pg-fear-card__num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: rgba(92,126,95,0.25);
  line-height: 1;
  margin-bottom: 14px;
}
.pg-fear-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--fg);
}
.pg-fear-card p { font-size: 15px; color: var(--fg-muted); line-height: 1.65; }

/* REFRAME */
.pg-reframe { padding: 100px 40px; background: var(--fg); }
.pg-reframe__inner { max-width: 1200px; margin: 0 auto; }
.pg-reframe__content { max-width: 700px; }
.pg-reframe .pg-eyebrow { color: rgba(92,126,95,0.8); }
.pg-reframe__headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 500;
  font-style: italic;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: #A8D5AB;
  margin-bottom: 28px;
}
.pg-reframe__body {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 16px;
}

/* FLAGSHIP */
.pg-flagship { padding: 100px 40px; background: var(--bg-alt); }
.pg-flagship__inner { max-width: 1100px; margin: 0 auto; }
.pg-flagship__modules { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }
.pg-fmod {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(26,26,26,0.08);
}
.pg-fmod:first-child { border-top: 1px solid rgba(26,26,26,0.08); }
.pg-fmod__icon {
  width: 44px;
  height: 44px;
  background: rgba(92,126,95,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pg-fmod h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  color: var(--fg);
}
.pg-fmod p { font-size: 15px; color: var(--fg-muted); line-height: 1.65; }
.pg-flagship__badge {
  margin-top: 40px;
  display: inline-flex;
}
.pg-flagship__badge-text {
  background: rgba(92,126,95,0.12);
  border: 1.5px solid rgba(92,126,95,0.25);
  color: var(--accent-sage);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 40px;
  letter-spacing: -0.01em;
}

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

/* RESPONSIVE */
@media (max-width: 1024px) {
  .pg-hero__inner { grid-template-columns: 1fr; gap: 60px; }
  .pg-hero__copy { max-width: 100%; }
  .pg-fears__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .pg-hero { padding: 100px 24px 60px; }
  .pg-hero::before { display: none; }
  .pg-fears { padding: 70px 24px; }
  .pg-fears__grid { grid-template-columns: 1fr; }
  .pg-reframe { padding: 70px 24px; }
  .pg-flagship { padding: 70px 24px; }
  .pg-fmod { grid-template-columns: 44px 1fr; gap: 16px; }
  .pg-cta { padding: 70px 24px; }
  .pg-form--centered { max-width: 100%; }
}
@media (max-width: 480px) {
  .pg-hero__headline { font-size: 28px; }
  .pg-checklist-card { padding: 28px 24px; }
}
