.affiliate-container {
    min-height: 100vh;
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, #f85606 0%, #ff8533 100%);
    color: white;
    padding: 60px 20px;
}

.benefits-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.benefits-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 40px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* Form Section */
.form-section {
    padding: 40px 20px;
}

.form-card {
    max-width: 800px;
    margin: -60px auto 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.progress-bar {
    height: 4px;
    background: #e0e0e0;
}

.progress {
    height: 100%;
    background: #f85606;
    width: 33.33%;
    transition: width 0.3s ease;
}

.form-step {
    display: none;
    padding: 30px;
}

.form-step.active {
    display: block;
}

.form-step h3 {
    color: #333;
    margin-bottom: 25px;
    font-size: 24px;
}

.platform-checkboxes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.form-check-input:checked {
    background-color: #f85606;
    border-color: #f85606;
}

/* Form Controls */
.form-control, .form-select {
    border: 2px solid #e0e0e0;
    padding: 12px 15px;
    height: auto;
    border-radius: 8px;
}

.form-control:focus, .form-select:focus {
    border-color: #f85606;
    box-shadow: none;
}

label {
    font-weight: 500;
    margin-bottom: 8px;
    color: #444;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 8px;
}

.btn-primary {
    background: #f85606;
    border: none;
}

.btn-primary:hover {
    background: #e04e05;
}

.btn-secondary {
    background: #6c757d;
    border: none;
}

/* Success Animation */
.success-animation {
    margin: 20px 0;
}

.checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #28a745;
    stroke-miterlimit: 10;
    margin: 10% auto;
    box-shadow: inset 0px 0px 0px #28a745;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

/* Responsive */
@media (max-width: 768px) {
    .benefits-section {
        padding: 40px 20px;
    }

    .benefits-content h1 {
        font-size: 28px;
    }

    .form-card {
        margin-top: -40px;
    }

    .form-step {
        padding: 20px;
    }
}