/* ===================================================
   MENTORIO LANDING — STYLE.CSS
   =================================================== */

/* ===== VARIABLES ===== */
:root {
  --white: #ffffff;
  --bg-alt: #F7F6FF;
  --bg-dark: #18163A;
  --text: #111827;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --accent: #6366F1;
  --accent-dark: #4338CA;
  --accent-light: #EEF2FF;
  --accent-mid: #C7D2FE;
  --green: #16A34A;
  --green-light: #F0FDF4;
  --red: #DC2626;
  --red-light: #FEF2F2;
  --disabled-bg: #F3F4F6;
  --disabled-text: #9CA3AF;
  --border: #E5E7EB;
  --shadow-sm:      0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow:         0 4px 24px rgba(99, 102, 241, 0.12);
  --shadow-lg:      0 16px 48px rgba(0, 0, 0, 0.12);
  --shadow-colored: 0 12px 40px rgba(99, 102, 241, 0.28);
  --shadow-green:   0 8px 24px rgba(22, 163, 74, 0.20);
  --radius: 20px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --max-w: 1100px;
  --font: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 96px 0;
}

/* ===== TYPOGRAPHY ===== */
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--text);
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.12;
  letter-spacing: -0.8px;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 56px;
  font-size: 17px;
  line-height: 1.6;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font);
  transition: all 0.22s ease;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid transparent;
  letter-spacing: -0.1px;
}

.btn-primary {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.30);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(99, 102, 241, 0.42);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn-white {
  background: white;
  color: var(--accent-dark);
  border-color: white;
  font-weight: 700;
}
.btn-white:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255, 255, 255, 0.25);
}

.btn-disabled {
  background: var(--disabled-bg);
  color: var(--disabled-text);
  border-color: var(--disabled-bg);
  cursor: not-allowed;
  box-shadow: none;
}

.btn-sm {
  padding: 9px 18px;
  font-size: 13px;
}

.btn-lg {
  padding: 17px 36px;
  font-size: 16px;
}

.btn-full {
  width: 100%;
}

/* ===== BADGE ===== */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  background: var(--accent-light);
  color: var(--accent-dark);
  border: 1px solid var(--accent-mid);
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.7);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.5px;
}

/* ===== HERO ===== */
.hero {
  padding: 96px 0 116px;
  text-align: center;
  background: linear-gradient(175deg, #EEF2FF 0%, #F7F6FF 45%, var(--white) 75%);
  overflow: hidden;
  position: relative;
}

/* Decorative blobs */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero::before {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99,102,241,0.10) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}
.hero::after {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(129,140,248,0.08) 0%, transparent 70%);
  bottom: -100px;
  left: -80px;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero__badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero__title {
  font-size: clamp(56px, 9vw, 96px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -3px;
  margin-bottom: 24px;
  color: var(--text);
}

.hero__title .accent {
  color: var(--accent);
  display: block;
}

.hero__subtitle {
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 44px;
  line-height: 1.65;
}

.hero__cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero__tools {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 14px;
}

.tool-badge {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.tool-badge:hover {
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}

/* ===== AUDIENCE ===== */
.audience {
  background: var(--bg-alt);
}

.audience .section-title {
  margin-bottom: 48px;
}

.audience__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.audience__card {
  background: white;
  border-radius: var(--radius);
  padding: 36px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.audience__card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.audience__card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
}

.audience__card--yes {
  border-color: #BBF7D0;
}
.audience__card--yes h3 { color: var(--green); }

.audience__card--no {
  border-color: #FECACA;
}
.audience__card--no h3  { color: var(--red); }

.check-list li,
.cross-list li {
  padding: 12px 0;
  padding-left: 28px;
  position: relative;
  font-size: 15px;
  line-height: 1.5;
  border-bottom: 1px solid var(--border);
}

.check-list li:last-child,
.cross-list li:last-child {
  border-bottom: none;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--green);
  font-weight: 800;
  font-size: 14px;
}

.cross-list li::before {
  content: '✗';
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--red);
  font-weight: 800;
  font-size: 14px;
}

/* ===== RESULTS ===== */
.results__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.result-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1.5px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
  position: relative;
  overflow: hidden;
}

.result-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #818CF8);
  opacity: 0;
  transition: opacity 0.25s;
}

.result-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--accent-mid);
}
.result-card:hover::before {
  opacity: 1;
}

.result-card__icon {
  font-size: 32px;
  margin-bottom: 16px;
  line-height: 1;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
}

.result-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.result-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== PROGRAM ===== */
.program {
  background: var(--bg-alt);
}

.accordion {
  max-width: 780px;
  margin: 0 auto;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow);
}

.accordion__item {
  border-bottom: 1px solid var(--border);
}

.accordion__item:last-child {
  border-bottom: none;
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
  letter-spacing: -0.1px;
}

.accordion__trigger:hover {
  background: var(--accent-light);
}

.accordion__trigger.active {
  color: var(--accent-dark);
  background: var(--accent-light);
}

.accordion__num {
  min-width: 30px;
  height: 30px;
  background: var(--accent-light);
  color: var(--accent-dark);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
}

.accordion__trigger.active .accordion__num {
  background: var(--accent);
  color: white;
}

.accordion__trigger > span:nth-child(2) {
  flex: 1;
}

.accordion__icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform 0.25s ease, color 0.15s;
  min-width: 24px;
  text-align: center;
  line-height: 1;
}

.accordion__trigger.active .accordion__icon {
  transform: rotate(45deg);
  color: var(--accent);
}

