.why-testimonials-choose {
  padding: 110px 0;
  background: linear-gradient(180deg, #0f2f1f 0%, #0b2217 100%);
  color: #ffffff;
  overflow: hidden;
}

.why-testimonials-choose .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.why-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
  animation: fadeUp 1s ease forwards;
}

.why-header .badge {
  display: inline-block;
  background: #1f8f5f;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.why-header h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

.why-header h2 span {
  color: #38e19c;
}

.why-header p {
  margin-top: 14px;
  font-size: 17px;
  color: #cfe9dd;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.trust-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 30px;
  border-radius: 16px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: fadeUp 0.9s ease forwards;
}

.trust-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.trust-card .icon {
  font-size: 34px;
  margin-bottom: 16px;
}

.trust-card h3 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 10px;
}

.trust-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #cfe9dd;
}

.trust-card.highlight {
  background: linear-gradient(145deg, #1f8f5f, #176b47);
  border: none;
}

.why-cta {
  text-align: center;
  margin-top: 70px;
  animation: fadeUp 1.1s ease forwards;
}

.btn-primary {
  background: #38e19c;
  color: #0b2217;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(56,225,156,0.4);
}

.cta-note {
  display: block;
  margin-top: 14px;
  font-size: 14px;
  color: #bfe8d5;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
