/**
 * Affiliate Landing Page - Premium Design
 * Matching Homepage Style
 */

/* ===========================
   VARIABLES & RESET
   =========================== */

:root {
  --primary: #e61c72;
  --primary-dark: #b51358;
  --primary-light: #ff4d94;
  --primary-gradient: linear-gradient(135deg, #e61c72 0%, #ff4d94 100%);
  --secondary: #ff6b9d;
  --accent: #ff4d94;
  --dark: #0f172a;
  --dark-secondary: #1e293b;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-tertiary: #64748b;
  --light-bg: #f8fafc;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 20px rgba(15, 23, 42, 0.08), 0 4px 10px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 15px 35px rgba(15, 23, 42, 0.12), 0 8px 15px rgba(15, 23, 42, 0.06);
  --shadow-hover: 0 20px 45px rgba(230, 28, 114, 0.2);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
}

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

.affiliate-wrapper {
  overflow-x: hidden;
  width: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.affiliate-wrapper a {
  text-decoration: none !important;
}

.affiliate-wrapper a:hover {
  text-decoration: none !important;
}

/* ===========================
   HERO SECTION
   =========================== */

.aff-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 60px;
}

.aff-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.aff-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-gradient);
}

.aff-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Ccircle cx='30' cy='30' r='3'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.7;
}

.aff-floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.aff-shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  filter: blur(60px);
}

.aff-shape-1 {
  width: 400px;
  height: 400px;
  top: -150px;
  left: -150px;
  animation: affFloat 25s infinite ease-in-out;
}

.aff-shape-2 {
  width: 300px;
  height: 300px;
  top: 40%;
  right: -100px;
  animation: affFloat 20s infinite ease-in-out 3s;
}

.aff-shape-3 {
  width: 250px;
  height: 250px;
  bottom: -80px;
  left: 35%;
  animation: affFloat 22s infinite ease-in-out 6s;
}

@keyframes affFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -40px) scale(1.1); }
  66% { transform: translate(-30px, 30px) scale(0.9); }
}

@keyframes affFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.aff-hero-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.aff-hero-content {
  color: var(--white);
}

.aff-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 28px;
  animation: affFadeInUp 0.8s ease 0.2s both;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.aff-hero-badge svg {
  width: 16px;
  height: 16px;
}

.aff-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 28px;
  animation: affFadeInUp 0.8s ease 0.4s both;
  letter-spacing: -0.02em;
}

.aff-gradient-text {
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.aff-hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.65;
  opacity: 0.96;
  margin-bottom: 36px;
  animation: affFadeInUp 0.8s ease 0.6s both;
  font-weight: 400;
}

.aff-hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: affFadeInUp 0.8s ease 0.8s both;
}

.aff-btn-primary,
.aff-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  font-size: 1.0625rem;
  font-weight: 700;
  border-radius: 50px;
  transition: var(--transition);
  text-decoration: none !important;
  border: 2px solid transparent;
  cursor: pointer;
}

.aff-btn-primary {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
}

.aff-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  color: var(--primary);
}

.aff-btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.aff-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-4px);
  color: var(--white);
}

.aff-hero-stats {
  display: flex;
  gap: 40px;
  animation: affFadeInUp 0.8s ease 1s both;
  align-items: center;
}

.aff-stat {
  text-align: left;
}

.aff-stat-value {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 2px;
  line-height: 1;
}

.aff-stat-label {
  font-size: 0.9375rem;
  opacity: 0.94;
  color: var(--white);
  font-weight: 500;
}

.aff-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.25);
}

.aff-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: affFadeInUp 1s ease 0.5s both;
}

.aff-earnings-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  padding: 32px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.aff-earnings-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
}

.aff-earnings-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aff-earnings-icon svg {
  color: var(--white);
}

.aff-earnings-example {
  margin-bottom: 24px;
}

.aff-example-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
}

.aff-example-row.aff-example-highlight {
  background: rgba(255, 255, 255, 0.1);
  margin: 8px -16px;
  padding: 16px;
  border-radius: var(--radius-md);
}

.aff-example-result {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}

.aff-earnings-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.aff-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
}

.aff-feature-item svg {
  color: #10b981;
  flex-shrink: 0;
}

/* ===========================
   SECTION STYLES
   =========================== */

.aff-section {
  padding: 100px 0;
}

.aff-section.aff-how-works {
  background: var(--white);
}

.aff-section.aff-benefits {
  background: var(--light-bg);
}

.aff-section.aff-calculator {
  background: var(--white);
}

.aff-section.aff-faq {
  background: var(--light-bg);
}

.aff-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.aff-section-header {
  text-align: center;
  margin-bottom: 64px;
}

.aff-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(230, 28, 114, 0.1) 0%, rgba(255, 77, 148, 0.1) 100%);
  border: 1px solid rgba(230, 28, 114, 0.2);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
}

.aff-section-badge svg {
  width: 16px;
  height: 16px;
}

.aff-section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.aff-section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===========================
   TIMELINE / HOW IT WORKS
   =========================== */

.aff-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.aff-timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
  transform: translateX(-50%);
}

.aff-timeline-step {
  display: flex;
  align-items: center;
  margin-bottom: 48px;
  position: relative;
}

.aff-timeline-step:nth-child(odd) {
  flex-direction: row;
}

.aff-timeline-step:nth-child(even) {
  flex-direction: row-reverse;
}

.aff-timeline-step:last-child {
  margin-bottom: 0;
}

.aff-step-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  z-index: 2;
  box-shadow: 0 8px 25px rgba(230, 28, 114, 0.35);
}

.aff-step-content {
  width: calc(50% - 60px);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.aff-step-content:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.aff-step-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(230, 28, 114, 0.1) 0%, rgba(255, 77, 148, 0.1) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
}

