/* ─── Features Hero ─── */
.features-hero {
  background: var(--gradient-hero);
  color: var(--color-white);
  padding: var(--space-10) 0;
  text-align: center;
}

.features-hero h1 {
  color: var(--color-white);
  max-width: 650px;
  margin: 0 auto var(--space-4);
}

.features-hero .subtitle {
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto;
}

/* ─── Feature Section ─── */
.feature-section {
  padding: var(--space-10) 0;
}

.feature-section:nth-child(even) {
  background: var(--color-gray-50);
}

.feature-section__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;
}

@media (min-width: 768px) {
  .feature-section__content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
  }

  .feature-section--reverse .feature-section__text {
    order: 2;
  }

  .feature-section--reverse .feature-section__visual {
    order: 1;
  }
}

.feature-section__visual {
  background: var(--gradient-card);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  border: 1px solid var(--color-gray-100);
}

.feature-section__visual-emoji {
  font-size: 5rem;
  line-height: 1;
}

.feature-section__badge {
  margin-bottom: var(--space-4);
}

.feature-section__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.feature-section__list-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 0.9375rem;
  color: var(--color-gray-600);
  line-height: 1.6;
}

.feature-section__list-item::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(88, 204, 2, 0.12);
  color: var(--color-green);
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ─── Features CTA ─── */
.features-cta {
  background: var(--gradient-hero);
  color: var(--color-white);
  padding: var(--space-10) 0;
  text-align: center;
}

.features-cta h2 {
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.features-cta .subtitle {
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto var(--space-6);
}
