/* ========================
       VARIABLES & RESET
    ======================== */
:root {
  --dark-green: #1E5C36;
  --mid-green: #2D7A4A;
  --lime: #8DC63F;
  --lime-light: #A8C84A;
  --terracotta: #C9472B;
  --teal: #4BADB8;
  --navy: #0F1630;
  --purple: #7B2D6E;
  --white: #FFFFFF;
  --off-white: #F4F9F5;
  --light-gray: #F0F4F1;
  --text-dark: #0D1F15;
  --text-muted: #5A7068;
  --gradient-main: linear-gradient(135deg, #1E5C36 0%, #2D7A4A 50%, #8DC63F 100%);
  --gradient-hero: linear-gradient(150deg, #0A2316 0%, #1E5C36 40%, #2D6B42 70%, #8DC63F 100%);
  --font-main: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --shadow-sm: 0 4px 20px rgba(30, 92, 54, 0.1);
  --shadow-md: 0 8px 40px rgba(30, 92, 54, 0.15);
  --shadow-lg: 0 20px 60px rgba(30, 92, 54, 0.2);
  --border-radius: 16px;
  --border-radius-lg: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-main);
}

/* ========================
       NAVBAR
    ======================== */
.navbar {
  background: rgba(10, 35, 22, 0.97);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(141, 198, 63, 0.15);
}

.navbar-brand img {
  height: 40px;
}

.nav-link {
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75) !important;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: all 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--lime) !important;
  background: rgba(141, 198, 63, 0.08);
}

.nav-link.active {
  color: var(--lime) !important;
}

.nav-cta {
  background: var(--lime) !important;
  color: var(--dark-green) !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
}

.nav-cta:hover {
  background: var(--lime-light) !important;
  transform: translateY(-1px);
}

.navbar-toggler {
  border: 1px solid rgba(141, 198, 63, 0.4);
  padding: 6px 10px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(141,198,63,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========================
       BUTTONS
    ======================== */
.btn-primary-green {
  background: var(--lime);
  color: var(--dark-green);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
}

.btn-primary-green:hover {
  background: var(--lime-light);
  color: var(--dark-green);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(141, 198, 63, 0.35);
}

.btn-dark-green {
  background: var(--dark-green);
  color: var(--white);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
}

.btn-dark-green:hover {
  background: var(--mid-green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 600;
  font-family: var(--font-main);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
}

/* ========================
       HERO SECTION
    ======================== */
.affiliate-hero {
  background: var(--gradient-hero);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}

.affiliate-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(141, 198, 63, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(141, 198, 63, 0.07) 1px, transparent 1px);
  background-size: 60px 60px;
}

.affiliate-hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(141, 198, 63, 0.1) 0%, transparent 65%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(141, 198, 63, 0.15);
  border: 1px solid rgba(141, 198, 63, 0.3);
  border-radius: 50px;
  padding: 8px 18px;
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--lime);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.affiliate-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.affiliate-hero h1 span {
  color: var(--lime);
}

.affiliate-hero p.lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

/* Mockup sites visual */
.hero-mockup {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mock-site-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(141, 198, 63, 0.2);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s;
  animation: floatCard 3s ease-in-out infinite;
}

.mock-site-card:nth-child(2) {
  animation-delay: 0.7s;
}

.mock-site-card:nth-child(3) {
  animation-delay: 1.4s;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.mock-site-dot {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.mock-site-info h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.mock-site-info p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.mock-site-badge {
  margin-left: auto;
  background: rgba(141, 198, 63, 0.15);
  color: var(--lime);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  white-space: nowrap;
}

.powered-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 12px 20px;
  background: rgba(30, 92, 54, 0.5);
  border: 1px solid rgba(141, 198, 63, 0.2);
  border-radius: 12px;
}

.powered-badge span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.powered-badge strong {
  color: var(--lime);
}

/* ========================
       SECTION HEADERS
    ======================== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30, 92, 54, 0.08);
  border: 1px solid rgba(30, 92, 54, 0.15);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--dark-green);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ========================
       WHAT YOU GET (PACKAGES)
    ======================== */
.packages-section {
  padding: 90px 0;
  background: var(--off-white);
}

.package-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  border: 1.5px solid rgba(30, 92, 54, 0.08);
  height: 100%;
  transition: all 0.3s;
  position: relative;
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(141, 198, 63, 0.3);
}

.package-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(30, 92, 54, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--dark-green);
  margin-bottom: 18px;
}

.package-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid rgba(30, 92, 54, 0.06);
  line-height: 1.5;
}

.package-features li:last-child {
  border-bottom: none;
}

.package-features li .fi {
  color: var(--lime);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.85rem;
}

/* ========================
       HOW IT WORKS
    ======================== */
.how-section {
  padding: 90px 0;
}

.step-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gradient-main);
  color: var(--white);
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ========================
       WHO IT'S FOR
    ======================== */
.personas-section {
  padding: 90px 0;
  background: var(--off-white);
}

.persona-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.persona-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 24px;
  border: 1.5px solid rgba(30, 92, 54, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all 0.3s;
}

.persona-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(141, 198, 63, 0.25);
}

.persona-emoji {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
}

.persona-card h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.persona-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ========================
       COMPARISON TABLE
    ======================== */
