/* ============================================================
   KunaBox 2.0 — Services section (#kbServices)
   ============================================================ */

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

/* ── Section header (centered) ─────────────────────────────── */
.kb-services__header {
  text-align: center;
  margin-bottom: 60px;
}

.kb-services__title {
  font-family: var(--font-grotesk);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 680px;
  margin: 0 auto 16px;
}

.kb-services__desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.62);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── 3-column service cards grid ───────────────────────────── */
.kb-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* ── Individual service card ───────────────────────────────── */
.kb-services__card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 30px;
  backdrop-filter: blur(14px);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.kb-services__card-icon {
  margin-bottom: 16px;
}

.kb-services__card-name {
  font-family: var(--font-grotesk);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 9px;
}

.kb-services__card-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.6;
  margin-bottom: 16px;
}

.kb-services__card-tags {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-purple-soft);
  opacity: 0.8;
}

.kb-services__card-cta {
  margin-top: 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-teal);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
