/* ═══════════════════════════════════════════════════════
   Empower LO — Solutions: Individual LO Page Styles
   ═══════════════════════════════════════════════════════ */

/* ═══ HERO ═══ */
.lo-hero {
  position: relative; padding: 170px 24px 100px;
  text-align: center; overflow: hidden;
  background: linear-gradient(135deg, #0d0d1a 0%, #1a1028 25%, #3D2A60 55%, #1a1028 85%, #0d0d1a 100%);
  color: #fff;
}
.lo-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 40% 30%, rgba(91,62,140,0.25) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 70%, rgba(192,132,252,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.lo-hero-content { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.lo-hero .section-label { color: var(--orange); }
.lo-hero h1 {
  color: #fff; font-size: clamp(32px, 4.5vw, 52px); line-height: 1.1;
  background: linear-gradient(135deg, #fff 0%, #c084fc 50%, #F5A623 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lo-hero p { font-size: 18px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 36px; }
.lo-hero .hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ═══ PAIN POINTS ═══ */
.lo-pain { padding: 100px 24px; background: var(--bg-subtle); }
.lo-pain-sub { font-size: 18px; color: var(--text-secondary); line-height: 1.7; max-width: 720px; margin-bottom: 0; }
.pain-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px;
}
.pain-card {
  padding: 32px; border-radius: 20px; background: white;
  border: 1px solid var(--border); transition: transform 0.3s, box-shadow 0.3s;
}
.pain-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.06); }
.pain-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff7ed, #fed7aa);
  color: var(--orange-dark);
}
.pain-card h3 { font-size: 18px; margin-bottom: 10px; }
.pain-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin: 0; }

/* ═══ THE SHIFT ═══ */
.lo-shift { padding: 100px 24px; background: var(--dark); }
.shift-inner {
  max-width: 760px; padding: 48px;
  border-left: 4px solid var(--orange);
  background: rgba(245,166,35,0.04);
  border-radius: 0 20px 20px 0;
}
.shift-inner h2 { color: white; font-size: clamp(26px, 3.5vw, 36px); }
.shift-inner p { font-size: 18px; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.shift-inner p:last-child { margin-bottom: 0; }
.shift-inner strong { color: white; }

/* ═══ WHAT YOU GET ═══ */
.lo-features { padding: 100px 24px; background: var(--bg-subtle); }
.lo-features-sub { font-size: 18px; color: var(--text-secondary); line-height: 1.7; max-width: 720px; margin-bottom: 0; }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px;
}
.lo-feature-card {
  padding: 32px; border-radius: 20px; background: white;
  border: 1px solid var(--border); transition: transform 0.3s, box-shadow 0.3s;
}
.lo-feature-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.06); }
.lo-feat-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--orange-light), #fff7ed);
  border: 1px solid var(--orange-border);
  color: var(--orange-dark);
}
.lo-feature-card h3 { font-size: 18px; margin-bottom: 10px; }
.lo-feature-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin: 0; }
.lo-features-note {
  margin-top: 48px; text-align: center;
  font-size: 16px; color: var(--text-muted);
}
.lo-features-note a { color: var(--purple); font-weight: 600; text-decoration: none; }
.lo-features-note a:hover { text-decoration: underline; }

/* ═══ TESTIMONIALS ═══ */
.lo-testimonials { padding: 100px 24px; }
.lo-testimonial-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px;
}
.lo-testimonial-card {
  background: white; padding: 32px; border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
  transition: transform 0.3s, box-shadow 0.3s;
}
.lo-testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.06); }
.lo-testimonial-card .stars { color: var(--star); font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.lo-testimonial-card blockquote {
  font-size: 15px; color: var(--text-secondary); line-height: 1.7;
  margin-bottom: 24px; font-style: italic; border: none; padding: 0;
}
.lo-testimonial-card .attribution strong { display: block; color: var(--text); font-weight: 700; font-size: 14px; }
.lo-testimonial-card .attribution span { color: var(--text-muted); font-size: 13px; }

.lo-testimonials .review-bar {
  display: flex; align-items: center; gap: 20px;
  margin-top: 40px; justify-content: center;
  font-size: 15px; color: #666; flex-wrap: wrap;
}
.lo-testimonials .review-bar strong { color: var(--text); }
.lo-testimonials .review-bar .sep { color: #ccc; }

/* ═══ JOURNEY TIMELINE ═══ */
.lo-journey { padding: 100px 24px; }
.journey-sub { font-size: 18px; color: var(--text-secondary); margin-bottom: 0; max-width: 720px; }
.journey-timeline {
  margin-top: 64px; position: relative; max-width: 800px;
  padding-left: 120px;
}
.journey-timeline::before {
  content: ''; position: absolute; left: 52px; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--orange), var(--purple), transparent);
}
.journey-step { position: relative; padding-bottom: 48px; }
.journey-step:last-child { padding-bottom: 0; }
.journey-marker {
  position: absolute; left: -120px; top: 0; width: 100px;
  text-align: center;
}
.journey-day {
  display: inline-block; padding: 8px 16px; border-radius: 50px;
  background: var(--orange); color: white;
  font-size: 12px; font-weight: 700; letter-spacing: 0.5px;
  position: relative;
}
.journey-content h3 { font-size: 20px; margin-bottom: 8px; padding-top: 4px; }
.journey-content p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