.comparison-section {
  padding: 90px 0;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-table th {
  padding: 22px 28px;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 700;
}

.comparison-table th:first-child {
  background: var(--off-white);
  color: var(--text-muted);
  text-align: left;
  border-bottom: 2px solid rgba(30, 92, 54, 0.08);
}

.comparison-table th.agent-col {
  background: #f9fafb;
  color: var(--text-dark);
  text-align: center;
  border-bottom: 2px solid rgba(30, 92, 54, 0.08);
}

.comparison-table th.affiliate-col {
  background: var(--dark-green);
  color: var(--white);
  text-align: center;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th.affiliate-col .col-badge {
  display: inline-block;
  background: var(--lime);
  color: var(--dark-green);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  margin-left: 8px;
  vertical-align: middle;
}

.comparison-table td {
  padding: 16px 28px;
  font-size: 0.9rem;
  vertical-align: middle;
}

.comparison-table tr:nth-child(even) td:first-child,
.comparison-table tr:nth-child(even) td.agent-col {
  background: #fafafa;
}

.comparison-table tr:nth-child(odd) td:first-child,
.comparison-table tr:nth-child(odd) td.agent-col {
  background: var(--white);
}

.comparison-table tr:nth-child(even) td.affiliate-col {
  background: #1a5230;
}

.comparison-table tr:nth-child(odd) td.affiliate-col {
  background: #1E5C36;
}

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--text-dark);
  border-right: 1px solid rgba(30, 92, 54, 0.08);
}

.comparison-table td.agent-col {
  text-align: center;
  color: var(--text-muted);
  border-right: 1px solid rgba(30, 92, 54, 0.08);
}

.comparison-table td.affiliate-col {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
}

.comparison-table .check-yes {
  color: var(--lime);
  font-weight: 700;
}

.comparison-table .check-no {
  color: #cc4444;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table .invest-row td:first-child {
  font-weight: 700;
  color: var(--dark-green);
}

.comparison-table .invest-row td.agent-col {
  font-weight: 600;
  color: var(--text-dark);
}

.comparison-table .invest-row td.affiliate-col {
  font-weight: 700;
  color: var(--lime);
}

/* ========================
       TESTIMONIALS
    ======================== */
.testimonials-section {
  padding: 90px 0;
  background: var(--off-white);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  border: 1.5px solid rgba(30, 92, 54, 0.08);
  height: 100%;
  transition: all 0.3s;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.quote-icon {
  font-size: 2.5rem;
  color: var(--lime);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}

.author-info span {
  font-size: 0.8rem;
  color: var(--lime);
  font-weight: 600;
}

/* ========================
       LAUNCH OFFER
    ======================== */
.offer-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0A2316 0%, #1E5C36 60%, #163d25 100%);
  position: relative;
  overflow: hidden;
}

.offer-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(141, 198, 63, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(141, 198, 63, 0.07) 1px, transparent 1px);
  background-size: 60px 60px;
}

.offer-section::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(141, 198, 63, 0.12) 0%, transparent 70%);
  bottom: -200px;
  left: -100px;
  pointer-events: none;
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 71, 43, 0.2);
  border: 1px solid rgba(201, 71, 43, 0.4);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #f07a5a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.offer-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}

.offer-section h2 span {
  color: var(--lime);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 32px;
  margin-bottom: 40px;
}

.bonus-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 18px;
}

.bonus-item i {
  color: var(--lime);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.bonus-item span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

/* ========================
       FAQ
    ======================== */
.faq-section {
  padding: 90px 0;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid rgba(30, 92, 54, 0.1);
  border-radius: var(--border-radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: rgba(141, 198, 63, 0.3);
}

.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  user-select: none;
}

.faq-question .faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(30, 92, 54, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-green);
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer.open {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid rgba(30, 92, 54, 0.06);
  padding-top: 16px;
  margin: 0;
}

.faq-question.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(141, 198, 63, 0.15);
  color: var(--dark-green);
}

/* ========================
       FINAL CTA
    ======================== */
.final-cta {
  background: linear-gradient(135deg, #0A2316 0%, #1E5C36 60%, #163d25 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(141, 198, 63, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(141, 198, 63, 0.07) 1px, transparent 1px);
  background-size: 60px 60px;
}

.final-cta::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(141, 198, 63, 0.1) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  pointer-events: none;
}

.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.final-cta h2 span {
  color: var(--lime);
}

.final-cta p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 36px;
}

.contact-line {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.contact-line a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.contact-line a:hover {
  color: var(--lime);
}

/* ========================
       FOOTER
    ======================== */
footer {
  background: #030d06;
  padding: 50px 0 24px;
}

.footer-logo img {
  height: 36px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 10px;
  max-width: 240px;
  line-height: 1.6;
}

.footer-heading {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--lime);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 20px;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a:hover {
  color: var(--lime);
}

.ncc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(141, 198, 63, 0.1);
  border: 1px solid rgba(141, 198, 63, 0.2);
  color: var(--lime);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 600;
}

/* ========================
       RESPONSIVE
    ======================== */
@media (max-width: 991px) {
  .hero-mockup {
    margin-top: 40px;
  }
}

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

  .hero-btns {
    justify-content: center;
  }

  .affiliate-hero h1 {
    text-align: center;
  }

  .affiliate-hero p.lead {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-badge {
    display: inline-flex;
  }
}