/* ================= ROOT COLORS ================= */
:root {
  --primary: #dc6390;
  --secondary: #0b0f19;
  --muted: #6b7280;
  --bg-light: #f9fafb;
  --border: #e5e7eb;
}

/* ================= GLOBAL ================= */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.text-center { text-align: center; }

/* ================= HERO ================= */
.benefits-hero {
  position: relative;
  padding: 160px 0 120px;
  background: #0b0f19;
  overflow: hidden;
}

#threads-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .35;
}

.benefits-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,15,25,.35);
}

.benefits-hero-content {
  position: relative;
  z-index: 2;
}

.benefits-badge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 14px;
  color: #fff;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  margin-bottom: 24px;
}

.benefits-title {
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}

.benefits-title span {
  background: linear-gradient(90deg, #dc6390, #f3a6c6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.benefits-subtitle {
  font-size: 20px;
  color: #cbd5e1;
  max-width: 680px;
  margin: auto;
}

/* ================= BENEFITS SPLIT ================= */
.benefits-section {
  background: #fff;
  padding: 120px 0;
}

.benefits-wrapper {
  display: flex;
  border-radius: 48px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,.08);
  border: 1px solid var(--border);
}

/* LEFT PANEL */
.benefits-left {
  width: 40%;
  padding: 64px;
  background: #0b0f19;
  color: #fff;
  position: relative;
}

.benefits-left h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 24px;
}

.benefits-left p {
  color: #cbd5e1;
  font-size: 18px;
  margin-bottom: 40px;
}

.benefits-stats .stat {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.stat-green { background: rgba(34,197,94,.2); color: #22c55e; }
.stat-amber { background: rgba(245,158,11,.2); color: #f59e0b; }

.stat strong {
  font-size: 22px;
  display: block;
}

.stat small {
  font-size: 13px;
  color: #94a3b8;
}

/* RIGHT PANEL */
.benefits-right {
  width: 60%;
  padding: 64px;
}

.benefits-right h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 40px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 32px;
}

.benefit-item h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.benefit-item p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 12px;
}

.icon-blue { background:#eff6ff; color:#2563eb; }
.icon-purple { background:#faf5ff; color:#7c3aed; }
.icon-green { background:#ecfdf5; color:#16a34a; }
.icon-red { background:#fef2f2; color:#dc2626; }

/* CTA BOX */
.benefits-cta {
  margin-top: 48px;
  padding: 24px;
  display: flex;
  gap: 16px;
  background: #f9fafb;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.cta-icon {
  width: 44px;
  height: 44px;
  background: #fce7f3;
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefits-cta a {
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
}

/* ================= FOOTER CTA ================= */
.benefits-footer {
  padding: 120px 0;
  background: var(--bg-light);
}

.benefits-footer h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
}

.benefits-footer p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 32px;
}

.btn-dark {
  padding: 14px 34px;
  background: #0b0f19;
  color: #fff;
  border-radius: 14px;
  font-weight: 700;
  display: inline-block;
}
