/* ==========================================================================
   AFFILIATE PROGRAM LANDING PAGE — MOBILE-FIRST
   ========================================================================== */

/* ---------- CSS Variables ---------- */
:root {
    --aff-primary: #0046be;
    --aff-primary-dark: #013196;
    --aff-accent: #ffce00;
    --aff-accent-dark: #fab528;
    --aff-dark: #001e73;
    --aff-text: #333;
    --aff-text-light: #6b7280;
    --aff-bg-light: #f0f4ff;
    --aff-bg-section: #fbfbfb;
    --aff-success: #10b981;
    --aff-gradient: linear-gradient(135deg, #0046be 0%, #001e73 100%);
    --aff-gradient-accent: linear-gradient(135deg, #ffce00 0%, #fab528 100%);
    --aff-radius: 16px;
    --aff-radius-sm: 10px;
    --aff-shadow: 0 4px 24px rgba(0, 70, 190, 0.10);
    --aff-shadow-lg: 0 12px 40px rgba(0, 70, 190, 0.15);
}

/* ---------- HERO SECTION ---------- */
.aff-hero {
    background: var(--aff-gradient);
    position: relative;
    overflow: hidden;
    padding: 2rem 0 0;
    text-align: center;
    color: #fff;
}

.aff-hero::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -30%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 206, 0, 0.08);
    pointer-events: none;
}

.aff-hero::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.aff-hero .container {
    position: relative;
    z-index: 1;
}

.aff-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 206, 0, 0.15);
    border: 1px solid rgba(255, 206, 0, 0.3);
    color: var(--aff-accent);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.aff-hero h1 {
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.aff-hero h1 .aff-highlight {
    color: var(--aff-accent);
    display: block;
}

.aff-hero-sub {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 520px;
    margin: 0 auto 1.75rem;
    line-height: 1.6;
}

.aff-hero-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.aff-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--aff-gradient-accent);
    color: var(--aff-dark);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 206, 0, 0.35);
    width: 100%;
    max-width: 320px;
}

.aff-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 206, 0, 0.5);
    color: var(--aff-dark);
    text-decoration: none;
}

.aff-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.7rem 1.75rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 320px;
}

.aff-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
    text-decoration: none;
}

.aff-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

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

.aff-hero-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--aff-accent);
    display: block;
}

.aff-hero-stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.8;
}

.aff-hero-visual {
    max-width: 420px;
    margin: 1rem auto 0;
}

.aff-hero-image {
    display: block;
    width: 100%;
    height: auto;
    /* border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0, 30, 115, 0.35); */
}

/* ---------- SECTION COMMON ---------- */
.aff-section {
    padding: 3rem 0;
}

.aff-section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.aff-section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--aff-primary);
    background: var(--aff-bg-light);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.aff-section-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--aff-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.aff-section-desc {
    color: var(--aff-text-light);
    font-size: 0.95rem;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ---------- HOW IT WORKS ---------- */
.aff-how {
    background: #fff;
    --aff-reel-w: min(100%, 340px);
}

.aff-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    counter-reset: step;
    order: 2;
    width: 100%;
    max-width: min(100%, 300px);
    margin-inline: auto;
}

.aff-step {
    position: relative;
    background: var(--aff-bg-light);
    border-radius: var(--aff-radius);
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.aff-step-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    position: relative;
}

.aff-step-icon::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    top: -6px;
    right: -6px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--aff-accent);
    color: var(--aff-dark);
    font-size: 0.7rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aff-step-icon.icon-apply { background: rgba(0, 70, 190, 0.1); color: var(--aff-primary); }
.aff-step-icon.icon-approve { background: rgba(16, 185, 129, 0.1); color: var(--aff-success); }
.aff-step-icon.icon-share { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }
.aff-step-icon.icon-earn  { background: rgba(250, 181, 40, 0.12); color: var(--aff-accent-dark); }

