/* ─── WHY US ──────────────────────────────────── */
.why-us { background: var(--bg-base); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 24px 22px 22px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.why-card:hover {
  border-color: rgba(29,106,245,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.why-vis {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  overflow: hidden;
}

.why-vis svg {
  width: 100%;
  height: 100%;
  color: var(--text-secondary);
}

.why-tag {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}

.why-card p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}
