/* ═══════════════════════════════
   BENEFITS SECTION
═══════════════════════════════ */
.benefits {
  padding: 90px 24px;
  background: #0c1120;
}

.benefits__wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.benefits__title {
  text-align: center;
  font-size: var(--fs-section);
  font-weight: var(--fw-black);
  color: var(--text);
  letter-spacing: var(--tracking-tight);
  margin-bottom: 56px;
}

/* 4 items */
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}

/* item */
.benefit {
  text-align: center;
  padding: 24px 12px;
  border-radius: var(--radius-lg);
  transition: transform .3s ease;
}

.benefit:hover {
  transform: translateY(-3px);
}

/* circle icon */
.benefit__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;

  color: var(--accent-light);
  background: rgba(29, 78, 216, .08);
  border: 1px solid rgba(29, 78, 216, .15);

  box-shadow:
    0 8px 24px rgba(0, 0, 0, .20),
    0 0 0 1px rgba(148, 163, 184, .04);

  transition: transform .3s ease, box-shadow .3s ease;
}

.benefit__icon svg {
  width: 36px;
  height: 36px;
}

.benefit:hover .benefit__icon {
  transform: translateY(-3px);
  box-shadow:
    0 12px 32px rgba(29, 78, 216, .18),
    0 0 0 1px rgba(29, 78, 216, .12);
}

/* label */
.benefit__label {
  font-size: 15px;
  font-weight: 600;
  color: rgba(226, 232, 240, .85);
  line-height: 1.4;
}

/* ═══════════════════════════════
   LIGHT THEME
═══════════════════════════════ */
html[data-theme="light"] .benefits {
  background: #f3f5f8;
}

html[data-theme="light"] .benefits__title {
  color: #0f172a;
}

html[data-theme="light"] .benefit__label {
  color: rgba(15, 23, 42, .85);
}

html[data-theme="light"] .benefit__icon {
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, .15);
  color: var(--accent);
  box-shadow:
    0 4px 16px rgba(15, 23, 42, .06),
    0 1px 3px rgba(15, 23, 42, .04);
}

html[data-theme="light"] .benefit:hover .benefit__icon {
  box-shadow:
    0 8px 28px rgba(29, 78, 216, .12),
    0 2px 6px rgba(15, 23, 42, .04);
}

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 980px) {
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .benefits__grid {
    grid-template-columns: 1fr;
  }

  .benefit__icon {
    width: 68px;
    height: 68px;
  }}
