.benefits {
  background-color: var(--color1);
  width: 100%;
  padding: 40px 0 80px;
}

.benefits-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.benefits-heading {
  font-family: "PloniMLv2AAA-Regular", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--color3);
  text-align: center;
  margin: 0;
  line-height: 1.1;
}

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

.benefit-card {
  background: var(--pink-light);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  text-align: right;
}

.benefit-icon {
  width: 78px;
  height: 78px;
  align-self: center;
  margin-bottom: 12px;
  animation: benefitFloat 3s ease-in-out infinite;
}

.benefit-card:nth-child(2) .benefit-icon { animation-delay: 0.4s; }
.benefit-card:nth-child(3) .benefit-icon { animation-delay: 0.8s; }
.benefit-card:nth-child(4) .benefit-icon { animation-delay: 1.2s; }

@keyframes benefitFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (prefers-reduced-motion: reduce) {
  .benefit-icon { animation: none; }
}

.benefit-icon img,
.benefit-icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.benefit-title {
  font-family: "PloniMLv2AAA-Regular", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-pink-1);
  margin: 0;
  line-height: 1.15;
}

.benefit-desc {
  font-family: "PloniMLv2AAA-Regular", sans-serif;
  font-size: 25px;
  font-weight: 400;
  color: var(--color3);
  margin: 0;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .benefits {
    padding: 24px 0 40px;
  }

  .benefits-inner {
    padding: 0 16px;
    gap: 24px;
  }

  .benefits-heading {
    font-size: 28px;
    text-align: right;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .benefit-title {
    font-size: 22px;
  }

  .benefit-desc {
    font-size: 18px;
  }
}
