/* ─────────────────────────────── WHY SECTION ─────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why-cell {
  background: var(--bg);
  padding: 2.25rem 2rem;
  transition: background 0.2s;
  animation: slideUp 0.6s ease-out;
}
.why-cell:hover { background: var(--bg-1); }
.why-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  color: var(--accent);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}
.why-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.625rem;
}
.why-desc {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.65;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  .why-cell { padding: 2rem 1.75rem; }
}

@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-cell { padding: 1.75rem 1.5rem; }
  .why-title { font-size: 0.95rem; }
  .why-desc { font-size: 0.78rem; }
  .why-num { font-size: 0.6rem; margin-bottom: 0.75rem; }
}

@media (max-width: 640px) {
  .why-cell { padding: 1.5rem 1.25rem; }
  .why-title { font-size: 0.9rem; margin-bottom: 0.5rem; }
  .why-desc { font-size: 0.75rem; line-height: 1.55; }
  .why-num { margin-bottom: 0.65rem; }
}

@media (max-width: 480px) {
  .why-cell { padding: 1.25rem 1rem; }
  .why-title { font-size: 0.8rem; }
  .why-desc { font-size: 0.7rem; }
  .why-num { font-size: 0.55rem; }
}

@media (max-width: 360px) {
  .why-cell { padding: 1rem 0.75rem; }
  .why-title { font-size: 0.75rem; }
}
