/*
 * De ce exista:
 * Acest fisier pastreaza separat stilurile pentru ecranul de completare a
 * profilului de muncitor.
 *
 * Responsabilitate:
 * Ofera ritm si claritate formularului canonic worker/me + worker/profile.
 *
 * Ce NU face:
 * Nu stilizeaza alte ecrane si nu introduce reguli de business.
 *
 * Depinde de:
 * tpl-screen-worker-profile-complete si CSS-ul shared/forms/components.
 */

.v2-screen--worker-profile-complete {
    display: grid;
    gap: 16px;
}

.v2-worker-profile-hero-card {
    padding: 18px;
    background:
        radial-gradient(circle at top right, rgba(220, 252, 231, 0.72), transparent 38%),
        rgba(255, 255, 255, 0.99);
}

.v2-worker-profile-status-card {
    display: grid;
    gap: 16px;
}

.v2-worker-profile-status-card.is-pending {
    background: linear-gradient(180deg, rgba(22, 163, 74, 0.06), rgba(255, 255, 255, 0.98));
}

.v2-worker-profile-status-card.is-complete {
    background: linear-gradient(180deg, rgba(22, 163, 74, 0.08), rgba(255, 255, 255, 0.98));
}

.v2-worker-profile-error-card {
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.08), rgba(255, 255, 255, 0.98));
}

.v2-worker-profile-form-card {
    display: grid;
    gap: 16px;
    background:
        radial-gradient(circle at top right, rgba(240, 253, 244, 0.76), transparent 34%),
        rgba(255, 255, 255, 0.99);
}

.v2-worker-profile-form-grid {
    display: grid;
    gap: 14px;
}

.v2-worker-profile-form-section {
    display: grid;
    gap: 14px;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(229, 231, 235, 0.95);
    background: rgba(255, 255, 255, 0.94);
}

.v2-worker-profile-form-section.is-support {
    background: rgba(249, 250, 251, 0.96);
}

.v2-worker-profile-missing-steps {
    display: grid;
    gap: 12px;
}

.v2-worker-profile-missing-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 15px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(229, 231, 235, 0.95);
}

.v2-worker-profile-missing-step strong {
    font-size: 0.98rem;
    color: #111827;
}

.v2-worker-profile-missing-step-index {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: rgba(22, 163, 74, 0.12);
    color: #15803d;
    font-size: 0.84rem;
    font-weight: 800;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .v2-worker-profile-form-grid {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
        align-items: start;
    }
}