.aff-step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--aff-dark);
    margin-bottom: 0.35rem;
}

.aff-step p {
    font-size: 0.85rem;
    color: var(--aff-text-light);
    margin: 0;
    line-height: 1.5;
}

.aff-step-body {
    flex: 1;
    min-width: 0;
}

.aff-how-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
}

.aff-how-video {
    margin-top: 0;
    text-align: center;
    flex-shrink: 0;
    order: 1;
}

.aff-how-video-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--aff-text-light);
    margin-bottom: 0.75rem;
}

.aff-how-video-embed {
    position: relative;
    width: var(--aff-reel-w);
    max-width: 100%;
    margin: 0 auto;
    aspect-ratio: 9 / 16;
    border-radius: var(--aff-radius-sm);
    overflow: hidden;
    box-shadow: var(--aff-shadow);
    background: #000;
}

.aff-how-video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ---------- BENEFITS ---------- */
.aff-benefits {
    background: var(--aff-bg-section);
}

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

.aff-benefit {
    background: #fff;
    border-radius: var(--aff-radius);
    padding: 1.5rem 1.25rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aff-benefit:hover {
    transform: translateY(-3px);
    box-shadow: var(--aff-shadow);
}

.aff-benefit-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: var(--aff-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.aff-benefit h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--aff-dark);
    margin-bottom: 0.25rem;
}

.aff-benefit p {
    font-size: 0.82rem;
    color: var(--aff-text-light);
    margin: 0;
    line-height: 1.5;
}

/* ---------- COMMISSION TIERS ---------- */
.aff-tiers {
    background: #fff;
}

.aff-tier-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.aff-tier-card {
    border: 2px solid #e5e7eb;
    border-radius: var(--aff-radius);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.aff-tier-card:hover {
    border-color: var(--aff-primary);
    box-shadow: var(--aff-shadow);
}

.aff-tier-card.featured {
    border-color: var(--aff-primary);
    background: linear-gradient(180deg, var(--aff-bg-light) 0%, #fff 100%);
}

.aff-tier-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: 12px;
    right: -28px;
    background: var(--aff-primary);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.2rem 2rem;
    transform: rotate(45deg);
    letter-spacing: 0.05em;
}

.aff-tier-name {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--aff-primary);
    margin-bottom: 0.5rem;
}

.aff-tier-rate {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--aff-dark);
    line-height: 1;
}

.aff-tier-rate span {
    font-size: 1rem;
    font-weight: 600;
}

.aff-tier-referrals {
    font-size: 0.8rem;
    color: var(--aff-text-light);
    margin-top: 0.35rem;
    margin-bottom: 0;
}

/* Default tier card */
.aff-tier-default {
    background: var(--aff-bg-light);
    border-radius: var(--aff-radius);
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.aff-tier-default .aff-tier-rate {
    color: var(--aff-primary);
}

/* ---------- FAQ INFOGRAPHIC ---------- */
.aff-faq {
    background: var(--aff-bg-section);
    position: relative;
}

.aff-faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

/* Vertical timeline connector (mobile: left edge) */
.aff-faq-grid::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--aff-primary) 0%, var(--aff-accent) 50%, var(--aff-success) 100%);
    border-radius: 3px;
    opacity: 0.18;
}

.aff-faq-card {
    position: relative;
    background: #fff;
    border-radius: var(--aff-radius);
    padding: 1.25rem 1.25rem 1.25rem 4rem;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.aff-faq-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--aff-shadow);
    border-color: var(--aff-primary);
}

/* Numbered badge on the timeline */
.aff-faq-num {
    position: absolute;
    left: -1px;
    top: 1.25rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #fff;
    z-index: 2;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
}

