/* ═══════════════════════════════════════════════════
   MENTORMAP — PRODUCT PAGE STYLES
   ═══════════════════════════════════════════════════ */

/* ───── Gradient Utilities ───── */
.mm-gradient-text {
  background: linear-gradient(135deg, #A78BFA 0%, #7C3AED 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mm-gradient-text-light {
  background: linear-gradient(135deg, #C4B5FD 0%, #A78BFA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mm-btn-primary {
  background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
  color: #fff !important;
}

.mm-btn-primary:hover {
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.35);
}

.mm-btn-full {
  width: 100%;
  text-align: center;
}


/* ═══════════════════════════════════════════════════
   SECTION 1 — HERO
   ═══════════════════════════════════════════════════ */
.mm-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--hero-grad);
  overflow: hidden;
  padding: 120px 20px 60px;
}

.mm-hero-content {
  position: relative;
  text-align: center;
  max-width: 900px;
  z-index: 1;
}

.mm-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 100px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.2);
  font-size: 13px;
  font-weight: 600;
  color: #A78BFA;
  margin-bottom: 28px;
}

.mm-tagline-quote {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  margin-top: 40px;
  font-family: var(--font-heading);
}


/* ═══════════════════════════════════════════════════
   SECTION 2 — ABOUT
   ═══════════════════════════════════════════════════ */
.mm-about {
  background: var(--bg-off);
  padding: clamp(80px, 10vw, 140px) 0;
}

.mm-about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-mid);
  line-height: 1.8;
}

.mm-about-content p {
  margin-bottom: 24px;
}

.mm-about-highlight {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--text-dark);
  font-weight: 600;
}


/* ═══════════════════════════════════════════════════
   SECTION 3 — PROBLEM
   ═══════════════════════════════════════════════════ */
.mm-problem {
  position: relative;
  background: var(--hero-grad);
  padding: clamp(100px, 12vw, 160px) 0;
  overflow: hidden;
}

.mm-problem-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
  color: white;
}

.mm-problem-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto 48px;
}

.mm-problem-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: transform 0.4s var(--ease-luxury);
}

.mm-problem-item:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.06);
}

.mm-problem-icon {
  font-size: 24px;
  opacity: 0.5;
}

.mm-problem-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  font-weight: 500;
}

.mm-problem-conclusion {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 24px;
  color: #fff;
  font-style: italic;
}

/* Stagger List */
.mm-problem-list .reveal:nth-child(1) { transition-delay: 0.1s; }
.mm-problem-list .reveal:nth-child(2) { transition-delay: 0.2s; }
.mm-problem-list .reveal:nth-child(3) { transition-delay: 0.3s; }
.mm-problem-list .reveal:nth-child(4) { transition-delay: 0.4s; }
.mm-problem-list .reveal:nth-child(5) { transition-delay: 0.5s; }


/* ═══════════════════════════════════════════════════
   SECTION 4 — SOLUTION (Features alternative)
   ═══════════════════════════════════════════════════ */
.mm-solution {
  background: var(--bg-white);
  padding: clamp(80px, 10vw, 140px) 0;
}

.mm-grid-2x3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.mm-sol-card {
  background: var(--bg-off);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: transform 0.5s var(--ease-luxury), box-shadow 0.5s var(--ease-luxury);
}

.mm-sol-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(139, 92, 246, 0.08); /* slight purple tint shadow */
  background: #fff;
}

.mm-sol-icon {
  font-size: 40px;
  display: block;
  margin-bottom: 20px;
}

.mm-sol-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.mm-sol-conclusion {
  text-align: center;
  font-size: 20px;
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 600;
}

/* Stagger */
.mm-grid-2x3 .reveal:nth-child(2) { transition-delay: 0.1s; }
.mm-grid-2x3 .reveal:nth-child(3) { transition-delay: 0.2s; }
.mm-grid-2x3 .reveal:nth-child(4) { transition-delay: 0.3s; }
.mm-grid-2x3 .reveal:nth-child(5) { transition-delay: 0.4s; }
.mm-grid-2x3 .reveal:nth-child(6) { transition-delay: 0.5s; }


/* ═══════════════════════════════════════════════════
   SECTION 5 — WHAT WE OFFER
   ═══════════════════════════════════════════════════ */
.mm-offer {
  position: relative;
  background: var(--hero-grad);
  padding: clamp(80px, 10vw, 140px) 0;
  overflow: hidden;
}

.mm-offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.mm-offer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: transform 0.4s, background 0.4s;
}

.mm-offer-row:hover {
  transform: scale(1.02);
  background: rgba(255, 255, 255, 0.08);
}

.mm-offer-label {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.mm-offer-check {
  color: #A78BFA;
  font-weight: bold;
}


/* ═══════════════════════════════════════════════════
   SECTION 6 — WHY DIFFERENT
   ═══════════════════════════════════════════════════ */
.mm-diff {
  background: var(--bg-white);
  padding: clamp(80px, 10vw, 140px) 0;
}

.mm-diff-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}

.mm-diff-item {
  padding: 32px;
  background: var(--bg-off);
  border-radius: 20px;
  border-left: 4px solid #8B5CF6;
}

.mm-diff-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
}

.mm-diff-conclusion {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--text-dark);
}


/* ═══════════════════════════════════════════════════
   SECTION 7 — VISION
   ═══════════════════════════════════════════════════ */
.mm-vision {
  background: var(--hero-grad);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mm-vision-text {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  color: #fff;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.mm-vision-text strong {
  font-weight: 700;
  color: #A78BFA;
}


/* ═══════════════════════════════════════════════════
   SECTION 8 — CTA
   ═══════════════════════════════════════════════════ */
.mm-cta {
  background: var(--bg-off);
  padding: clamp(80px, 10vw, 140px) 0;
}

.mm-cta-card {
  background: var(--bg-white);
  border-radius: 24px;
  padding: 80px 40px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.03);
}

.mm-cta-card p {
  font-size: 18px;
  color: var(--text-mid);
  margin-bottom: 40px;
}

.mm-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}


/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .mm-grid-2x3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mm-hero {
    min-height: auto;
    padding: 140px 20px 80px;
  }

  .mm-grid-2x3,
  .mm-offer-grid,
  .mm-diff-list {
    grid-template-columns: 1fr;
  }

  .mm-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .mm-cta-buttons .btn {
    width: 100%;
    max-width: 320px;
  }
}
