.section-6 {
  padding: 38px 0 46px;
}

.section6-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 26px;
}

.section6-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  margin-bottom: 14px;
}

.section6-title {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  color: var(--text-color);
  margin-bottom: 12px;
}

.section6-intro {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-color);
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

.section6-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 26px;
}

.value-card {
  position: relative;
  background: linear-gradient(145deg, var(--card-bg), rgba(255,255,255,0.04));
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 24px 22px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.value-card::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(255,255,255,0.16), transparent 70%);
  pointer-events: none;
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.13);
}

.value-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.value-card h3 {
  font-size: 1.18rem;
  line-height: 1.45;
  color: var(--text-color);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--text-color);
  opacity: 0.95;
  margin: 0;
}

.section6-closing {
  margin-top: 26px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  padding: 24px 24px;
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.section6-closing p {
  color: #fff;
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.9;
  text-align: center;
}

body.theme-dark .value-card,
body.theme-brown .value-card {
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

@media (max-width: 1100px) {
  .section6-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section-6 {
    padding: 32px 0 40px;
  }

  .section6-header {
    margin-bottom: 22px;
  }

  .value-card {
    padding: 20px 18px;
    border-radius: 20px;
  }

  .value-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    font-size: 1.1rem;
  }

  .section6-closing {
    padding: 18px;
    border-radius: 20px;
  }

  .section6-closing p {
    font-size: 0.97rem;
    line-height: 1.8;
  }
}