/* ═══════════════════════════════════════════════════════
   Empower LO — Solutions: Teams & Leaders Page Styles
   ═══════════════════════════════════════════════════════ */

/* ═══ HERO ═══ */
.teams-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%);
}
.teams-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;
}
.teams-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}
.teams-hero .container { position: relative; z-index: 2; }
.teams-hero .section-label { color: var(--purple-glow); }
.teams-hero h1 {
  color: white; max-width: 900px; margin: 0 auto 24px;
  background: linear-gradient(135deg, #fff 0%, #d8c4f0 50%, #c084fc 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.teams-hero p {
  font-size: 18px; color: var(--text-light); max-width: 700px; margin: 0 auto 40px; line-height: 1.7;
}
.teams-hero .hero-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ═══ PROBLEM AT SCALE ═══ */
.teams-problem { padding: 100px 24px; }
.teams-problem-sub { font-size: 18px; color: var(--text-secondary); line-height: 1.7; max-width: 720px; margin-bottom: 0; }
.problem-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 56px;
}
.problem-card {
  padding: 36px; border-radius: 20px; background: var(--bg-subtle);
  border: 1px solid var(--border); transition: transform 0.3s, box-shadow 0.3s;
}
.problem-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.06); }
.problem-num {
  font-size: 14px; font-weight: 800; color: var(--purple);
  font-family: 'Inter', monospace; margin-bottom: 12px;
}
.problem-card h3 { font-size: 20px; margin-bottom: 10px; }
.problem-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin: 0; }
.teams-problem-closer {
  margin-top: 48px; max-width: 760px;
  font-size: 17px; color: var(--text-secondary); line-height: 1.7;
}
.teams-problem-closer strong { color: var(--text); }

/* ═══ SOLUTION INTRO ═══ */
.teams-solution {
  padding: 80px 24px; background: var(--dark); color: white;
}
.teams-solution h2 { color: white; }
.teams-solution .solution-sub {
  font-size: 18px; color: var(--text-light); max-width: 760px; line-height: 1.7; margin-bottom: 0;
}

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

/* ═══ DEPLOY TIMELINE ═══ */
.teams-deploy { padding: 100px 24px; }
.deploy-sub { font-size: 18px; color: var(--text-secondary); line-height: 1.7; max-width: 720px; margin-bottom: 0; }
.deploy-timeline {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px;
  position: relative;
}
.deploy-timeline::before {
  content: ''; position: absolute; top: 28px; left: 40px; right: 40px;
  height: 3px; background: linear-gradient(to right, var(--purple), var(--purple-glow), var(--orange));
  border-radius: 2px;
}
.deploy-step {
  padding: 24px; border-radius: 16px; background: var(--bg-subtle);
  border: 1px solid var(--border); position: relative; padding-top: 56px;
}
.deploy-phase {
  position: absolute; top: -14px; left: 24px;
  background: var(--purple); color: white;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  padding: 5px 14px; border-radius: 50px; text-transform: uppercase;
}
.deploy-step h3 { font-size: 17px; margin-bottom: 8px; }
.deploy-step p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin: 0; }

/* ═══ BEFORE/AFTER ═══ */
.teams-comparison { padding: 100px 24px; background: var(--bg-subtle); }
.compare-sub { font-size: 18px; color: var(--text-secondary); line-height: 1.7; max-width: 720px; margin-bottom: 0; }
.compare-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 56px;
}
.compare-col {
  padding: 40px; border-radius: 20px;
}
.compare-col.before {
  background: #fff5f5; border: 1px solid #fecaca;
}
.compare-col.after {
  background: #f0fdf4; border: 1px solid #bbf7d0;
}
.compare-col h3 { font-size: 20px; margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.compare-col.before h3 { color: #dc2626; }
.compare-col.after h3 { color: #16a34a; }
.compare-col ul { list-style: none; padding: 0; margin: 0; }
.compare-col ul li {
  padding: 10px 0 10px 28px; font-size: 15px; color: var(--text-secondary);
  line-height: 1.5; position: relative;
}
.compare-col.before ul li::before {
  content: '✗'; position: absolute; left: 0; top: 10px;
  color: #dc2626; font-weight: 800; font-size: 13px;
}
.compare-col.after ul li::before {
  content: '✓'; position: absolute; left: 0; top: 10px;
  color: #16a34a; font-weight: 800; font-size: 13px;
}

/* ═══ SCALE PROOF ═══ */
.teams-scale { padding: 80px 24px; background: var(--dark); }
.scale-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.scale-stat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-bottom: 32px;
}
.scale-num {
  font-size: 32px; font-weight: 900; margin-bottom: 4px;
  background: linear-gradient(135deg, #fff, var(--purple-glow));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.scale-label { font-size: 13px; color: var(--text-light); }
.scale-note { font-size: 16px; color: var(--text-muted); font-style: italic; }

/* ═══ TESTIMONIAL ═══ */
.teams-testimonial { padding: 80px 24px; }
.teams-quote-card {
  max-width: 680px; margin: 0 auto; text-align: center;
  padding: 48px; border-radius: 24px; background: var(--bg-subtle);
  border: 1px solid var(--border);
}
.teams-quote-card .stars { color: var(--star); font-size: 16px; margin-bottom: 20px; letter-spacing: 3px; }
.teams-quote-card blockquote {
  font-size: 20px; color: var(--text); line-height: 1.7;
  margin-bottom: 24px; font-style: italic; border: none; padding: 0;
}
.teams-quote-card .attribution strong { display: block; font-weight: 700; font-size: 16px; color: var(--text); }
.teams-quote-card .attribution span { color: var(--text-muted); font-size: 14px; }

/* ═══ FAQ ═══ */
.teams-faq { padding: 100px 24px; }
.teams-faq .faq-list { max-width: 720px; }
.teams-faq .faq-item { border-bottom: 1px solid var(--border); }
.teams-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);
}
.teams-faq .faq-icon {
  font-size: 20px; font-weight: 400; color: var(--text-muted);
  transition: transform 0.3s;
}
.teams-faq .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.teams-faq .faq-answer-inner { padding: 0 0 24px; font-size: 15px; color: var(--text-secondary); line-height: 1.7; }
.teams-faq .faq-item.open .faq-icon { transform: rotate(45deg); }
.teams-faq .faq-item.open .faq-answer { max-height: 500px; }

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

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

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .deploy-timeline { grid-template-columns: 1fr 1fr; }
  .deploy-timeline::before { display: none; }
  .cap-grid { grid-template-columns: 1fr 1fr; }
  .scale-stat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .teams-hero { padding: 140px 16px 60px; }
  .problem-grid { grid-template-columns: 1fr; }
  .cap-grid { grid-template-columns: 1fr; }
  .deploy-timeline { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .scale-stat-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .teams-quote-card { padding: 32px 24px; }
  .teams-quote-card blockquote { font-size: 17px; }
  .teams-pricing-box { padding: 40px 24px; }
}
@media (max-width: 480px) {
  .teams-hero .hero-buttons { flex-direction: column; align-items: center; }
  .teams-pricing-box .pricing-buttons { flex-direction: column; align-items: center; }
  .scale-num { font-size: 24px; }
}