.accordion__body {
  display: none;
  padding: 4px 24px 22px;
  padding-left: 70px;
}

.accordion__body.open {
  display: block;
  animation: slideDown 0.25s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.accordion__body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.program__cta {
  text-align: center;
  margin-top: 44px;
}

/* ===== PRICING ===== */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.pricing__card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.pricing__card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pricing__card--featured {
  background: linear-gradient(145deg, #EEF2FF 0%, #E0E7FF 100%);
  border-color: var(--accent-mid);
  border-width: 2px;
  box-shadow: var(--shadow-colored);
}

.pricing__card--featured:hover {
  box-shadow: 0 20px 60px rgba(99, 102, 241, 0.32);
  transform: translateY(-5px);
}

.pricing__card--disabled {
  opacity: 0.6;
  background: #FAFAFA;
  box-shadow: none;
}

.pricing__card--disabled:hover {
  transform: none;
  box-shadow: none;
}

.pricing__badge {
  display: inline-flex;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  background: var(--accent);
  color: white;
  margin-bottom: 16px;
  align-self: flex-start;
  box-shadow: 0 3px 10px rgba(99, 102, 241, 0.30);
}

.pricing__badge--sold {
  background: var(--text-light);
  box-shadow: none;
}

.pricing__card h3 {
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.4px;
}

.pricing__desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 22px;
  line-height: 1.55;
  flex-grow: 0;
}

.pricing__price {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pricing__amount {
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1.5px;
  line-height: 1;
}

.pricing__amount--free {
  color: var(--green);
}

.pricing__duration {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
}

.pricing__sold-text {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing__features {
  margin-bottom: 28px;
  flex: 1;
}

.pricing__features li {
  padding: 9px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(229, 231, 235, 0.7);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.pricing__features li:last-child {
  border-bottom: none;
}

.pricing__features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 800;
  font-size: 13px;
  margin-top: 1px;
  flex-shrink: 0;
}

/* ===== REVIEWS ===== */
.reviews {
  background: var(--bg-alt);
}

.reviews__grid {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.reviews__videos {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.review-video {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  width: 240px;
  flex-shrink: 0;
  border: 1.5px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.review-video:hover {
  box-shadow: var(--shadow-colored);
  transform: translateY(-3px);
}

.review-video__wrap {
  position: relative;
  padding-bottom: 177.78%;
  height: 0;
}

.review-video__wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

.review-video__name {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.reviews__placeholder {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 40px;
  background: white;
  border-radius: var(--radius);
  border: 2px dashed var(--border);
  color: var(--text-muted);
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 600px) {
  .review-video { width: 100%; }
  .reviews__videos { flex-direction: column; }
}

/* ===== AUTHOR ===== */
.author__content {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.author__photo img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-lg);
}

.author__name {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.7px;
}

.author__stats {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  overflow: hidden;
}

.author__stat {
  display: flex;
  flex-direction: column;
  padding: 16px 20px;
  flex: 1;
  text-align: center;
  border-right: 1px solid var(--border);
}
.author__stat:last-child {
  border-right: none;
}

.author__stat-num {
  font-size: 30px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -1px;
}

.author__stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.author__bio {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.author__bio--highlight {
  background: var(--accent-light);
  border-left: 3px solid var(--accent);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 0;
  box-shadow: var(--shadow-sm);
}

/* ===== FAQ ===== */
.faq {
  background: var(--bg-alt);
}

.faq .accordion__trigger {
  font-size: 15px;
  font-weight: 600;
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: var(--bg-dark);
  text-align: center;
  padding: 112px 0;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(99,102,241,0.18) 0%, transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

.final-cta__eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
}

.final-cta__title {
  font-size: clamp(34px, 5.5vw, 60px);
  font-weight: 800;
  color: white;
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}

.final-cta__sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.60);
  max-width: 480px;
  margin: 0 auto 44px;
  line-height: 1.65;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 36px 0;
}

.footer__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__logo {
  font-size: 20px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.3px;
}

.footer__nav {
  display: flex;
  gap: 24px;
}

.footer__nav a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}

.footer__nav a:hover {
  color: white;
}

.footer__copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  section {
    padding: 68px 0;
  }

  .audience__grid {
    grid-template-columns: 1fr;
  }

  .results__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .author__content {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
    max-width: 500px;
  }

  .author__photo {
    max-width: 240px;
    margin: 0 auto;
  }

  .author__stats {
    justify-content: center;
  }

  .author__bio--highlight {
    text-align: left;
  }

  .author__text .btn {
    margin-top: 24px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 16px;
  }

  section {
    padding: 56px 0;
  }

  .header .container {
    height: 56px;
  }

  .logo {
    font-size: 20px;
  }

  .hero {
    padding: 64px 0 84px;
  }

  .hero__title {
    letter-spacing: -1.5px;
  }

  .hero__badges {
    gap: 8px;
  }

  .badge {
    font-size: 12px;
    padding: 5px 12px;
  }

  .results__grid {
    grid-template-columns: 1fr;
  }

  .accordion__trigger {
    padding: 16px;
    font-size: 14px;
    gap: 12px;
  }

  .accordion__body {
    padding: 4px 16px 18px;
    padding-left: 58px;
  }

  .audience__card {
    padding: 24px;
  }

  .final-cta {
    padding: 80px 0;
  }

  .footer__content {
    flex-direction: column;
    align-items: flex-start;
  }

  .author__stats {
    flex-direction: column;
  }

  .author__stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .author__stat:last-child {
    border-bottom: none;
  }
}
