/* ===== STATS SECTION ===== */
#stats {
  padding: var(--section-py) 0;
  background: var(--color-bg-alt);
}

/* ===== STATS GRID ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.stat-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.stat-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: rgba(192,38,211,0.15);
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--color-text);
  margin-bottom: 6px;
}

.stat-desc {
  font-size: 0.82rem;
  color: var(--color-label);
  line-height: 1.5;
}

/* ===== BEFORE / AFTER ===== */
.before-after {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
}

.ba-header {
  text-align: center;
  margin-bottom: 28px;
}

.ba-header h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 16px;
}

.ba-toggle-btns {
  display: flex;
  background: var(--color-bg-alt);
  border-radius: var(--radius-pill);
  padding: 4px;
  width: fit-content;
  margin: 0 auto;
  gap: 4px;
}

.ba-btn {
  padding: 9px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--color-label);
  transition: var(--transition);
  border: none;
  background: none;
  cursor: pointer;
}

.ba-btn.active {
  background: var(--color-white);
  color: var(--color-text);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* Two-column always visible (grid) */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.ba-column-label {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
}

.ba-column-label.before { color: #EF4444; }
.ba-column-label.after  { color: #22C55E; }

.ba-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ba-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--color-body);
  line-height: 1.5;
}

.ba-list .icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  font-weight: 900;
  margin-top: 1px;
}

.icon-x     { background: #FEE2E2; color: #EF4444; }
.icon-check { background: #DCFCE7; color: #22C55E; }
