/* Emergency Page Wizard Styles - FAQ-Inspired Design */
/* Using MOBOT color scheme and FAQ section design patterns */

:root {
    --primary-green: #10b981;
    --primary-green-dark: #047857;
    --secondary-green: #059669;
    --text-dark: #1a1a1a;
    --text-gray: #4b5563;
    --bg-light: #f8fafc;
}

/* ===== GLOBAL EMERGENCY PAGE STYLES ===== */
.emergency-container {
    background: var(--bg-light);
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
}

.emergency-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* ===== WIZARD PROGRESS BAR - FAQ INSPIRED ===== */
.wizard-progress {
    margin-bottom: 3rem;
    padding: 0 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background-color: #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
    position: relative;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
    border-radius: 8px;
    width: 25%;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
    border-radius: 8px;
    width: 25%;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.6;
    transform: scale(0.95);
    animation: staggerIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

.progress-step.active {
    opacity: 1;
    transform: scale(1);
}

.progress-step.completed {
    opacity: 0.8;
    transform: scale(0.98);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e5e7eb;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
}

.progress-step.active .step-number {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    border-color: var(--primary-green-dark);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    animation: pulse-active 2s infinite;
}

.progress-step.completed .step-number {
    background: var(--secondary-green);
    color: var(--text-dark);
    border-color: var(--secondary-green);
    box-shadow: 0 2px 10px rgba(84, 243, 154, 0.2);
}

.step-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-gray);
    text-align: center;
    transition: all 0.3s ease;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

.progress-step.active .step-label {
    color: var(--primary-green);
    font-weight: 600;
}

.progress-step.completed .step-label {
    color: var(--secondary-green);
    font-weight: 600;
}

@keyframes pulse-active {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    }
}

/* ===== WIZARD HEADER - FAQ STYLE ===== */
.wizard-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.wizard-step-title {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.wizard-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

/* ===== WIZARD STEPS - FAQ INSPIRED ===== */
.wizard-step {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 500px;
    display: none;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(84, 243, 154, 0.1);
}

.wizard-step.active {
    opacity: 1;
    transform: translateX(0);
    display: block;
    animation: fadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.step-content {
    padding: 2.5rem;
}

.step-title {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(15px);
    animation: slideInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}

.step-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(15px);
    animation: slideInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

/* ===== ACTION GRID - FAQ CARD STYLE ===== */
.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.action-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 180px;
    opacity: 1;
    transform: translateY(0) scale(1);
    overflow: hidden;
}

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

.action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(84, 243, 154, 0.1), transparent);
    transition: left 0.6s ease;
}

.action-card:hover {
    border-color: var(--secondary-green);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(84, 243, 154, 0.2);
    background: rgba(84, 243, 154, 0.02);
}

.action-card:hover::before {
    left: 100%;
}

.action-card.selected,
.action-card.active {
    border-color: var(--primary-green);
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.05), rgba(84, 243, 154, 0.05));
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.25);
}

.action-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.action-content {
    text-align: center;
}

.action-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--primary-green);
}

.action-card:hover .action-icon {
    transform: scale(1.15) rotate(5deg);
    color: var(--secondary-green);
}

.action-card h4 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.action-card.selected h4,
.action-card.active h4 {
    color: var(--primary-green);
}

.action-card p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0;
}

/* ===== FORM ENHANCEMENTS - FAQ STYLE ===== */
.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

.form-group label {
    display: block;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.required {
    color: #ef4444;
    font-weight: 700;
}

.form-group input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    color: var(--text-dark);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.1);
    transform: translateY(-2px);
}

.form-group input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
    animation: shake 0.5s ease-in-out;
}

.form-help {
    display: block;
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
}

.field-error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: block;
    animation: slideInUp 0.3s ease;
    font-family: 'Inter', sans-serif;
}

/* ===== SECURITY QUESTIONS - FAQ STYLE ===== */
.security-questions .form-group {
    margin-bottom: 2rem;
    background: rgba(84, 243, 154, 0.02);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(84, 243, 154, 0.1);
}

/* ===== REVIEW SECTION - FAQ INSPIRED ===== */
.review-section {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.02), rgba(84, 243, 154, 0.02));
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 2px solid rgba(84, 243, 154, 0.2);
    box-shadow: 0 4px 15px rgba(84, 243, 154, 0.1);
}

.review-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(84, 243, 154, 0.2);
    opacity: 0;
    transform: translateX(20px);
    animation: slideInLeft 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.review-item:nth-child(1) { animation-delay: 0.1s; }