/* Color rotation for badges */
.aff-faq-card:nth-child(1) .aff-faq-num { background: var(--aff-primary); }
.aff-faq-card:nth-child(2) .aff-faq-num { background: var(--aff-success); }
.aff-faq-card:nth-child(3) .aff-faq-num { background: #8b5cf6; }
.aff-faq-card:nth-child(4) .aff-faq-num { background: var(--aff-accent-dark); }
.aff-faq-card:nth-child(5) .aff-faq-num { background: #ec4899; }
.aff-faq-card:nth-child(6) .aff-faq-num { background: #06b6d4; }
.aff-faq-card:nth-child(7) .aff-faq-num { background: #f97316; }
.aff-faq-card:nth-child(8) .aff-faq-num { background: #14b8a6; }
.aff-faq-card:nth-child(9) .aff-faq-num { background: #6366f1; }

/* Colored left accent border matching badge */
.aff-faq-card:nth-child(1) { border-left: 4px solid var(--aff-primary); }
.aff-faq-card:nth-child(2) { border-left: 4px solid var(--aff-success); }
.aff-faq-card:nth-child(3) { border-left: 4px solid #8b5cf6; }
.aff-faq-card:nth-child(4) { border-left: 4px solid var(--aff-accent-dark); }
.aff-faq-card:nth-child(5) { border-left: 4px solid #ec4899; }
.aff-faq-card:nth-child(6) { border-left: 4px solid #06b6d4; }
.aff-faq-card:nth-child(7) { border-left: 4px solid #f97316; }
.aff-faq-card:nth-child(8) { border-left: 4px solid #14b8a6; }
.aff-faq-card:nth-child(9) { border-left: 4px solid #6366f1; }

.aff-faq-card-q {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--aff-dark);
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.aff-faq-card-q i {
    font-size: 0.8rem;
    opacity: 0.5;
}

.aff-faq-card-a {
    font-size: 0.84rem;
    color: var(--aff-text-light);
    line-height: 1.65;
    margin: 0;
}

/* Highlight chip inside answers */
.aff-faq-chip {
    display: inline-block;
    background: var(--aff-bg-light);
    color: var(--aff-primary);
    font-weight: 700;
    font-size: 0.78rem;
    padding: 0.15rem 0.5rem;
    border-radius: 6px;
    margin: 0 0.1rem;
}

/* ---------- HOW TRACKING WORKS ---------- */
.aff-tracking {
    background: #fff;
}

.aff-tracking-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

.aff-tracking-card {
    background: var(--aff-bg-light);
    border-radius: var(--aff-radius);
    padding: 1.5rem 1.25rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.aff-tracking-card:hover {
    border-color: var(--aff-primary);
    box-shadow: var(--aff-shadow);
}

.aff-tracking-card-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
}

.aff-tracking-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--aff-dark);
    margin-bottom: 0.3rem;
}

.aff-tracking-card p {
    font-size: 0.84rem;
    color: var(--aff-text-light);
    line-height: 1.6;
    margin: 0;
}

.aff-tracking-card .aff-tracking-note {
    display: block;
    font-size: 0.78rem;
    color: var(--aff-primary);
    font-weight: 600;
    margin-top: 0.4rem;
}

/* ---------- HOW COMMISSIONS WORK ---------- */
.aff-commissions {
    background: var(--aff-bg-section);
}

.aff-commission-flow {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.aff-commission-item {
    background: #fff;
    border-radius: var(--aff-radius);
    padding: 1.25rem;
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    border-left: 4px solid var(--aff-primary);
}

.aff-commission-item:nth-child(2) { border-left-color: var(--aff-accent-dark); }
.aff-commission-item:nth-child(3) { border-left-color: var(--aff-success); }
.aff-commission-item:nth-child(4) { border-left-color: #8b5cf6; }

.aff-commission-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: var(--aff-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.aff-commission-item h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--aff-dark);
    margin-bottom: 0.2rem;
}

.aff-commission-item p {
    font-size: 0.82rem;
    color: var(--aff-text-light);
    line-height: 1.55;
    margin: 0;
}

/* ---------- FINAL CTA ---------- */
.aff-cta-final {
    background: var(--aff-gradient);
    color: #fff;
    text-align: center;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.aff-cta-final::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 206, 0, 0.06);
    pointer-events: none;
}

.aff-cta-final h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.aff-cta-final p {
    opacity: 0.9;
    font-size: 0.95rem;
    max-width: 480px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.aff-cta-final .aff-btn-primary {
    max-width: 280px;
}

/* ---------- TRUST BADGES ---------- */
.aff-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.aff-trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.85);
}

.aff-trust-item i {
    color: var(--aff-accent);
}

/* ==========================================================================
   TABLET (≥576px)
   ========================================================================== */
@media (min-width: 576px) {
    .aff-hero h1 {
        font-size: 2.25rem;
    }

    .aff-hero-cta {
        flex-direction: row;
        justify-content: center;
    }

    .aff-btn-primary,
    .aff-btn-outline {
        width: auto;
    }

    .aff-how {
        --aff-reel-w: 400px;
    }

    .aff-how-layout {
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
        gap: 2.5rem;
        padding: 0;
    }

    .aff-steps {
        order: 1;
        display: flex;
        flex-direction: column;
        flex: 0 1 340px;
        width: 100%;
        max-width: 340px;
        min-width: 0;
        margin-inline: 0;
        gap: 0.625rem;
        min-height: calc(var(--aff-reel-w) * 16 / 9 + 2rem);
    }

    .aff-step {
        flex: 1;
        display: flex;
        gap: 1rem;
        text-align: left;
        align-items: center;
        padding: 1rem 1.25rem;
        min-height: 0;
    }

    .aff-step-icon {
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .aff-how-video {
        order: 2;
        flex: 0 0 auto;
        width: var(--aff-reel-w);
        max-width: 100%;
        position: sticky;
        top: 1.5rem;
    }

    .aff-how-video-embed {
        width: 100%;
        border-radius: var(--aff-radius);
    }

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

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

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

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

    /* FAQ infographic: 2-col staggered grid */
    .aff-faq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .aff-faq-grid::before {
        display: none;
    }

    .aff-faq-card {
        padding: 1.5rem 1.25rem 1.25rem;
    }

    .aff-faq-num {
        position: relative;
        left: auto;
        top: auto;
        margin-bottom: 0.75rem;
        width: 44px;
        height: 44px;
        font-size: 1.05rem;
    }

    /* Stagger: push odd cards down for visual interest */
    .aff-faq-card:nth-child(odd) {
        margin-top: 0;
    }
    .aff-faq-card:nth-child(even) {
        margin-top: 1.5rem;
    }
}

/* ==========================================================================
   DESKTOP (≥992px)
   ========================================================================== */
@media (min-width: 992px) {
    .aff-hero {
        padding: 3.5rem 0 0;
        text-align: left;
    }

    .aff-hero h1 {
        font-size: 2.85rem;
    }

    .aff-hero h1 .aff-highlight {
        display: inline;
    }

    .aff-hero-sub {
        margin: 0 0 2rem;
    }

    .aff-hero-cta {
        justify-content: flex-start;
    }

    .aff-hero-stats {
        max-width: 480px;
        margin-left: 0;
        gap: 1.5rem;
    }

    .aff-hero-visual {
        max-width: 520px;
        margin: 0 0 0 auto;
    }

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

    .aff-hero-stat-label {
        font-size: 0.75rem;
    }

    .aff-section {
        padding: 4.5rem 0;
    }

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

    .aff-section-header {
        margin-bottom: 3rem;
    }

    .aff-how {
        --aff-reel-w: 480px;
    }

    .aff-how-layout {
        gap: 3rem;
    }

    .aff-steps {
        flex: 0 1 360px;
        max-width: 360px;
        gap: 0.75rem;
        min-height: calc(var(--aff-reel-w) * 16 / 9 + 2rem);
    }

    .aff-step {
        padding: 1.25rem 1.5rem;
    }

    .aff-how-video {
        width: var(--aff-reel-w);
    }

    .aff-benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }

    .aff-tier-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }

    /* FAQ infographic: 3-col on desktop */
    .aff-faq-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .aff-faq-card:nth-child(even) {
        margin-top: 2rem;
    }

    .aff-faq-card {
        padding: 1.75rem 1.5rem 1.5rem;
    }

    .aff-faq-card-q {
        font-size: 1rem;
    }

    .aff-faq-card-a {
        font-size: 0.87rem;
    }

    .aff-cta-final {
        padding: 5rem 0;
    }

    .aff-cta-final h2 {
        font-size: 2rem;
    }
}

/* ==========================================================================
   LARGE DESKTOP (≥1200px)
   ========================================================================== */
@media (min-width: 1200px) {
    .aff-hero h1 {
        font-size: 3.25rem;
    }
}

/* ---------- Animations ---------- */
@media (prefers-reduced-motion: no-preference) {
    .aff-step,
    .aff-benefit,
    .aff-tier-card,
    .aff-faq-card {
        opacity: 0;
        transform: translateY(24px);
        animation: affFadeUp 0.5s ease forwards;
    }

    .aff-step:nth-child(1) { animation-delay: 0.1s; }
    .aff-step:nth-child(2) { animation-delay: 0.2s; }
    .aff-step:nth-child(3) { animation-delay: 0.3s; }

    .aff-benefit:nth-child(1) { animation-delay: 0.05s; }
    .aff-benefit:nth-child(2) { animation-delay: 0.1s; }
    .aff-benefit:nth-child(3) { animation-delay: 0.15s; }
    .aff-benefit:nth-child(4) { animation-delay: 0.2s; }
    .aff-benefit:nth-child(5) { animation-delay: 0.25s; }
    .aff-benefit:nth-child(6) { animation-delay: 0.3s; }

    .aff-tier-card:nth-child(1) { animation-delay: 0.1s; }
    .aff-tier-card:nth-child(2) { animation-delay: 0.2s; }
    .aff-tier-card:nth-child(3) { animation-delay: 0.3s; }

    .aff-faq-card:nth-child(1) { animation-delay: 0.05s; }
    .aff-faq-card:nth-child(2) { animation-delay: 0.1s; }
    .aff-faq-card:nth-child(3) { animation-delay: 0.15s; }
    .aff-faq-card:nth-child(4) { animation-delay: 0.2s; }
    .aff-faq-card:nth-child(5) { animation-delay: 0.25s; }
    .aff-faq-card:nth-child(6) { animation-delay: 0.3s; }
    .aff-faq-card:nth-child(7) { animation-delay: 0.35s; }
    .aff-faq-card:nth-child(8) { animation-delay: 0.4s; }
    .aff-faq-card:nth-child(9) { animation-delay: 0.45s; }

    .aff-tracking-card,
    .aff-commission-item {
        opacity: 0;
        transform: translateY(24px);
        animation: affFadeUp 0.5s ease forwards;
    }
    .aff-tracking-card:nth-child(1) { animation-delay: 0.1s; }
    .aff-tracking-card:nth-child(2) { animation-delay: 0.2s; }
    .aff-commission-item:nth-child(1) { animation-delay: 0.1s; }
    .aff-commission-item:nth-child(2) { animation-delay: 0.15s; }
    .aff-commission-item:nth-child(3) { animation-delay: 0.2s; }
    .aff-commission-item:nth-child(4) { animation-delay: 0.25s; }

    @keyframes affFadeUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Mobile: container-xxl. Large screens: fluid with side padding. */
@media (min-width: 992px) {
    .hp-container-fluid-lg {
        max-width: 100%;
        width: 100%;
        padding-left: 150px;
        padding-right: 150px;
    }
}
