/* ============================================= */
/* PIXADO AFFILIATE PAGE                          */
/* ============================================= */

.aff-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #60a5fa;
  margin-bottom: 16px;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(37, 99, 235, .1);
  border: 1px solid rgba(37, 99, 235, .3);
  box-shadow: 0 0 18px -4px rgba(37, 99, 235, .35);
}

.aff-section-head{
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.aff-hl{
  background: linear-gradient(135deg, #60a5fa 0%, #2563EB 50%, #8b5cf6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 0 24px rgba(96, 165, 250, .5));
  font-weight: 900;
}

/* ----- HERO ----- */
.aff-hero{
  position: relative;
  padding: 144px 0 24px;
  overflow: hidden;
}
.aff-hero-bg{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -200px;
  background:
    radial-gradient(ellipse 80% 60% at 30% 20%, rgba(37, 99, 235, .18) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 80% 70%, rgba(139, 92, 246, .12) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.aff-hero .mw{
  position: relative;
  z-index: 1;
}
.aff-hero-content{
  text-align: center;
  max-width: 820px;
  margin: 0 auto 64px;
}
.aff-hero-title{
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.05;
  margin-bottom: 24px;
}
.aff-hero-sub{
  font-size: 18px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 40px;
}
.aff-hero-cta-wrap{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.aff-cta{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2563EB 0%, #3b82f6 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .2px;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow:
    0 12px 32px -8px rgba(37, 99, 235, .55),
    inset 0 1px 0 rgba(255, 255, 255, .25);
}
.aff-cta:hover{
  transform: translateY(-3px);
  box-shadow:
    0 18px 44px -8px rgba(37, 99, 235, .75),
    0 0 60px -10px rgba(96, 165, 250, .55),
    inset 0 1px 0 rgba(255, 255, 255, .3);
}
.aff-trust{
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  font-weight: 500;
}
.aff-trust-stars{
  color: #FACC15;
  letter-spacing: 2px;
  font-size: 14px;
  text-shadow: 0 0 12px rgba(250, 204, 21, .4);
}

/* ----- REVENUE SIMULATOR ----- */
.aff-simulator{
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 36px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .03) 0%, rgba(255, 255, 255, .008) 100%);
  border: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 24px 60px -20px rgba(37, 99, 235, .3),
    inset 0 1px 0 rgba(255, 255, 255, .04);
  position: relative;
  overflow: hidden;
}
.aff-simulator::before{
  content: '';
  position: absolute;
  top: 0;
  left: 25%;
  right: 25%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, .65), transparent);
}
.aff-sim-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.aff-sim-label{
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
}
.aff-sim-pulse{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 12px #22c55e;
  animation: aff-pulse 1.6s ease-in-out infinite;
}
@keyframes aff-pulse{
  0%, 100%{ opacity: 1; transform: scale(1); }
  50%{ opacity: .5; transform: scale(.8); }
}
.aff-sim-slider-wrap{
  position: relative;
  margin-bottom: 28px;
}
.aff-sim-slider{
  --aff-fill: 10%;
  width: 100%;
  height: 8px;
  border-radius: 100px;
  appearance: none;
  -webkit-appearance: none;
  background: linear-gradient(90deg,
    #2563EB 0%,
    #2563EB var(--aff-fill),
    rgba(255, 255, 255, .08) var(--aff-fill),
    rgba(255, 255, 255, .08) 100%);
  outline: none;
  cursor: pointer;
  margin-bottom: 8px;
  transition: background .08s linear;
}
.aff-sim-slider::-webkit-slider-thumb{
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff, #e5e7eb);
  border: 3px solid #2563EB;
  cursor: grab;
  box-shadow: 0 4px 16px rgba(37, 99, 235, .55), 0 0 24px -4px rgba(96, 165, 250, .65);
  transition: transform .15s ease;
  /* GPU acceleration */
  will-change: transform;
}
.aff-sim-slider::-webkit-slider-thumb:hover{
  transform: scale(1.08);
}
.aff-sim-slider::-webkit-slider-thumb:active{
  cursor: grabbing;
  transform: scale(1.15);
}
.aff-sim-slider::-moz-range-thumb{
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff, #e5e7eb);
  border: 3px solid #2563EB;
  cursor: grab;
  box-shadow: 0 4px 16px rgba(37, 99, 235, .55);
  transition: transform .15s ease;
}
.aff-sim-slider::-moz-range-thumb:hover{
  transform: scale(1.08);
}
.aff-sim-marks{
  display: flex;
  justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, .35);
  letter-spacing: .5px;
  padding: 0 4px;
}
.aff-sim-result{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}
.aff-sim-footnote{
  margin-top: 16px;
  font-size: 11.5px;
  text-align: center;
  color: rgba(255, 255, 255, .42);
  letter-spacing: .01em;
}
.aff-sim-stat{
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .06);
}
.aff-sim-stat--payout{
  background: linear-gradient(135deg, rgba(34, 197, 94, .08), rgba(96, 165, 250, .08));
  border-color: rgba(34, 197, 94, .25);
  box-shadow: 0 0 32px -8px rgba(34, 197, 94, .35);
}
.aff-sim-stat-label{
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
}
.aff-sim-stat-value{
  font-family: 'JetBrains Mono', monospace;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.5px;
  line-height: 1.1;
}
.aff-sim-payout{
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.aff-sim-payout #affPayout{
  font-size: 28px;
  background: linear-gradient(135deg, #22c55e 0%, #86efac 50%, #60a5fa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 0 12px rgba(34, 197, 94, .45));
}
.aff-sim-period{
  font-size: 12px;
  color: rgba(255, 255, 255, .4);
  font-weight: 600;
}
.aff-sim-arrow{
  font-size: 22px;
  color: rgba(96, 165, 250, .65);
  font-weight: 300;
  animation: aff-arrow 2.4s ease-in-out infinite;
}
@keyframes aff-arrow{
  0%, 100%{ transform: translateX(0); opacity: .65; }
  50%{ transform: translateX(4px); opacity: 1; }
}

/* ----- HOW IT WORKS ----- */
.aff-how{
  padding: 56px 0 96px;
}
.aff-steps{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.aff-step{
  position: relative;
  padding: 36px 28px 32px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .03) 0%, rgba(255, 255, 255, .008) 100%);
  border: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all .4s cubic-bezier(.16, 1, .3, 1);
  overflow: hidden;
}
.aff-step::before{
  content: '';
  position: absolute;
  top: 0;
  left: 25%;
  right: 25%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, .55), transparent);
}
.aff-step:hover{
  transform: translateY(-5px);
  border-color: rgba(96, 165, 250, .35);
  box-shadow:
    0 24px 56px -16px rgba(37, 99, 235, .35),
    inset 0 1px 0 rgba(255, 255, 255, .06);
}
.aff-step-num{
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, #2563EB, #8b5cf6);
  border: 2px solid rgba(255, 255, 255, .25);
  box-shadow: 0 4px 16px rgba(37, 99, 235, .5);
}
.aff-step-visual{
  height: 180px;
  margin-bottom: 24px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 0, 0, .25), rgba(0, 0, 0, .15));
  border: 1px solid rgba(255, 255, 255, .05);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.aff-step-time{
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  color: #60a5fa;
  background: rgba(37, 99, 235, .15);
  border: 1px solid rgba(37, 99, 235, .3);
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: .8px;
}

