.nutri-satisfaction {
  background: #f5f8fb;
  border: 1px solid rgba(11, 53, 87, 0.1);
  border-radius: 18px;
  padding: 60px 80px;
  margin-top: 60px;
  color: #0b3557;
  box-shadow: 0 6px 22px rgba(11, 53, 87, 0.05);
  font-family: "Poppins", "Helvetica", sans-serif;
}

.nutri-satisfaction__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
  flex-wrap: wrap;
}

.nutri-satisfaction__header {
  flex: 1 1 35%;
  max-width: 420px;
}

.nutri-satisfaction__title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0b3557;
  margin: 0;
  line-height: 1.3;
}

.nutri-satisfaction__subtitle {
  color: rgba(11, 53, 87, 0.7);
  font-size: 1rem;
  font-weight: 500;
  margin-top: 10px;
  line-height: 1.5;
}

.nutri-satisfaction__stats {
  flex: 1 1 60%;
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.nutri-satisfaction__stat {
  display: flex;
  align-items: baseline;
  gap: 16px;
  border-left: 4px solid rgba(11, 53, 87, 0.3);
  padding-left: 16px;
  transition: all 0.3s ease;
}

.nutri-satisfaction__stat:hover {
  transform: translateX(6px);
  border-left-color: #0b3557;
}

.stat-text {
  font-size: 1.25rem;
  font-weight: 500;
  color: #0b3557;
  line-height: 1.5;
}

.pct-highlight {
  font-size: 3.1rem;
  font-weight: 800;
  color: #0b3557;
  line-height: 1;
  display: inline-block;
  margin-right: 6px;
  position: relative;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.8s ease forwards;
}

.pct-highlight::after {
  content: '';
  display: block;
  width: 45%;
  height: 2px;
  background: rgba(11, 53, 87, 0.35);
  position: absolute;
  bottom: -6px;
  left: 0;
  border-radius: 2px;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.nutri-satisfaction__note {
  font-size: 0.9rem;
  color: rgba(11, 53, 87, 0.7);
  margin-top: 45px;
  text-align: left;
  font-style: italic;
}

/* Responsive */
@media (max-width: 960px) {
  .nutri-satisfaction {
    padding: 40px 30px;
  }
  .nutri-satisfaction__inner {
    flex-direction: column;
    gap: 40px;
  }
  .nutri-satisfaction__title {
    font-size: 1.8rem;
  }
  .pct-highlight {
    font-size: 2.4rem;
  }
  .stat-text {
    font-size: 1.1rem;
  }
}