.review-item:nth-child(2) { animation-delay: 0.2s; }
.review-item:nth-child(3) { animation-delay: 0.3s; }
.review-item:nth-child(4) { animation-delay: 0.4s; }

.review-item:last-child {
    border-bottom: none;
}

.review-item h4 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    font-size: 1rem;
}

.review-value {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--primary-green);
    margin: 0;
    text-align: right;
    max-width: 60%;
    word-break: break-word;
}

.review-notice {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    opacity: 0;
    transform: translateY(15px);
    animation: slideInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

.review-notice p {
    margin: 0;
    font-size: 1rem;
    color: #92400e;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

/* ===== WIZARD NAVIGATION - FAQ BUTTON STYLE ===== */
.wizard-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2.5rem;
    padding: 2rem;
    border-top: 2px solid rgba(84, 243, 154, 0.1);
    gap: 1.5rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    min-width: 140px;
    justify-content: center;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: white;
    color: var(--text-dark);
    border: 2px solid var(--secondary-green);
    box-shadow: 0 4px 15px rgba(84, 243, 154, 0.2);
}

.btn-secondary:hover {
    background: var(--secondary-green);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(84, 243, 154, 0.3);
}

.nav-spacer {
    flex: 1;
}

/* ===== SUCCESS/ERROR MESSAGES - FAQ STYLE ===== */
.success-message, .error-message {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    margin: 2rem 0;
    opacity: 0;
    transform: scale(0.9);
    animation: popIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.success-message {
    border: 2px solid var(--secondary-green);
    background: linear-gradient(135deg, rgba(84, 243, 154, 0.05), rgba(37, 211, 102, 0.02));
}

.error-message {
    border: 2px solid #ef4444;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(220, 38, 38, 0.02));
}

.success-message h3 {
    color: var(--primary-green);
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.error-message h3 {
    color: #ef4444;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.success-message p, .error-message p {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-gray);
}

/* ===== LOADING OVERLAY - FAQ STYLE ===== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 41, 55, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.loading-content {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--secondary-green);
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #e5e7eb;
    border-top: 4px solid var(--primary-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1.5rem;
}

.loading-content p {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.loading-subtext {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-gray);
    margin: 0;
}

/* ===== ANIMATIONS ===== */
@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes staggerIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes popIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== PROCESSING ANIMATIONS ===== */
.processing-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    transition: all 0.5s ease;
}

.processing-container.error-state {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 16px;
    animation: shake 0.5s ease-in-out;
}

.processing-container.success-state {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.1) 100%);
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 16px;
    animation: celebrationPulse 1s ease-in-out;
}

.processing-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.processing-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
}

.processing-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.5;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.processing-step.active {
    opacity: 1;
    background: rgba(34, 197, 94, 0.1);
    border-color: var(--primary-green);
    transform: scale(1.02);
}

.processing-step.completed {
    opacity: 0.8;
    background: rgba(34, 197, 94, 0.05);
    border-color: rgba(34, 197, 94, 0.3);
}

.processing-step .step-icon {
    font-size: 1.5rem;
    min-width: 2rem;
    text-align: center;
}

.processing-step .step-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    flex: 1;
}

.processing-step .step-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--primary-green);
    width: 0%;
    transition: width 2s ease;
}

.processing-step.active .step-progress {
    width: 100%;
}

.processing-feedback {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    min-width: 300px;
    text-align: center;
}

.feedback-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.feedback-icon {
    font-size: 2rem;
    animation: pulse 2s infinite;
}

.feedback-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes progressFill {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* ===== RESPONSIVE DESIGN - FAQ MOBILE PATTERNS ===== */
@media (max-width: 768px) {
    .emergency-content {
        padding: 1rem;
    }
    
    .wizard-step-title {
        font-size: 2rem;
    }
    
    .wizard-description {
        font-size: 1.125rem;
    }
    
    .step-content {
        padding: 1.5rem;
    }
    
    .action-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .action-card {
        padding: 1.5rem;
        min-height: 150px;
    }
    
    .action-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .wizard-navigation {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .btn {
        width: 100%;
        padding: 1rem;
    }
    
    .progress-steps {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
    }
    
    .step-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .wizard-step-title {
        font-size: 1.75rem;
    }
    
    .step-title {
        font-size: 1.5rem;
    }
    
    .action-card h4 {
        font-size: 1.25rem;
    }
    
    .review-section {
        padding: 1.5rem;
    }
    
    .loading-content {
        padding: 2rem;
        margin: 1rem;
    }
}

/* Additional processing animations */
@keyframes celebrationPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes popIn {
    0% { transform: scale(0); }
    80% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.processing-step.completed .step-icon {
    animation: popIn 0.5s ease-out;
}