/* ============================================================
   KunaBox 2.0 — Why KunaBox section (#kbWhy)
   ============================================================ */

.kb-why {
  position: relative;
  z-index: var(--z-content);
  padding: var(--space-3xl) var(--space-xl);
}

/* ── 2-column grid (text + feature list) ──────────────────── */
.kb-why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.kb-why__heading {
  font-family: var(--font-grotesk);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.kb-why__body {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.kb-why__body--secondary {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

/* ── Feature list (right column) ───────────────────────────── */
.kb-why__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kb-why__feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(20, 18, 31, 0.6);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 22px;
  backdrop-filter: blur(12px);
}

.kb-why__feature-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.kb-why__feature-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}
