/* ─────────────────────────────────────────────────────────
   feature-page.css  –  content sections for feature pages
   Works alongside site-shell-refined.css
   ───────────────────────────────────────────────────────── */

/* ── Page Hero ─────────────────────────────────────────── */
.feat-hero {
  background: linear-gradient(135deg, #3c0879 0%, #5b21b6 100%);
  padding: 72px 0 60px;
  color: #fff;
}
.feat-hero .container { max-width: 900px; }
.feat-hero-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem; color: rgba(255,255,255,.55);
  margin-bottom: 20px; flex-wrap: wrap;
}
.feat-hero-breadcrumb a { color: rgba(255,255,255,.65); text-decoration: none; }
.feat-hero-breadcrumb a:hover { color: #fff; }
.feat-hero-breadcrumb span { color: rgba(255,255,255,.35); }
.feat-hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px; padding: 5px 14px;
  font-size: .78rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: rgba(255,255,255,.85);
  margin-bottom: 18px;
}
.feat-hero h1 {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 800; line-height: 1.2; margin: 0 0 18px;
}
.feat-hero-desc {
  font-size: 1.05rem; color: rgba(255,255,255,.75);
  line-height: 1.7; max-width: 680px; margin: 0 0 30px;
}
.feat-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Feature Intro Split ───────────────────────────────── */
.feat-intro { padding: 72px 0; }
.feat-intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.feat-intro-grid.flip { direction: rtl; }
.feat-intro-grid.flip > * { direction: ltr; }
.feat-intro-img img {
  width: 100%; border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
}
.feat-intro-content .section-eyebrow {
  display: inline-block; font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: #7c3aed; background: #f3e8ff; border-radius: 12px;
  padding: 4px 12px; margin-bottom: 16px;
}
.feat-intro-content h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800; line-height: 1.25; margin: 0 0 16px;
}
.feat-intro-content p {
  color: #4b5563; line-height: 1.8; margin: 0 0 20px;
}
.feat-check-list { list-style: none; margin: 0 0 28px; padding: 0; }
.feat-check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .93rem; color: #374151; padding: 5px 0; line-height: 1.5;
}
.feat-check-list li::before {
  content: '✓'; flex-shrink: 0;
  width: 20px; height: 20px; border-radius: 50%;
  background: #7c3aed; color: #fff;
  font-size: .7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
@media (max-width: 768px) {
  .feat-intro-grid, .feat-intro-grid.flip {
    grid-template-columns: 1fr; direction: ltr; gap: 36px;
  }
}

/* ── Who Benefits ──────────────────────────────────────── */
.feat-who { background: #f9fafb; padding: 72px 0; }
.feat-who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.feat-who-card {
  background: #fff; border-radius: 16px;
  border: 1px solid #e5e7eb; padding: 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.feat-who-card .who-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: #7c3aed; background: #f3e8ff;
  border-radius: 10px; padding: 3px 10px; margin-bottom: 14px;
}
.feat-who-card h3 { font-size: 1.15rem; font-weight: 700; margin: 0 0 16px; }
.feat-who-card ul { list-style: none; margin: 0 0 20px; padding: 0; }
.feat-who-card ul li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: .88rem; color: #4b5563; padding: 4px 0; line-height: 1.5;
}
.feat-who-card ul li::before {
  content: '→'; color: #7c3aed; font-weight: 700; flex-shrink: 0;
}
@media (max-width: 640px) {
  .feat-who-grid { grid-template-columns: 1fr; }
}

/* ── Section heading helper ────────────────────────────── */
.section-head { text-align: center; margin-bottom: 48px; }
.section-head .section-eyebrow {
  display: inline-block; font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: #7c3aed; background: #f3e8ff; border-radius: 12px;
  padding: 4px 12px; margin-bottom: 14px;
}
.section-head h2 { font-size: clamp(1.5rem,2.8vw,2.1rem); font-weight: 800; margin: 0 0 12px; }
.section-head p { color: #6b7280; max-width: 580px; margin: 0 auto; line-height: 1.7; }

/* ── CTA banner override for btn-outline-white ─────────── */
.cta-banner .btn-outline-white {
  background: transparent; border: 2px solid rgba(255,255,255,.5);
  color: #fff;
}
.cta-banner .btn-outline-white:hover { background: rgba(255,255,255,.1); }
