/* The Permanent Weight Loss Mentorship — /mentorship funnel */
/* Layout + typography match main site (styles.css). Brand tokens inherited. */

.mentorship-page {
  min-height: 100vh;
  background: var(--cream);
  color: var(--charcoal);
  font-family: "Montserrat", Arial, sans-serif;
  letter-spacing: -0.015em;
}

/* Hero */
.mentorship-hero {
  text-align: center;
}

.mentorship-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin: 0 auto;
  width: 100%;
}

.mentorship-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  max-width: 880px;
}

.mentorship-hero .hero-description {
  margin: 0 auto;
  max-width: 680px;
}

.mentorship-vsl-block {
  width: 100%;
  max-width: 680px;
  margin: 0.25rem auto 0;
}

.mentorship-vsl-block .intro-video-player {
  height: auto;
  aspect-ratio: 16 / 9;
}

.faq-answer-video-block {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

.faq-answer-video-block .intro-video-player {
  height: auto;
  aspect-ratio: 16 / 9;
}

.mentorship-hero-actions {
  display: grid;
  gap: 0.6rem;
  width: 100%;
  max-width: 560px;
  margin: 0.5rem auto 0;
  justify-items: center;
}

.mentorship-capacity-note {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(74, 74, 74, 0.65);
}

.mentorship-content {
  max-width: 820px;
  margin: 0 auto;
}

.mentorship-content .section-heading {
  text-align: center;
}

.mentorship-lead {
  margin: 0 auto;
  max-width: 720px;
  font-size: 1.05rem;
  line-height: 1.6;
  text-align: center;
}

/* Objections checklist */
.mentorship-objections-list {
  list-style: none;
  margin: 1.75rem auto 0;
  padding: 0;
  max-width: 720px;
  display: grid;
  gap: 1rem;
  text-align: left;
}

.mentorship-objections-list li {
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, var(--pink) 0%, var(--pink-light) 100%);
  border: 1px solid rgba(74, 74, 74, 0.08);
  color: var(--charcoal);
  line-height: 1.5;
}

/* On a pink section-accent background, the pink card fill blends in —
   switch to a white card there so it still reads as a distinct card. */
.section-accent .mentorship-objections-list li {
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.mentorship-objections-list strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--charcoal);
  font-weight: 700;
}

/* ...except when the surrounding section is itself pink, where the card
   flips to a white fill (the override just above this block) — its
   keyword follows the white-background rule instead: pink text. */
.section-accent .mentorship-objections-list strong {
  color: var(--pink);
}

/* What's included value stack — 3-per-row card grid, same shape as the
   agency's own /coaches "What You Get" section, in Allison's brand pink.
   2 per row on mobile (not 1), same as the /coaches reference. */
.mentorship-card-grid {
  margin: 1.75rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  align-items: stretch;
  text-align: left;
}

@media (min-width: 1024px) {
  .mentorship-card-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.mentorship-feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, var(--pink) 0%, var(--pink-light) 100%);
  border: 1px solid rgba(74, 74, 74, 0.08);
  border-radius: var(--radius-md);
  padding: 0.85rem 0.8rem;
  /* Fixed, not min: every card must render at the exact same height below
     1024px. Value is the real measured natural height of this grid's
     tallest card content at a 320px viewport (2-per-row, ~130px column),
     plus a small safety margin, not a guess. */
  height: 288px;
  box-shadow: 0 4px 16px rgba(74, 74, 74, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

@media (min-width: 1024px) {
  .mentorship-feature-card {
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.3rem;
    height: auto;
  }
}

.mentorship-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(247, 168, 184, 0.3);
  border-color: rgba(247, 168, 184, 0.7);
}

.mentorship-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(74, 74, 74, 0.1);
  color: var(--sage-dark);
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 0.6rem;
}

@media (min-width: 1024px) {
  .mentorship-feature-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
    margin-bottom: 0.85rem;
  }
}

.mentorship-feature-heading {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.4rem;
  color: var(--charcoal);
}

@media (min-width: 1024px) {
  .mentorship-feature-heading {
    font-size: 1.02rem;
    line-height: 1.25;
    margin: 0 0 0.5rem;
  }
}

.mentorship-feature-text {
  margin: 0;
  font-size: 0.74rem;
  line-height: 1.35;
  color: rgba(74, 74, 74, 0.75);
}

@media (min-width: 1024px) {
  .mentorship-feature-text {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

/* Guarantee */
.mentorship-guarantee-inner {
  text-align: center;
}

.mentorship-guarantee-inner h2 {
  margin-bottom: 0.75rem;
}

/* Final CTA */
.mentorship-final-cta {
  text-align: center;
}

.mentorship-final-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.mentorship-final-cta-inner .mentorship-capacity-note {
  margin-top: -0.5rem;
}

/* Holiday-page roadmap timeline — reuses the same brand tokens/card shape
   as .mentorship-objections-list/.mentorship-feature-card so it reads as
   the same design system, just a taller card holding a phase heading plus
   a checklist instead of a single quote+text pair. */
.holiday-roadmap-list {
  list-style: none;
  margin: 1.75rem auto 0;
  padding: 0;
  max-width: 760px;
  display: grid;
  gap: 1.1rem;
  text-align: left;
}

.holiday-roadmap-phase {
  padding: 1.25rem 1.4rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(74, 74, 74, 0.08);
  box-shadow: var(--shadow-card);
}

.holiday-roadmap-phase h3 {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.65rem;
  color: var(--charcoal);
}

.holiday-roadmap-phase ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.holiday-roadmap-phase li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(74, 74, 74, 0.85);
}

.holiday-roadmap-phase li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--sage-dark);
  font-weight: 700;
}

/* Footer, matches ebook/freerecipe footer pattern */
.mentorship-footer {
  padding: 2.5rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(74, 74, 74, 0.7);
}

.mentorship-footer img {
  width: 44px;
  height: auto;
  margin-bottom: 0.75rem;
}

.mentorship-footer .site-legal-footer {
  margin-top: 1rem;
}
