/* ===== Apply Page ===== */
.apply-section {
    min-height: calc(100vh - 64px - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
}

.apply-container {
    max-width: 580px;
    width: 100%;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: var(--gray-200);
    border-radius: 3px;
    margin-bottom: 12px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--purple);
    border-radius: 3px;
    width: 25%;
    transition: width 0.4s ease;
}

.step-indicator {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 500;
    margin-bottom: 40px;
}

/* ===== Form Steps ===== */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.form-step h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.2;
}

.step-desc {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin-bottom: 32px;
}

/* ===== Option Cards (Step 1) ===== */
.option-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.option-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    color: var(--gray-900);
}

.option-card:hover {
    border-color: var(--purple);
    background: var(--purple-light);
}

.option-card.selected {
    border-color: var(--purple);
    background: var(--purple-light);
}

.option-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: var(--purple);
}

.option-icon svg {
    width: 100%;
    height: 100%;
}

.option-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.option-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ===== Volume Cards ===== */
.volume-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.volume-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 20px;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.volume-card:hover {
    border-color: var(--purple);
    background: var(--purple-light);
}

.volume-card.selected {
    border-color: var(--purple);
    background: var(--purple-light);
    color: var(--purple);
}

/* ===== Form Fields ===== */
.form-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

/* ===== Step Actions ===== */
.step-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}

.back-link {
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-500);
    cursor: pointer;
    padding: 8px 0;
    transition: color 0.2s;
}

.back-link:hover {
    color: var(--purple);
}

/* ===== Success State ===== */
.success-state {
    text-align: center;
    padding: 40px 0;
}

.success-icon {
    width: 64px;
    height: 64px;
    color: var(--purple);
    margin: 0 auto 24px;
}

.success-icon svg {
    width: 100%;
    height: 100%;
}

.success-state h2 {
    margin-bottom: 12px;
}

.success-state p {
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Responsive ===== */
@media (max-width: 500px) {
    .option-grid {
        grid-template-columns: 1fr;
    }

    .volume-grid {
        grid-template-columns: 1fr 1fr;
    }

    .form-step h2 {
        font-size: 1.3rem;
    }
}
