/* Sales page for Calm & Confident Parenting System */
/* Does NOT override theme.css; uses cc- prefix to avoid collisions */

/* ── STICKY HEADER CTA ─────────────────────────────────────────────── */
.cc-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);
}
.cc-sticky-cta__text {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
}
.cc-sticky-cta__text strong { color: #fff; }
.cc-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;
}
.cc-sticky-btn:hover { background: var(--accent-rust-light); transform: translateY(-1px); }

/* ── HERO ─────────────────────────────────────────────────────────── */
.cc-hero {
  padding: 100px 40px 80px;
  background: var(--bg);
}
.cc-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.cc-hero__content { /* text side */ }
.cc-hero__image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.cc-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cc-hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}
.cc-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;
}
.cc-hero__sub {
  font-size: 18px;
  line-height: 1.75;
  color: var(--fg-muted);
  margin-bottom: 36px;
}
.cc-hero__cta { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
@media (max-width: 960px) {
  .cc-hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .cc-hero__image-wrap { order: -1; max-height: 400px; aspect-ratio: 16/9; }
  .cc-hero__cta { align-items: center; }
  .cc-hero__trust { justify-content: center; }
}
.cc-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;
}
.cc-btn:hover { background: var(--accent-rust-light); transform: translateY(-2px); }
.cc-btn--lg { font-size: 19px; padding: 22px 48px; }
.cc-price-note {
  font-size: 14px;
  color: var(--fg-muted);
}
.cc-price-note strong { color: var(--fg); }
.cc-hero__trust { display: flex; justify-content: center; gap: 32px; margin-top: 40px; flex-wrap: wrap; }
.cc-trust-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--fg-muted); }
.cc-trust-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-rust); flex-shrink: 0; }

/* ── WHO IT'S FOR ──────────────────────────────────────────────────── */
.cc-who {
  padding: 80px 40px;
  background: var(--white);
}
.cc-who__inner { max-width: 860px; margin: 0 auto; }
.cc-section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-rust);
  margin-bottom: 14px;
}
.cc-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;
}
.cc-section-sub { font-size: 17px; color: var(--fg-muted); line-height: 1.7; margin-bottom: 40px; max-width: 640px; }
.cc-who__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cc-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;
}
.cc-who__icon { flex-shrink: 0; margin-top: 2px; }
.cc-who__item p { font-size: 15px; line-height: 1.55; color: var(--fg); }

/* ── MODULES ───────────────────────────────────────────────────────── */
.cc-modules {
  padding: 80px 40px;
  background: var(--bg-alt);
}
.cc-modules__inner { max-width: 900px; margin: 0 auto; }
.cc-modules__grid { display: flex; flex-direction: column; gap: 20px; margin-top: 48px; }
.cc-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;
}
.cc-module__num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: rgba(200,86,58,0.18);
  line-height: 1;
}
.cc-module__badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-rust);
  margin-bottom: 6px;
}
.cc-module__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 10px;
}
.cc-module__desc { font-size: 15px; color: var(--fg-muted); line-height: 1.65; margin-bottom: 16px; }
.cc-module__lessons {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cc-module__lessons li {
  font-size: 14px;
  color: var(--fg);
  padding-left: 16px;
  position: relative;
}
.cc-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 ──────────────────────────────────────────────────────── */
.cc-outcomes {
  padding: 80px 40px;
  background: var(--fg);
  color: var(--white);
}
.cc-outcomes__inner { max-width: 860px; margin: 0 auto; }
.cc-outcomes .cc-section-eyebrow { color: var(--accent-rust-light); }
.cc-outcomes .cc-section-title { color: var(--white); margin-bottom: 40px; }
.cc-outcomes__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.cc-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;
}
.cc-outcome__icon { flex-shrink: 0; }
.cc-outcome p { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.85); }
.cc-outcome p strong { color: #fff; }

/* ── INSTRUCTOR ────────────────────────────────────────────────────── */
.cc-instructor {
  padding: 80px 40px;
  background: var(--white);
}
.cc-instructor__inner { max-width: 860px; margin: 0 auto; }
.cc-instructor__card {
  background: var(--bg);
  border-radius: 20px;
  padding: 48px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  align-items: start;
}
.cc-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-family: var(--font-display);
  font-size: 48px;
  color: var(--accent-rust);
}
.cc-instructor__name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 4px;
}
.cc-instructor__title { font-size: 14px; color: var(--accent-rust); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.cc-instructor__bio { font-size: 16px; color: var(--fg-muted); line-height: 1.75; }

/* ── GUARANTEE ─────────────────────────────────────────────────────── */
.cc-guarantee {
  padding: 80px 40px;
  background: var(--bg-alt);
}
.cc-guarantee__inner { max-width: 720px; margin: 0 auto; text-align: center; }
.cc-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;
}
.cc-guarantee .cc-section-title { font-size: clamp(24px, 3vw, 36px); margin-bottom: 20px; }
.cc-guarantee__body { font-size: 17px; color: var(--fg-muted); line-height: 1.75; }

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

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

/* ── RESPONSIVE ────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .cc-hero { padding: 100px 24px 60px; }
  .cc-hero__trust { gap: 16px; }
  .cc-who, .cc-modules, .cc-outcomes, .cc-instructor, .cc-guarantee, .cc-also-inside, .cc-faq, .cc-final-cta {
    padding: 60px 24px;
  }
  .cc-who__grid { grid-template-columns: 1fr; }
  .cc-module { grid-template-columns: 1fr; gap: 8px; }
  .cc-module__num { font-size: 36px; }
  .cc-outcomes__grid { grid-template-columns: 1fr; }
  .cc-instructor__card { grid-template-columns: 1fr; }
  .cc-final-cta { padding: 60px 24px 140px; }
  .cc-sticky-cta { flex-direction: column; gap: 10px; padding: 14px 20px; text-align: center; }
}
.cc-also-inside { padding: 80px 40px; background: var(--bg-alt); }
.cc-also-inside__inner { max-width: 960px; margin: 0 auto; }
.cc-also-inside__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; margin-top: 40px; }
.cc-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;
}
.cc-also-inside__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.cc-also-inside__card-icon { font-size: 28px; flex-shrink: 0; }
.cc-also-inside__card h4 { font-family: var(--font-display); font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.cc-also-inside__card p { font-size: 14px; color: var(--fg-muted); line-height: 1.55; margin-bottom: 10px; }
.cc-also-inside__price { font-size: 14px; font-weight: 600; color: var(--accent-rust); }
@media (max-width: 480px) {
  .cc-hero__headline { font-size: 32px; }
  .cc-btn--lg { font-size: 16px; padding: 16px 32px; }
}
