/* ══════════════════════════════════════════
   ABOUT VALUES BLOCK
══════════════════════════════════════════ */
.values-section {
  padding: 100px 0;
  background: #f7f8fa;
  overflow: hidden;
}

/* Header */
.values-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}

.values-label {
  display: inline-block;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.values-title {
  font: var(--h2);
  color: var(--black);
  text-transform: uppercase;
  line-height: 1.05;
}

.values-wave {
  display: block;
  margin: 20px auto 24px;
}

.values-desc {
  color: #555;
  line-height: 1.7;
}

/* Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Card */
.value-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(4, 157, 191, 0.12);
  border-color: rgba(4, 157, 191, 0.2);
}

.value-card__icon-wrap {
  width: 64px;
  height: 64px;
  background: rgba(4, 157, 191, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.3s ease;
}

.value-card:hover .value-card__icon-wrap {
  background: rgba(4, 157, 191, 0.15);
}

.value-card__icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.value-card__title {
  font: var(--h5);
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.15;
}

.value-card__desc {
  color: #666;
  line-height: 1.7;
  flex: 1;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .values-section {
    padding: 80px 0;
  }
  .values-head {
    margin-bottom: 48px;
  }
}

@media (max-width: 480px) {
  .values-section {
    padding: 60px 0;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
}