/* components/benefits.css */
.benefits {
  display: grid;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
}

@media (min-width: 768px) {
  .benefits {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

.benefit-card {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--color-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.benefit-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.benefit-card__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--color-primary);
  color: white;
  border-radius: var(--radius-sm);
}

.benefit-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.benefit-card__text {
  color: var(--color-text-light);
  line-height: 1.5;
}
.badge-free {
  background: #27ae60;
  color: #fff;
  padding: 0.15em 0.5em;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9em;
}
/* ===   === */
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem; /*     */
}

.benefits-list li {
  display: flex;
  align-items: flex-start; /*      */
  gap: 0.65rem;
  line-height: 1.35; /*    */
  text-align: left;
}

/* :  ,    */
.benefit-icon {
  flex-shrink: 0;
  display: inline-flex;
  margin-top: 0.15em;
}

/*  */
.benefit-text {
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.35;
}

/* ??  "" */
.badge-free {
  display: inline-block;
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: #fff;
  padding: 0.15em 0.45em;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95em;
  margin: 0 0.2em 0 0.1em;
  line-height: 1.2;
  vertical-align: baseline;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

/*    */
.benefit-note {
  display: block;
  color: #b0b0b0;
  font-size: 0.85rem;
  margin-top: 0.15rem;
  line-height: 1.3;
  opacity: 0.9;
}

/* ??   */
@media (max-width: 767.98px) {
  /*      */
  .section-cta.text-center .benefits-list {
    text-align: left !important;
  }
  
  .benefits-list li {
    gap: 0.5rem;
    line-height: 1.3;
  }
  
  .benefit-text {
    font-size: 0.9rem;
  }
  
  .badge-free {
    padding: 0.12em 0.4em;
    font-size: 0.9em;
  }
}