/* Spoed Widget */
.emergency-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 320px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    z-index: 2000;
    padding: 24px;
    border: 1px solid rgba(242, 101, 34, 0.1);
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.pulse-icon {
    width: 12px;
    height: 12px;
    background: #d90000;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(217, 0, 0, 0.4);
    animation: pulse 2s infinite;
}

.btn-call {
    display: block;
    background: #d90000;
    color: white;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    margin: 15px 0 10px;
}

/* Configurator */
.config-section { padding: 100px 5%; background: #f8fafc; }
.config-wizard-box {
    max-width: 900px;
    margin: 40px auto;
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.progress-container {
    height: 6px;
    background: #edf2f7;
    border-radius: 3px;
    margin-bottom: 40px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--orange);
    width: 33%;
    transition: width 0.4s ease;
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.option-card {
    padding: 30px;
    border: 2px solid #edf2f7;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-card:hover { border-color: var(--orange); transform: translateY(-5px); }
.option-card .icon { font-size: 2.5rem; display: block; margin-bottom: 15px; }

.step { display: none; }
.step.active { display: block; animation: fadeIn 0.4s ease; }

/* Animaties */
@keyframes pulse { 70% { box-shadow: 0 0 0 15px rgba(217, 0, 0, 0); } 100% { box-shadow: 0 0 0 0 rgba(217, 0, 0, 0); } }
@keyframes slideUp { from { transform: translateY(100px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }