/* Sales page for Pregnancy & Postpartum Confidence */
/* Uses pc- prefix to avoid collisions with theme.css and other page styles */

body { padding-bottom: 80px; }

/* ── STICKY BOTTOM CTA ────────────────────────────────────────────── */
.pc-sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--fg);
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  box-shadow: 0 -4px 20px rgba(26,26,26,0.2);
}
.pc-sticky-cta__text { color: rgba(255,255,255,0.85); font-size: 15px; }
.pc-sticky-cta__text strong { color: #fff; }
.pc-sticky-btn {
  display: inline-block;
  background: var(--accent-rust);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}
.pc-sticky-btn:hover { background: var(--accent-rust-light); transform: translateY(-1px); }

/* ── HERO ─────────────────────────────────────────────────────────── */
.pc-hero {
  padding: 100px 40px 80px;
  background: var(--bg);
}
.pc-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.pc-hero__image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.pc-hero__image { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 960px) {
  .pc-hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .pc-hero__image-wrap { order: -1; max-height: 400px; aspect-ratio: 16/9; }
  .pc-hero__cta { align-items: center; }
  .pc-hero__trust { justify-content: center; }
}
.pc-hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-sage);
  margin-bottom: 20px;
}
.pc-hero__headline {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 22px;
}
.pc-hero__sub {
  font-size: 18px;
  line-height: 1.75;
  color: var(--fg-muted);
  margin-bottom: 36px;
}
.pc-hero__cta { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.pc-btn {
  display: inline-block;
  background: var(--accent-rust);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  padding: 18px 40px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}
.pc-btn:hover { background: var(--accent-rust-light); transform: translateY(-2px); }
.pc-btn--lg { font-size: 19px; padding: 22px 48px; }
.pc-price-note { font-size: 14px; color: var(--fg-muted); }
.pc-price-note strong { color: var(--fg); }
.pc-hero__trust {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.pc-trust-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--fg-muted); }
.pc-trust-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-rust); flex-shrink: 0; }

/* ── WHO IT'S FOR ─────────────────────────────────────────────────── */
.pc-who {
  padding: 80px 40px;
  background: var(--white);
}
.pc-who__inner { max-width: 860px; margin: 0 auto; }
.pc-section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-rust);
  margin-bottom: 14px;
}
.pc-section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.pc-section-sub { font-size: 17px; color: var(--fg-muted); line-height: 1.7; margin-bottom: 40px; max-width: 640px; }
.pc-who__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pc-who__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #FEF6F3;
  border: 1.5px solid rgba(200,86,58,0.15);
  border-radius: 12px;
  padding: 20px 22px;
}
.pc-who__icon { flex-shrink: 0; margin-top: 2px; }
.pc-who__item p { font-size: 15px; line-height: 1.55; color: var(--fg); }

/* ── WHAT'S INSIDE — MODULES ─────────────────────────────────────── */
.pc-modules {
  padding: 80px 40px;
  background: var(--bg-alt);
}
.pc-modules__inner { max-width: 900px; margin: 0 auto; }
.pc-modules__grid { display: flex; flex-direction: column; gap: 20px; margin-top: 48px; }
.pc-module {
  background: var(--white);
  border-radius: 14px;
  border: 1.5px solid rgba(26,26,26,0.07);
  padding: 32px 36px;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: start;
}
.pc-module__num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: rgba(200,86,58,0.18);
  line-height: 1;
}
.pc-module__badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-rust);
  margin-bottom: 6px;
}
.pc-module__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 10px;
}
.pc-module__desc { font-size: 15px; color: var(--fg-muted); line-height: 1.65; margin-bottom: 16px; }
.pc-module__lessons {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pc-module__lessons li {
  font-size: 14px;
  color: var(--fg);
  padding-left: 16px;
  position: relative;
}
.pc-module__lessons li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-rust);
  opacity: 0.6;
}

/* ── OUTCOMES ─────────────────────────────────────────────────────── */
.pc-outcomes {
  padding: 80px 40px;
  background: var(--fg);
  color: var(--white);
}
.pc-outcomes__inner { max-width: 860px; margin: 0 auto; }
.pc-outcomes .pc-section-eyebrow { color: var(--accent-rust-light); }
.pc-outcomes .pc-section-title { color: var(--white); margin-bottom: 40px; }
.pc-outcomes__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pc-outcome {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
}
.pc-outcome__icon { flex-shrink: 0; }
.pc-outcome p { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.85); }
.pc-outcome p strong { color: #fff; }

/* ── INSTRUCTOR ───────────────────────────────────────────────────── */
.pc-instructor {
  padding: 80px 40px;
  background: var(--white);
}
.pc-instructor__inner { max-width: 860px; margin: 0 auto; }
.pc-instructor__card {
  background: var(--bg);
  border-radius: 20px;
  padding: 48px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  align-items: start;
}
.pc-instructor__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(200,86,58,0.2) 0%, rgba(200,86,58,0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.pc-instructor__name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 4px;
}
.pc-instructor__title {
  font-size: 14px;
  color: var(--accent-rust);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.pc-instructor__bio { font-size: 16px; color: var(--fg-muted); line-height: 1.75; }

/* ── COMPANION MATERIALS ─────────────────────────────────────────── */
.pc-materials {
  padding: 80px 40px;
  background: var(--bg-alt);
}
.pc-materials__inner { max-width: 860px; margin: 0 auto; }
.pc-materials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
.pc-material {
  background: var(--white);
  border: 1.5px solid rgba(26,26,26,0.08);
  border-radius: 14px;
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.pc-material__icon {
  font-size: 28px;
  flex-shrink: 0;
}
.pc-material h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}
.pc-material p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* ── GUARANTEE ─────────────────────────────────────────────────────── */
.pc-guarantee {
  padding: 80px 40px;
  background: var(--white);
}
.pc-guarantee__inner { max-width: 720px; margin: 0 auto; text-align: center; }
.pc-guarantee__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 2px solid rgba(200,86,58,0.3);
  border-radius: 100px;
  padding: 12px 28px;
  margin-bottom: 32px;
  font-weight: 600;
  font-size: 15px;
}

/* ── FAQ ───────────────────────────────────────────────────────────── */
.pc-faq {
  padding: 80px 40px;
  background: var(--bg-alt);
}
.pc-faq__inner { max-width: 720px; margin: 0 auto; }
.pc-faq__list { display: flex; flex-direction: column; gap: 0; margin-top: 48px; }
.pc-faq__item {
  border-bottom: 1px solid rgba(26,26,26,0.08);
  padding: 24px 0;
}
.pc-faq__item:first-child { border-top: 1px solid rgba(26,26,26,0.08); }
.pc-faq__q {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.pc-faq__a { font-size: 16px; color: var(--fg-muted); line-height: 1.7; }

/* ── FINAL CTA ─────────────────────────────────────────────────────── */
.pc-final-cta {
  padding: 100px 40px 140px;
  background: var(--bg);
  text-align: center;
}
.pc-final-cta__inner { max-width: 720px; margin: 0 auto; }
.pc-final-cta .pc-section-title { font-size: clamp(32px, 4.5vw, 54px); margin-bottom: 20px; }
.pc-final-cta__sub { font-size: 18px; color: var(--fg-muted); line-height: 1.7; margin-bottom: 40px; }
.pc-final-cta__price {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.pc-final-cta__tagline { font-size: 14px; color: var(--fg-muted); margin-bottom: 32px; }
.pc-final-cta__includes {
  list-style: none;
  margin: 0 auto 40px;
  max-width: 400px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pc-final-cta__includes li {
  font-size: 15px;
  color: var(--fg);
  padding-left: 24px;
  position: relative;
}
.pc-final-cta__includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-rust);
  font-weight: 700;
}

/* ── RESPONSIVE ────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .pc-hero { padding: 100px 24px 60px; }
  .pc-hero__trust { gap: 16px; }
  .pc-who, .pc-modules, .pc-outcomes, .pc-instructor, .pc-materials, .pc-guarantee, .pc-also-inside, .pc-faq, .pc-final-cta {
    padding: 60px 24px;
  }
  .pc-who__grid { grid-template-columns: 1fr; }
  .pc-module { grid-template-columns: 1fr; gap: 8px; }
  .pc-module__num { font-size: 36px; }
  .pc-outcomes__grid { grid-template-columns: 1fr; }
  .pc-instructor__card { grid-template-columns: 1fr; }
  .pc-materials__grid { grid-template-columns: 1fr; }
  .pc-final-cta { padding: 60px 24px 140px; }
  .pc-sticky-cta { flex-direction: column; gap: 10px; padding: 14px 20px; text-align: center; }
}
.pc-also-inside { padding: 80px 40px; background: #F4F7F3; }
.pc-also-inside__inner { max-width: 960px; margin: 0 auto; }
.pc-also-inside__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; margin-top: 40px; }
.pc-also-inside__card {
  display: flex; align-items: flex-start; gap: 16px;
  background: white; border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(26,26,26,0.06);
  text-decoration: none; color: var(--fg); transition: transform 0.2s, box-shadow 0.2s;
}
.pc-also-inside__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.pc-also-inside__card-icon { font-size: 28px; flex-shrink: 0; }
.pc-also-inside__card h4 { font-family: var(--font-display); font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.pc-also-inside__card p { font-size: 14px; color: var(--fg-muted); line-height: 1.55; margin-bottom: 10px; }
.pc-also-inside__price { font-size: 14px; font-weight: 600; color: var(--accent-sage); }
@media (max-width: 480px) {
  .pc-hero__headline { font-size: 32px; }
  .pc-btn--lg { font-size: 16px; padding: 16px 32px; }
}