/* ═══════════════════════════════════════════
   FEATURE: WHY US
   ═══════════════════════════════════════════ */

.why-us { background: var(--background); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* ── Left ────────────────────────────────── */
.why-feats {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-top: 2rem;
}

.why-feat {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-feat-ico {
  width: 48px; height: 48px;
  min-width: 48px;
  background: rgba(0, 174, 239, 0.1);
  border: 1px solid rgba(0, 174, 239, 0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  transition: background 0.3s;
}
.why-feat:hover .why-feat-ico { background: rgba(0, 174, 239, 0.2); }

.why-feat h4 { font-size: 0.97rem; font-weight: 700; margin-bottom: 0.3rem; }
.why-feat p  { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.65; }

/* ── Right panel ─────────────────────────── */
.why-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem;
}

.why-logo-wrap {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.why-logo-wrap img { height: 50px; margin: 0 auto; }

.why-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.why-metric {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  transition: border-color 0.3s;
}
.why-metric:hover { border-color: rgba(0, 174, 239, 0.4); }

.metric-val {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--primary);
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1;
}
.metric-lbl {
  color: var(--text-secondary);
  font-size: 0.78rem;
}

.why-testimonial {
  padding: 1.25rem;
  background: rgba(0, 174, 239, 0.08);
  border: 1px solid rgba(0, 174, 239, 0.18);
  border-radius: 14px;
  text-align: center;
}
.why-testimonial p {
  color: var(--text-secondary);
  font-size: 0.84rem;
  font-style: italic;
  line-height: 1.65;
}
.why-testimonial cite {
  display: block;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: 0.75rem;
  font-style: normal;
}

/* ── Responsive ─────────────────────────── */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
}
