/* Affiliate Program Landing Page */

/* Hero - full-width brand block */
.affiliate-hero {
  padding: 80px 0 70px;
  background: linear-gradient(135deg, #060663 0%, #0a0a7a 50%, #060663 100%);
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.affiliate-hero h1 {
  font-weight: 900;
  color: #fff;
  font-size: 2.75rem;
  line-height: 1.2;
}

.affiliate-hero .lead {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  line-height: 1.6;
}

.affiliate-hero .btn-primary {
  background: #fff;
  border-color: #fff;
  color: #060663;
  border-radius: 25px;
  font-weight: 700;
  padding: 12px 24px;
  transition: all 0.3s ease;
}

.affiliate-hero .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: #fff;
  color: #060663;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .affiliate-hero {
    padding: 60px 0 50px;
  }

  .affiliate-hero h1 {
    font-size: 2rem;
  }

  .affiliate-hero .lead {
    font-size: 1.05rem;
  }
}

/* Benefit stat numbers */
.affiliate-stat {
  font-size: 2.5rem;
  font-weight: 900;
  color: #060663;
  line-height: 1;
}

/* Step numbers */
.affiliate-step-num {
  width: 48px;
  height: 48px;
  margin-left: auto;
  margin-right: auto;
  background: #060663;
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 48px;
  text-align: center;
}

/* CTA strip - contained box */
.affiliate-cta-box {
  background: linear-gradient(135deg, #060663 0%, #0a0a7a 100%);
  border-radius: 12px;
}

.affiliate-cta-box p {
  color: rgba(255, 255, 255, 0.9);
}

.affiliate-cta-strip-title {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0;
}

.affiliate-cta-box .btn-light:hover {
  background: rgba(255, 255, 255, 0.95);
  color: #060663;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .affiliate-cta-strip-title {
    font-size: 1.5rem;
  }
}
