.dpe-open-wizard-button {
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    background: #1a3145;
    color: #fff;
}

.dpe-open-wizard-button:hover {
    opacity: 0.94;
}

#dpe-wizard-overlay {
    position: fixed;
    z-index: 99999;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: none;
}

.dpe-wizard-modal {
    max-width: 640px;
    margin: 50px auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    padding: 0;
}

.dpe-wizard-inner {
    position: relative;
    padding: 24px 24px 18px;
    max-height: 80vh;
    overflow-y: auto;
}

.dpe-wizard-close {
    position: absolute;
    right: 16px;
    top: 12px;
    border: none;
    background: transparent;
    font-size: 22px;
    cursor: pointer;
}

.dpe-wizard-header {
    margin-bottom: 18px;
}

.dpe-progress-bar {
    position: relative;
    width: 100%;
    height: 5px;
    border-radius: 999px;
    background: #e2e6f0;
    overflow: hidden;
}

.dpe-progress-fill {
    height: 100%;
    width: 33%;
    border-radius: 999px;
    background: #1a3145;
    transition: width 0.25s ease;
}

.dpe-progress-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.dpe-step-bullet {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid #c4cad7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    background: #fff;
    color: #4c5465;
}

.dpe-step-bullet.active {
    color: #fff;
    border-color: transparent;
}

.dpe-progress-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    font-size: 11px;
    color: #7a8090;
}

.dpe-wizard-step h2 {
    margin-top: 14px;
    margin-bottom: 4px;
}

.dpe-wizard-step p {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 13px;
}

.dpe-questions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

@media (min-width: 640px) {
    .dpe-questions-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.dpe-field {
    margin-bottom: 10px;
}

.dpe-field-card {
    background: #f6f7fb;
    border-radius: 10px;
    padding: 10px 12px;
    border: 1px solid #e0e4f0;
}

.dpe-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
}

.dpe-field input[type="text"],
.dpe-field input[type="email"],
.dpe-field textarea,
.dpe-field select {
    width: 100%;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid #d0d7e2;
    font-size: 14px;
    box-sizing: border-box;
}

.dpe-field textarea {
    min-height: 80px;
}

.dpe-wizard-footer {
    margin-top: 20px;
    text-align: right;
    display: flex;
    justify-content: space-between;
}

.dpe-wizard-footer .button {
    border-radius: 999px;
    padding: 6px 18px;
}

.dpe-contact-name.dpe-error,
.dpe-contact-phone.dpe-error,
.dpe-contact-email.dpe-error {
    border-color: #e55353;
}

.dpe-wizard-step-result .dpe-price {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

.dpe-wizard-step-result .dpe-note {
    font-size: 13px;
    color: #6c7480;
}

/* Loader overlay in de modal */
.dpe-loading-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.dpe-loading-inner {
    text-align: center;
}

.dpe-spinner {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #d0d7e2;
    border-top-color: #1a3145;
    animation: dpe-spin 0.8s linear infinite;
    margin: 0 auto 10px;
}

@keyframes dpe-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
