/* =============================================
   WHY US — why.css
   ============================================= */
.why { background: var(--black); padding: var(--section-pad); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  margin-top: 52px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.why-item {
  padding: 32px 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  transition: background 0.2s;
}
.why-item:last-child { border-right: none; }
.why-item:hover { background: rgba(255,255,255,0.05); }

.why-num {
  font-family: var(--font-serif);
  font-size: 36px;
  color: rgba(26,111,212,0.5);
  margin-bottom: 12px;
  line-height: 1;
}
.why-item h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.why-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}
