 .bedbug-check-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 15px;
}

.bedbug-check-modal {
    background: #fff;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.bedbug-check-inner {
    padding: 24px 24px 20px;
}

.bedbug-check-close {
    position: absolute;
    right: 12px;
    top: 8px;
    border: 0;
    background: transparent;
    font-size: 22px;
    cursor: pointer;
}

.bedbug-check-header h2 {
    margin: 0 0 4px;
    font-size: 22px;
}

.bedbug-check-header p {
    margin: 0 0 12px;
    font-size: 14px;
    color: #555;
}

.bedbug-check-progress {
    margin-bottom: 16px;
}

.bedbug-check-progress-bar {
    width: 100%;
    height: 6px;
    background: #f2f2f2;
    border-radius: 999px;
    overflow: hidden;
}

.bedbug-check-progress-fill {
    height: 6px;
    width: 0;
    background: #de5413;
    transition: width 0.25s ease;
}

.bedbug-check-progress-label {
    display: block;
    font-size: 12px;
    margin-bottom: 4px;
    color: #777;
}

.bedbug-check-step {
    display: none;
}

.bedbug-check-step.active {
    display: block;
}

.bedbug-check-label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

.bedbug-check-input,
.bedbug-check-step textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px 10px;
    font-size: 14px;
    margin-bottom: 10px;
}

.bedbug-check-yesno {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.bedbug-check-radio {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
}

.bedbug-check-radio input {
    display: none;
}

.bedbug-check-radio span {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid #ddd;
    background: #f5f5f5;
}

.bedbug-check-radio input:checked + span {
    background: #de5413;
    border-color: #de5413;
    color: #fff;
    font-weight: 600;
}

/* knopstijl */
.bedbug-check-controls {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    gap: 10px;
}

.bedbug-check-controls button {
    flex: 1;
    padding: 10px 14px;
    border-radius: 4px;
    border: 1px solid #ddd;
    background: #f5f5f5;
    cursor: pointer;
    font-size: 14px;
}

.bedbug-check-controls button.primary {
    background: #de5413;
    border-color: #de5413;
    color: #fff;
    font-weight: 600;
}

.bedbug-check-controls button:disabled {
    opacity: 0.6;
    cursor: default;
}

.bedbug-check-disclaimer {
    margin-top: 8px;
    font-size: 11px;
    color: #777;
}

.bedbug-check-result {
    text-align: left;
}

.bedbug-check-result h3 {
    margin-top: 0;
}

.bedbug-check-result-actions {
    margin-top: 16px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.bedbug-cta-btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    color: #fff;
    border: none;
    cursor: pointer;
}

.bedbug-cta-call {
    background: #de5413;
}

.bedbug-cta-whatsapp {
    background: #25D366;
}

.bedbug-check-trigger {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #de5413;
    color: #fff;
    padding: 12px 16px;
    border-radius: 40px;
    border: 0;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    cursor: pointer;
    z-index: 9999;
}

/* mobiel */
@media (max-width: 600px) {
    .bedbug-check-modal {
        max-width: 100%;
    }

    .bedbug-check-inner {
        padding: 18px 16px 16px;
    }

    .bedbug-cta-btn {
        width: 100%;
        text-align: center;
    }
}