/* ═══ STAT CALLOUTS ═══ */
.lo-stats { padding: 48px 24px; background: var(--bg-light, #f8f7fa); border-top: 1px solid rgba(91,62,140,0.08); border-bottom: 1px solid rgba(91,62,140,0.08); }
.stats-grid {
  display: flex; justify-content: center; align-items: center;
  max-width: 900px; margin: 0 auto;
}
.stats-grid .stat-item {
  text-align: center; padding: 16px 40px;
  border-right: 1px solid rgba(91,62,140,0.12);
}
.stats-grid .stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 36px; font-weight: 800; color: var(--purple); margin-bottom: 4px;
  letter-spacing: -0.5px;
}
.stat-label { font-size: 13px; color: var(--text-muted, #666); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }

/* ═══ FAQ ═══ */
.lo-faq { padding: 100px 24px; background: var(--bg-subtle); }
.lo-faq .faq-list { max-width: 720px; }
.lo-faq .faq-item { border-bottom: 1px solid var(--border); }
.lo-faq .faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; cursor: pointer; font-size: 17px; font-weight: 700;
  color: var(--text);
}
.lo-faq .faq-icon {
  font-size: 20px; font-weight: 400; color: var(--text-muted);
  transition: transform 0.3s;
}
.lo-faq .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.lo-faq .faq-answer-inner { padding: 0 0 24px; font-size: 15px; color: var(--text-secondary); line-height: 1.7; }
.lo-faq .faq-answer-inner a { color: var(--purple); text-decoration: none; font-weight: 600; }
.lo-faq .faq-answer-inner a:hover { text-decoration: underline; }
.lo-faq .faq-item.open .faq-icon { transform: rotate(45deg); }
.lo-faq .faq-item.open .faq-answer { max-height: 500px; }

/* ═══ PRICING TEASER ═══ */
.lo-pricing-teaser { padding: 80px 24px; }
.lo-pricing-box {
  max-width: 720px; margin: 0 auto; padding: 56px 48px;
  border-radius: 24px; background: white; text-align: center;
  position: relative; border: 1px solid var(--border);
}
.lo-pricing-box::before {
  content: ''; position: absolute; inset: -2px; border-radius: 26px;
  background: linear-gradient(135deg, var(--orange), var(--purple-glow), var(--purple));
  z-index: -1;
}
.lo-pricing-box .section-label { color: var(--orange); }
.lo-pricing-box h2 { font-size: clamp(28px, 3.5vw, 40px); }
.lo-pricing-box p { font-size: 17px; color: var(--text-secondary); max-width: 560px; margin: 0 auto 24px; line-height: 1.65; }
.lo-pricing-box .pricing-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ═══ CROSS-LINKS ═══ */
.lo-crosslinks { padding: 40px 24px 60px; }
.lo-crosslinks p {
  font-size: 16px; color: var(--text-muted); text-align: center; max-width: 720px; margin: 0 auto;
}
.lo-crosslinks a { color: var(--purple); text-decoration: none; }
.lo-crosslinks a:hover { text-decoration: underline; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .pain-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .lo-testimonial-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .lo-hero { padding: 140px 16px 60px; }
  .lo-hero h1 { font-size: 26px; }
  .pain-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .lo-testimonial-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .journey-timeline { padding-left: 80px; }
  .journey-timeline::before { left: 32px; }
  .journey-marker { left: -80px; width: 60px; }
  .journey-day { font-size: 10px; padding: 6px 10px; }
  .shift-inner { padding: 32px 24px; }
  .lo-pricing-box { padding: 40px 24px; }
}
@media (max-width: 480px) {
  .lo-hero .hero-buttons { flex-direction: column; }
  .lo-pricing-box .pricing-buttons { flex-direction: column; align-items: center; }
  .stat-number { font-size: 28px; }
}