/* Step 1 mock */
.aff-mock-card{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.aff-mock-line{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .06);
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
}
.aff-mock-icon{
  font-size: 14px;
  opacity: .8;
}
.aff-mock-text{
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: .3px;
}
.aff-mock-btn{
  margin-top: 4px;
  padding: 10px 14px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2563EB, #3b82f6);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  letter-spacing: .3px;
  box-shadow: 0 4px 12px -2px rgba(37, 99, 235, .5);
}

/* Step 2 mock — platforms */
.aff-platforms{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.aff-platform{
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  flex-shrink: 0;
}
.aff-platform--yt{ color: #ff0000; background: rgba(255, 0, 0, .1); border-color: rgba(255, 0, 0, .25); }
.aff-platform--tk{ color: #fff; background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .15); }
.aff-platform--ig{ color: #e1306c; background: rgba(225, 48, 108, .1); border-color: rgba(225, 48, 108, .25); }
.aff-platforms-arrow{
  color: rgba(96, 165, 250, .55);
  font-size: 18px;
  margin: 0 4px;
}
.aff-platform-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 100px;
  background: rgba(37, 99, 235, .15);
  border: 1px solid rgba(37, 99, 235, .35);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: #93c5fd;
  box-shadow: 0 0 18px -4px rgba(37, 99, 235, .45);
}
.aff-link-icon{ font-size: 13px; }
.aff-link-text strong{ color: #fff; font-weight: 800; }

/* Step 3 mock — payout card */
.aff-payout-card{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.aff-payout-row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .06);
}
.aff-payout-row--available{
  background: linear-gradient(135deg, rgba(34, 197, 94, .12), rgba(34, 197, 94, .04));
  border-color: rgba(34, 197, 94, .35);
  box-shadow: 0 0 24px -4px rgba(34, 197, 94, .35);
}
.aff-payout-label{
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  font-weight: 700;
}
.aff-payout-value{
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.5px;
}
.aff-payout-value--big{
  font-size: 20px;
  background: linear-gradient(135deg, #22c55e, #86efac);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 0 10px rgba(34, 197, 94, .5));
}
.aff-payout-btn{
  margin-top: 6px;
  padding: 10px 14px;
  border-radius: 10px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .3px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 4px 14px -2px rgba(34, 197, 94, .55);
}

.aff-step-title{
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -.3px;
}
.aff-step-desc{
  font-size: 14px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.55;
}

/* ----- WHO IS IT FOR ----- */
.aff-who{
  padding: 80px 0;
}
.aff-who-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}
.aff-who-card{
  padding: 32px 28px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .025) 0%, rgba(255, 255, 255, .005) 100%);
  border: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all .4s cubic-bezier(.16, 1, .3, 1);
  position: relative;
  overflow: hidden;
}
.aff-who-card::before{
  content: '';
  position: absolute;
  top: 0;
  left: 25%;
  right: 25%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, .5), transparent);
  opacity: .7;
}
.aff-who-card:hover{
  transform: translateY(-4px);
  border-color: rgba(96, 165, 250, .3);
  box-shadow: 0 24px 56px -16px rgba(37, 99, 235, .3);
}
.aff-who-icon{
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
  line-height: 1;
  filter: drop-shadow(0 0 18px rgba(96, 165, 250, .35));
}
.aff-who-title{
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -.3px;
}
.aff-who-desc{
  font-size: 14px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.6;
}

