/* Affiliate Hero */
.hero {
  padding-top: calc(var(--header-height) + var(--space-4xl));
  padding-bottom: var(--space-4xl);
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #e0f2fe 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.08) 0%,
    transparent 70%
  );
}

.hero__content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  margin-bottom: var(--space-lg);
}

.hero__title {
  margin-bottom: var(--space-lg);
  color: var(--color-gray-900);
}

.hero__subtitle {
  font-size: var(--fs-lg);
  color: var(--color-gray-600);
  margin-bottom: var(--space-2xl);
  line-height: 1.6;
}

.hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero__note {
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
  margin-top: var(--space-md);
}

/* Stats Bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .stats-bar {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

/* Problem Section Icons */
.problem-icon {
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ Container */
.faq-container {
  max-width: 700px;
  margin: 0 auto;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary), #1d4ed8);
  color: var(--color-white);
  text-align: center;
  padding: var(--space-4xl) 0;
}

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

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--fs-lg);
  margin-bottom: var(--space-2xl);
}

.cta-section .btn--primary {
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-section .btn--primary:hover {
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .hero {
    padding-top: calc(var(--header-height) + var(--space-2xl));
    padding-bottom: var(--space-2xl);
  }

  .hero__subtitle {
    font-size: var(--fs-base);
  }
}
