.affiliate-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 70vh;
    margin-bottom: 0;
    text-align: center;
    padding: 0 20px;
}

h1 {
    font-size: 60px;
    color: #d7d7d7;
    margin-bottom: 15px;
    text-align: center;
}

h2 {
    font-size: 36px;
    color: #d7d7d7;
    margin-bottom: 50px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-decoration: none;
    color: #d7d7d7;
    font-weight: bold;
    font-size: 15px;
    padding: 12px 18px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transition: box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        backdrop-filter 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        -webkit-backdrop-filter 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-115%);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.2s ease;
    pointer-events: none;
}

.btn-primary:hover {
    border-color: rgba(215, 215, 215, 0.6);
    box-shadow: 0 0 20px rgba(215, 215, 215, 0.15), inset 0 0 20px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform: translateY(-2px);
}

.btn-primary:hover::before {
    transform: translateX(115%);
    opacity: 1;
}

/* How it works section */
.affiliate-info {
    text-align: center;
    padding: 60px 20px;
}


.info-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}

/* Arrow/Chevron step styling */
.step-1,
.step-2,
.step-3 {
    position: relative;
    padding: 30px 50px 30px 60px;
    min-width: 250px;
    max-width: 25%;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 0 100%, 30px 50%);
    margin-left: -15px;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.step-1 {
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 0 100%);
    margin-left: 0;
    border-radius: 10px 0 0 10px;
    background: linear-gradient(90deg, rgba(30, 41, 59, 0.3), rgba(25, 38, 58, 0.3));
}

.step-2 {
    background: linear-gradient(90deg, rgba(25, 38, 58, 0.3), rgba(20, 35, 56, 0.3));
}

.step-3 {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 30px 50%);
    border-radius: 0 10px 10px 0;
    background: linear-gradient(90deg, rgba(20, 35, 56, 0.3), rgba(15, 35, 63, 0.3));
}

.step-1:hover,
.step-2:hover,
.step-3:hover {
    transform: translateY(-5px);
}

.step-1 h3,
.step-2 h3,
.step-3 h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
}

.step-1 p,
.step-2 p,
.step-3 p {
    font-size: 14px;
    color: #a0a0a0;
    line-height: 1.5;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .info-steps {
        flex-direction: column;
        gap: 20px;
    }

    .step-1,
    .step-2,
    .step-3 {
        clip-path: none;
        margin-left: 0;
        border-radius: 10px;
        padding: 30px;
        min-width: 280px;
    }
}