/* ── Benefits ──────────────────────────────────────────────── */
.benefits {
  padding: 80px 8%;
}

.benefits-header {
  text-align: center;
  margin-bottom: 3rem;
}

.benefits-header h2 {
  font-size: var(--font-size-heading);
  font-weight: 800;
  color: var(--color-primary);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.benefit-item.in-view {
  opacity: 1;
  transform: translateY(0);
}

.benefit-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--color-bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.benefit-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--color-accent);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-item h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.benefit-item p {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-primary);
}

@media (max-width: 950px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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