/* ═══════════════════════════════════════════════
   css/why.css
   ═══════════════════════════════════════════════ */

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 64px;
  align-items: center;
}

/* Left column — feature points */
.why-points {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
  transition: var(--transition);
}

.why-point:hover {
  background: rgba(33,150,243,0.08);
  border-color: rgba(33,150,243,0.3);
}

.why-point-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(33,150,243,0.2), rgba(21,101,192,0.3));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.why-point h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: white;
}

.why-point p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* Right column — stat cards */
.why-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.why-stat-card:hover {
  background: rgba(33,150,243,0.1);
}

/* Make the first card span full width */
.why-stat-card:first-child {
  grid-column: span 2;
}

.why-stat-num {
  font-family: var(--font-heading);
  font-size: 64px;
  color: var(--blue-bright);
  line-height: 1;
}

.why-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
  letter-spacing: 0.5px;
}