/* ----- TESTIMONIALS ----- */
.aff-testimonials{
  padding: 80px 0;
}
.aff-testi-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.aff-testi{
  padding: 28px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .03) 0%, rgba(255, 255, 255, .008) 100%);
  border: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all .35s cubic-bezier(.16, 1, .3, 1);
}
.aff-testi:hover{
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, .15);
  box-shadow: 0 18px 40px -12px rgba(0, 0, 0, .5);
}
.aff-testi-stars{
  color: #FACC15;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 14px;
  line-height: 1;
  text-shadow: 0 1px 2px rgba(250, 204, 21, .25);
}
.aff-testi-quote{
  font-size: 14.5px;
  color: rgba(255, 255, 255, .82);
  line-height: 1.55;
  margin-bottom: 20px;
  font-weight: 500;
}
.aff-testi-quote strong{
  color: #fff;
  background: linear-gradient(135deg, #22c55e, #86efac);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}
.aff-testi-author{
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}
.aff-testi-avatar{
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 14px;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 4px 12px rgba(0, 0, 0, .25);
}
.aff-testi-name{
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.aff-testi-role{
  font-size: 11px;
  color: rgba(255, 255, 255, .45);
  margin-top: 2px;
}

/* ----- FAQ — uses .sl from main CSS ----- */
.aff-faq{
  padding: 80px 0;
}

/* ----- FINAL CTA ----- */
.aff-final-cta{
  padding: 32px 0 80px;
}
.aff-final-card{
  position: relative;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  padding: 48px 48px 56px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(37, 99, 235, .12) 0%, rgba(139, 92, 246, .08) 50%, rgba(34, 197, 94, .06) 100%);
  border: 1px solid rgba(96, 165, 250, .25);
  overflow: hidden;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 32px 80px -20px rgba(37, 99, 235, .35);
}
.aff-final-glow{
  position: absolute !important;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, .15) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.aff-final-card > *:not(.aff-final-glow){
  position: relative;
  z-index: 1;
}
.aff-final-title{
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #fff;
}
.aff-final-sub{
  font-size: 17px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.55;
  max-width: 600px;
  margin: 0 auto 32px;
}
.aff-cta--big{
  font-size: 17px;
  padding: 20px 48px;
  margin-bottom: 40px;
}
.aff-final-stats{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.aff-final-stat{
  text-align: center;
}
.aff-final-stat-val{
  font-family: 'JetBrains Mono', monospace;
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(135deg, #60a5fa, #2563EB);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
}
.aff-final-stat-lbl{
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
}

/* ============================================= */
/* RESPONSIVE — Mobile                            */
/* ============================================= */
@media (max-width: 768px){
  .aff-hero{
    padding: 112px 0 56px;
  }
  .aff-hero-content{
    margin-bottom: 48px;
  }
  .aff-simulator{
    padding: 24px 22px;
    margin: 0 -4px;
  }
  .aff-sim-result{
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .aff-sim-arrow{
    transform: rotate(90deg);
    margin: 0 auto;
  }
  .aff-sim-stat{
    padding: 14px 16px;
  }
  .aff-sim-payout #affPayout{
    font-size: 24px;
  }

  .aff-how, .aff-who, .aff-testimonials, .aff-faq{
    padding: 56px 0;
  }
  .aff-final-cta{
    padding: 24px 0 56px;
  }
  .aff-steps, .aff-testi-grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .aff-step{
    padding: 28px 24px;
  }
  .aff-step-num{
    width: 32px;
    height: 32px;
    font-size: 14px;
    top: 20px;
    right: 20px;
  }
  .aff-step-visual{
    height: 160px;
    padding: 16px;
  }
  .aff-who-grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .aff-who-card{
    padding: 26px 22px;
  }
  .aff-final-card{
    padding: 44px 24px;
    border-radius: 22px;
  }
  .aff-final-stats{
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
}

@media (max-width: 480px){
  .aff-hero-title{
    font-size: clamp(32px, 9vw, 40px);
  }
  .aff-cta{
    padding: 16px 32px;
    font-size: 15px;
  }
}

/* ============================================= */
/* Override nav-toggle for proper mobile visibility */
/* ============================================= */
.nav-toggle{
  color: #fff !important;
  background: rgba(255, 255, 255, .08) !important;
  border: 1px solid rgba(255, 255, 255, .15) !important;
}
.nav-toggle:hover,
.nav-toggle[aria-expanded="true"]{
  background: rgba(255, 255, 255, .14) !important;
  border-color: rgba(255, 255, 255, .25) !important;
}
.nav-toggle svg{
  color: #fff !important;
  stroke: #fff !important;
}
/* When nav is open, animate icon */
.nav.is-open .nav-toggle svg{
  transform: rotate(90deg);
  transition: transform .3s cubic-bezier(.16, 1, .3, 1);
}

/* ============================================= */
/* SIMPLIFIED FINAL CTA (TrendTrack-style)        */
/* Used by: affiliate.html + pricing.html         */
/* ============================================= */
.aff-final-cta-simple{
  padding: 56px 0 80px;
}
.aff-cta-simple-inner{
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.aff-cta-simple-title{
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.15;
  margin-bottom: 28px;
  color: #fff;
}
.aff-cta-green{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px 14px 30px;
  border-radius: 100px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .2px;
  box-shadow:
    0 8px 24px -6px rgba(34, 197, 94, .55),
    inset 0 1px 0 rgba(255, 255, 255, .25);
  transition: transform .3s ease, box-shadow .3s ease;
}
.aff-cta-green:hover{
  transform: translateY(-2px);
  box-shadow:
    0 14px 36px -6px rgba(34, 197, 94, .75),
    0 0 50px -10px rgba(34, 197, 94, .55),
    inset 0 1px 0 rgba(255, 255, 255, .3);
}
.aff-cta-green svg{
  margin-right: -4px;
  flex-shrink: 0;
}

@media (max-width: 768px){
  .aff-final-cta-simple{
    padding: 40px 0 56px;
  }
  .aff-cta-simple-title{
    margin-bottom: 22px;
  }
  .aff-cta-green{
    padding: 13px 24px 13px 26px;
    font-size: 14px;
  }
}

/* Blue variant of the simple CTA (used on pricing page) */
.aff-cta-blue{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px 14px 30px;
  border-radius: 100px;
  background: linear-gradient(135deg, #2563EB 0%, #3b82f6 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .2px;
  box-shadow:
    0 8px 24px -6px rgba(37, 99, 235, .55),
    inset 0 1px 0 rgba(255, 255, 255, .25);
  transition: transform .3s ease, box-shadow .3s ease;
}
.aff-cta-blue:hover{
  transform: translateY(-2px);
  color: #fff;
  box-shadow:
    0 14px 36px -6px rgba(37, 99, 235, .75),
    0 0 50px -10px rgba(96, 165, 250, .55),
    inset 0 1px 0 rgba(255, 255, 255, .3);
}
.aff-cta-blue svg{ margin-right: -4px; flex-shrink: 0; }

@media (max-width: 768px){
  .aff-cta-blue{ padding: 13px 24px 13px 26px; font-size: 14px; }
}


/* Blue glow halo around the affiliate CTA button */
.aff-cta-glow-wrap{
  display: inline-block;
  position: relative;
  border-radius: 14px;
  margin-bottom: 40px;
  /* Pulsing blue halo */
  animation: aff-cta-blue-pulse 3s ease-in-out infinite;
}
.aff-cta-glow-wrap::before{
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(37, 99, 235, .35) 0%, rgba(96, 165, 250, .25) 50%, rgba(139, 92, 246, .3) 100%);
  filter: blur(14px);
  opacity: .9;
  z-index: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.aff-cta-glow-wrap:hover::before{
  opacity: 1;
  filter: blur(18px);
}
.aff-cta-glow-wrap > .aff-cta{
  position: relative;
  z-index: 1;
  margin-bottom: 0 !important;
}
@keyframes aff-cta-blue-pulse{
  0%, 100%{
    box-shadow:
      0 0 0 1px rgba(37, 99, 235, .15),
      0 0 32px -4px rgba(37, 99, 235, .35),
      0 0 60px -8px rgba(96, 165, 250, .25);
  }
  50%{
    box-shadow:
      0 0 0 2px rgba(37, 99, 235, .25),
      0 0 48px -4px rgba(37, 99, 235, .55),
      0 0 90px -8px rgba(96, 165, 250, .4);
  }
}


/* ============================================= */
/* INSTANT NAVIGATION — skip entrance animations */
/* When navigating between pages of the same site */
/* ============================================= */
.instant-nav .rv,
.instant-nav .reveal,
.instant-nav .fade-up,
.instant-nav .bc{
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
  transition: none !important;
}
.instant-nav .rv.no-anim,
.instant-nav .reveal.no-anim{
  /* Already handled but for safety */
  transition: none !important;
}