.aff-step-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.aff-step-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===========================
   BENEFITS GRID
   =========================== */

.aff-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.aff-benefit-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.aff-benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(230, 28, 114, 0.2);
}

.aff-benefit-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(230, 28, 114, 0.1) 0%, rgba(255, 77, 148, 0.1) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--primary);
  transition: var(--transition);
}

.aff-benefit-card:hover .aff-benefit-icon {
  background: var(--primary-gradient);
  color: var(--white);
  transform: scale(1.1);
}

.aff-benefit-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.aff-benefit-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===========================
   CALCULATOR
   =========================== */

.aff-calc-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.aff-calc-display {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.aff-calc-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.aff-calc-value {
  font-size: 4rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  transition: transform 0.15s ease;
}

.aff-calc-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.aff-calc-annual {
  font-size: 1rem;
  color: var(--text-secondary);
}

.aff-calc-annual strong {
  color: var(--text-primary);
  font-weight: 700;
}

.aff-calc-sliders {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 32px;
}

.aff-slider-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.aff-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.aff-slider-header label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
}

.aff-slider-header svg {
  color: var(--primary);
}

.aff-slider-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  background: linear-gradient(135deg, rgba(230, 28, 114, 0.1) 0%, rgba(255, 77, 148, 0.1) 100%);
  padding: 6px 16px;
  border-radius: 50px;
}

.aff-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--light-bg) 0%);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
}

.aff-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  background: var(--white);
  border: 3px solid var(--primary);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(230, 28, 114, 0.3);
  transition: var(--transition);
}

.aff-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(230, 28, 114, 0.4);
}

.aff-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  background: var(--white);
  border: 3px solid var(--primary);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(230, 28, 114, 0.3);
}

.aff-slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--text-tertiary);
}

.aff-calc-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
  padding: 24px;
  background: var(--light-bg);
  border-radius: var(--radius-md);
}

.aff-calc-stat {
  text-align: center;
}

.aff-calc-stat-label {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  margin-bottom: 4px;
}

.aff-calc-stat-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
}

.aff-calc-level {
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, rgba(230, 28, 114, 0.05) 0%, rgba(255, 77, 148, 0.05) 100%);
  border-radius: var(--radius-md);
  margin-bottom: 32px;
  transition: transform 0.3s ease;
}

.aff-calc-level.level-up {
  animation: levelUp 0.5s ease;
}

@keyframes levelUp {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.aff-level-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: var(--primary-gradient);
  border-radius: 50px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 12px;
}

.aff-level-icon {
  font-size: 1.25rem;
}

.aff-level-message {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.aff-calc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 20px 40px;
  background: var(--primary-gradient);
  color: var(--white) !important;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(230, 28, 114, 0.35);
}

.aff-calc-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(230, 28, 114, 0.45);
  color: var(--white) !important;
}

/* ===========================
   FAQ
   =========================== */

.aff-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.aff-faq-item {
  margin-bottom: 16px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.aff-faq-item:hover {
  border-color: rgba(230, 28, 114, 0.2);
}

.aff-faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.aff-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: var(--transition);
}

.aff-faq-question:hover {
  color: var(--primary);
}

.aff-faq-question svg {
  flex-shrink: 0;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.aff-faq-item.active .aff-faq-question svg {
  transform: rotate(180deg);
}

.aff-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.aff-faq-item.active .aff-faq-answer {
  max-height: 300px;
  padding: 0 24px 24px;
}

.aff-faq-answer p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===========================
   FINAL CTA
   =========================== */

.aff-final-cta {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.aff-final-cta-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.aff-cta-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-gradient);
}

.aff-cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Ccircle cx='30' cy='30' r='3'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.7;
}

.aff-final-cta-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.aff-final-cta-content {
  text-align: center;
}

.aff-final-cta-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.aff-final-cta-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.6;
}

.aff-final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.aff-btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 48px;
  background: var(--white);
  color: var(--primary) !important;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.aff-btn-cta-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  color: var(--primary) !important;
}

.aff-final-guarantees {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.aff-guarantee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 500;
}

.aff-guarantee-item svg {
  color: #10b981;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 1024px) {
  .aff-hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .aff-hero-content {
    order: 1;
  }

  .aff-hero-visual {
    order: 2;
  }

  .aff-hero-cta-group {
    justify-content: center;
  }

  .aff-hero-stats {
    justify-content: center;
  }

  .aff-timeline-line {
    left: 28px;
  }

  .aff-timeline-step {
    flex-direction: row !important;
    padding-left: 80px;
  }

  .aff-step-number {
    left: 28px;
    transform: translateX(-50%);
  }

  .aff-step-content {
    width: 100%;
  }

  .aff-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .aff-hero {
    padding: 80px 0 60px;
    min-height: auto;
  }

  .aff-hero-title {
    font-size: 2rem;
  }

  .aff-hero-subtitle {
    font-size: 1rem;
  }

  .aff-btn-primary,
  .aff-btn-secondary {
    padding: 14px 28px;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }

  .aff-hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .aff-stat-divider {
    display: none;
  }

  .aff-stat {
    text-align: center;
  }

  .aff-earnings-card {
    padding: 24px;
  }

  .aff-section {
    padding: 60px 0;
  }

  .aff-section-header {
    margin-bottom: 40px;
  }

  .aff-benefits-grid {
    grid-template-columns: 1fr;
  }

  .aff-calc-card {
    padding: 32px 24px;
  }

  .aff-calc-value {
    font-size: 3rem;
  }

  .aff-calc-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .aff-final-guarantees {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .aff-btn-cta-primary {
    width: 100%;
    justify-content: center;
  }
}
