/* ═══════════════════════════════════════════════════════════════════════
 * LZ Devis v1.0.0 — Devis multi-étapes premium
 * Stepper horizontal classique ● ─── ● ─── ○ ─── ○
 * Couleurs : #152738 (marine) / #808186 (gris)
 * ═══════════════════════════════════════════════════════════════════════ */

.lz-devis {
    position: relative;
    width: 100%;
    padding: 80px 0;
    background: #f7f8f9;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.lz-devis *,
.lz-devis *::before,
.lz-devis *::after {
    box-sizing: border-box;
}

.lz-devis__inner {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ─── EN-TÊTE ─────────────────────────────────────────────────────────── */
.lz-devis__header {
    text-align: center;
    margin-bottom: 40px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.lz-devis__kicker {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #808186;
    margin-bottom: 18px;
}

.lz-devis__kicker::before,
.lz-devis__kicker::after {
    content: '';
    width: 34px;
    height: 1px;
    background: #808186;
    display: inline-block;
}

.lz-devis__title {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #152738;
    margin: 0 0 16px;
}

.lz-devis__title-accent {
    color: #808186;
    font-style: italic;
    font-weight: 700;
    position: relative;
}

.lz-devis__title-accent::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.05em;
    height: 2px;
    background: #808186;
    opacity: 0.4;
}

.lz-devis__subtitle {
    font-size: 0.98rem;
    line-height: 1.6;
    color: #506069;
    margin: 0;
}

/* ─── CARD CONTAINER ──────────────────────────────────────────────────── */
.lz-devis__card {
    background: #ffffff;
    border-radius: 12px;
    padding: 44px 48px;
    box-shadow: 0 12px 40px -10px rgba(21, 39, 56, 0.15);
    border: 0.5px solid #e2e5e9;
}

/* ─── STEPPER HORIZONTAL ● ─── ● ─── ○ ─── ○ ──────────────────────────── */
.lz-devis__stepper {
    margin-bottom: 36px;
}

.lz-devis__stepper-track {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 14px;
}

.lz-devis__step-dot {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #d9dde0;
    background: #ffffff;
    color: #808186;
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lz-devis__step-dot.is-active {
    background: #152738;
    border-color: #152738;
    color: #ffffff !important;
    transform: scale(1.1);
    box-shadow: 0 0 0 4px rgba(21, 39, 56, 0.1);
}

.lz-devis__step-dot.is-done {
    background: #152738;
    border-color: #152738;
    color: #ffffff !important;
    font-size: 0;
}

.lz-devis__step-dot.is-done::before {
    content: '✓';
    font-size: 0.95rem;
    line-height: 1;
    color: #ffffff;
    font-weight: 700;
}

.lz-devis__step-line {
    flex: 1;
    height: 2px;
    background: #d9dde0;
    transition: background 0.4s ease;
    min-width: 20px;
}

.lz-devis__step-line.is-done {
    background: #152738;
}

.lz-devis__step-label {
    text-align: center;
    font-family: 'Manrope', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #808186;
    margin: 0;
    text-transform: uppercase;
}

.lz-devis__step-current {
    color: #152738;
    font-weight: 700;
}

/* ─── FORM ──────────────────────────────────────────────────────────── */
.lz-devis__form {
    position: relative;
}

/* PANES (étapes) — affichage conditionnel */
.lz-devis__pane {
    display: none;
    animation: lzFadeIn 0.4s ease-out;
}

.lz-devis__pane.is-active {
    display: block;
}

@keyframes lzFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.lz-devis__pane-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #152738;
    margin: 0 0 8px;
}

.lz-devis__pane-subtitle {
    font-size: 0.92rem;
    line-height: 1.55;
    color: #506069;
    margin: 0 0 28px;
}

/* ─── CHOICES (cards à cocher / radio) ────────────────────────────────── */
.lz-devis__choices {
    display: grid;
    gap: 12px;
    margin-bottom: 20px;
}

.lz-devis__choices--prestations {
    grid-template-columns: repeat(2, 1fr);
}

.lz-devis__choices--type,
.lz-devis__choices--urgence {
    grid-template-columns: repeat(2, 1fr);
}

.lz-devis__choice {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: #ffffff;
    border: 1.5px solid #e2e5e9;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}

.lz-devis__choice:hover:not(.is-active) {
    border-color: #152738;
    background: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px -4px rgba(21, 39, 56, 0.15);
}

.lz-devis__choice.is-active,
.lz-devis__choice.is-active .lz-devis__choice-label {
    background: #152738;
    border-color: #152738;
    color: #ffffff;
}

.lz-devis__choice input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.lz-devis__choice-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(21, 39, 56, 0.06);
    color: #152738;
    border-radius: 6px;
    transition: all 0.25s ease;
}

.lz-devis__choice.is-active .lz-devis__choice-icon {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.lz-devis__choice-icon i,
.lz-devis__choice-icon svg {
    font-size: 16px;
}

.lz-devis__choice-label {
    flex: 1;
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
    color: inherit;
}

.lz-devis__choice-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ffffff;
    color: #152738;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.25s ease;
}

.lz-devis__choice.is-active .lz-devis__choice-check {
    opacity: 1;
    transform: scale(1);
}

/* Variantes type / urgence — labels alignés sur une seule ligne */
.lz-devis__choice--type,
.lz-devis__choice--urgence {
    padding: 16px 18px;
    min-height: 64px;
}

.lz-devis__choice--type .lz-devis__choice-label,
.lz-devis__choice--urgence .lz-devis__choice-label {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
}

/* L'urgence n'a pas d'icône, donc on centre le label */
.lz-devis__choice--urgence {
    justify-content: center;
}

.lz-devis__choice--urgence .lz-devis__choice-label {
    flex: 0 1 auto;
    text-align: center;
}

/* ─── FIELDS, INPUTS, TEXTAREA ────────────────────────────────────────── */
.lz-devis__field {
    margin-bottom: 18px;
}

.lz-devis__field--full {
    margin-top: 16px;
}

.lz-devis__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.lz-devis__row .lz-devis__field {
    margin-bottom: 0;
}

.lz-devis__label {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #152738;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.lz-devis__input,
.lz-devis__textarea {
    width: 100%;
    padding: 13px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #152738;
    background: #ffffff;
    border: 1.5px solid #d9dde0;
    border-radius: 6px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    -webkit-appearance: none;
    appearance: none;
}

.lz-devis__input::placeholder,
.lz-devis__textarea::placeholder {
    color: #9aa4ae;
}

.lz-devis__input:focus,
.lz-devis__textarea:focus {
    outline: none;
    border-color: #152738;
    box-shadow: 0 0 0 3px rgba(21, 39, 56, 0.08);
}

.lz-devis__textarea {
    resize: vertical;
    min-height: 110px;
}

/* ─── SLIDER (surface) ────────────────────────────────────────────────── */
.lz-devis .lz-devis__slider {
    width: 100% !important;
    height: 6px !important;
    background: #e2e5e9 !important;
    border-radius: 100px !important;
    outline: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    margin: 14px 0 8px !important;
    padding: 0 !important;
    border: 0 !important;
    cursor: pointer;
}

/* Track (rail) — Chrome, Safari, Edge */
.lz-devis .lz-devis__slider::-webkit-slider-runnable-track {
    width: 100%;
    height: 6px;
    background: #e2e5e9;
    border-radius: 100px;
    border: 0;
}

/* Track (rail) — Firefox */
.lz-devis .lz-devis__slider::-moz-range-track {
    width: 100%;
    height: 6px;
    background: #e2e5e9;
    border-radius: 100px;
    border: 0;
}

/* Track rempli (la partie marine à gauche du thumb) — Firefox only */
.lz-devis .lz-devis__slider::-moz-range-progress {
    height: 6px;
    background: #152738;
    border-radius: 100px;
}

/* Thumb — Chrome, Safari, Edge */
.lz-devis .lz-devis__slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: #152738;
    border: 3px solid #ffffff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(21, 39, 56, 0.25);
    transition: transform 0.2s ease;
    margin-top: -9px; /* compense la hauteur du track pour centrer */
}

.lz-devis .lz-devis__slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

/* Thumb — Firefox */
.lz-devis .lz-devis__slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: #152738;
    border: 3px solid #ffffff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(21, 39, 56, 0.25);
}

.lz-devis__slider-bounds {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #808186;
    font-weight: 500;
    margin-top: 4px;
}

.lz-devis__surface-value {
    color: #152738;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
}

/* ─── UPLOAD PHOTOS ───────────────────────────────────────────────────── */
.lz-devis__upload {
    display: block;
    position: relative;
    padding: 28px 20px;
    background: #f7f8f9;
    border: 2px dashed #d9dde0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
}

.lz-devis__upload:hover {
    border-color: #152738;
    background: #f0f2f5;
}

.lz-devis__upload.is-dragover {
    border-color: #152738;
    background: rgba(21, 39, 56, 0.04);
}

.lz-devis__upload-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.lz-devis__upload-content {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    color: #506069;
}

.lz-devis__upload-content svg {
    color: #152738;
    flex-shrink: 0;
}

.lz-devis__upload-text {
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.5;
}

.lz-devis__upload-text strong {
    color: #152738;
}

.lz-devis__upload-text small {
    color: #808186;
    font-size: 0.78rem;
}

.lz-devis__upload-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.lz-devis__upload-preview:empty {
    display: none;
}

.lz-devis__upload-item {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    border: 1.5px solid #e2e5e9;
}

.lz-devis__upload-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lz-devis__upload-item-remove {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(21, 39, 56, 0.85);
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    padding: 0;
    line-height: 1;
}

.lz-devis__upload-item-remove:hover {
    background: #152738;
}

/* ─── RÉCAP étape 4 ───────────────────────────────────────────────────── */
.lz-devis__recap {
    background: #f7f8f9;
    border: 1px solid #e2e5e9;
    border-radius: 8px;
    padding: 22px 24px;
    margin-bottom: 24px;
}

.lz-devis__recap-title {
    text-align: center;
    font-family: 'Manrope', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #152738;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1.5px solid #152738;
}

.lz-devis__recap-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lz-devis__recap-line {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding: 6px 0;
    border-bottom: 1px solid #e8eaed;
    font-size: 0.88rem;
}

.lz-devis__recap-line:last-child {
    border-bottom: 0;
}

.lz-devis__recap-label {
    font-family: 'Manrope', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #808186;
    text-transform: uppercase;
    flex-shrink: 0;
}

.lz-devis__recap-value {
    font-weight: 600;
    color: #152738;
    text-align: right;
    line-height: 1.4;
}

/* ─── RGPD ─────────────────────────────────────────────────────────── */
.lz-devis__rgpd {
    margin: 8px 0 0;
}

.lz-devis__rgpd label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.82rem;
    line-height: 1.5;
    color: #506069;
}

.lz-devis__rgpd input[type="checkbox"] {
    flex-shrink: 0;
    margin-top: 3px;
    width: 16px;
    height: 16px;
    accent-color: #152738;
    cursor: pointer;
}

.lz-devis__rgpd-link {
    color: #152738;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(21, 39, 56, 0.35);
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px;
    transition: color 0.25s ease, text-decoration-color 0.25s ease;
}

.lz-devis__rgpd-link:hover,
.lz-devis__rgpd-link:focus {
    color: #1f3a5c;
    text-decoration-color: #1f3a5c;
}

.lz-devis__hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

/* ─── NAVIGATION boutons ─────────────────────────────────────────────── */
.lz-devis__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    gap: 16px;
}

/* Reset agressif contre les styles du thème (Bixol notamment) */
.lz-devis .lz-devis__btn,
.lz-devis button.lz-devis__btn,
.lz-devis input.lz-devis__btn {
    position: relative;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px;
    padding: 13px 24px !important;
    margin: 0 !important;
    font-family: 'Manrope', sans-serif !important;
    font-size: 0.92rem !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    letter-spacing: 0.02em !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    border: 1.5px solid transparent !important;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, gap 0.3s ease, box-shadow 0.3s ease !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    overflow: hidden;
    text-decoration: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
    text-transform: none !important;
    min-height: 0 !important;
    width: auto !important;
    height: auto !important;
}

.lz-devis .lz-devis__btn svg {
    flex-shrink: 0;
    fill: none;
    stroke: currentColor;
    width: 16px;
    height: 16px;
    display: inline-block;
}

.lz-devis .lz-devis__btn span {
    display: inline-block;
    color: inherit;
}

/* PRIMARY (suivant / envoyer) */
.lz-devis .lz-devis__btn-primary {
    background: #152738 !important;
    color: #ffffff !important;
    border-color: #152738 !important;
    margin-left: auto !important;
}

.lz-devis .lz-devis__btn-primary:hover:not(:disabled),
.lz-devis .lz-devis__btn-primary:focus:not(:disabled) {
    background: #808186 !important;
    color: #ffffff !important;
    border-color: #808186 !important;
    gap: 12px;
    box-shadow: none !important;
}

/* SECONDARY (précédent) — outline marine */
.lz-devis .lz-devis__btn-secondary {
    background: transparent !important;
    color: #152738 !important;
    border: 1.5px solid #152738 !important;
}

.lz-devis .lz-devis__btn-secondary:hover:not(:disabled),
.lz-devis .lz-devis__btn-secondary:focus:not(:disabled) {
    background: #152738 !important;
    color: #ffffff !important;
    border-color: #152738 !important;
}

.lz-devis .lz-devis__btn:disabled {
    opacity: 0.5;
    cursor: not-allowed !important;
}

/* Classe utilitaire pour cacher les boutons (priorité haute contre Bixol) */
.lz-devis .lz-devis__btn.is-hidden,
.lz-devis .is-hidden {
    display: none !important;
    visibility: hidden !important;
}

/* Submit spinner — DOIT être caché par défaut, visible uniquement quand .is-loading */
.lz-devis .lz-devis__submit-spinner {
    display: none !important;
    animation: lz-devis-spin 1s linear infinite;
}

.lz-devis .lz-devis__btn-submit.is-loading .lz-devis__submit-text,
.lz-devis .lz-devis__btn-submit.is-loading .lz-devis__submit-icon {
    visibility: hidden;
}

.lz-devis .lz-devis__btn-submit.is-loading .lz-devis__submit-spinner {
    display: inline-flex !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes lz-devis-spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Feedback */
.lz-devis__feedback {
    margin-top: 16px;
    font-size: 0.92rem;
    line-height: 1.5;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.lz-devis__feedback.is-success {
    padding: 16px 20px;
    background: #e8f4ec;
    color: #1d6537;
    border: 1px solid #b8dec6;
}

.lz-devis__feedback.is-error {
    padding: 16px 20px;
    background: #fdebed;
    color: #8b1d2b;
    border: 1px solid #f0bcc2;
}

/* ─── RESPONSIVE ───────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .lz-devis {
        padding: 50px 0;
    }
    .lz-devis__inner {
        padding: 0 20px;
    }
    .lz-devis__card {
        padding: 28px 22px;
        border-radius: 8px;
    }
    .lz-devis__title {
        font-size: 1.7rem;
    }
    .lz-devis__step-dot {
        width: 32px;
        height: 32px;
        font-size: 0.78rem;
    }
    .lz-devis__step-line {
        min-width: 12px;
    }
    .lz-devis__pane-title {
        font-size: 1.2rem;
    }
    .lz-devis__choices--prestations {
        grid-template-columns: 1fr;
    }
    .lz-devis__choices--type,
    .lz-devis__choices--urgence {
        grid-template-columns: 1fr;
    }
    .lz-devis__row {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .lz-devis__nav {
        flex-direction: column-reverse;
        gap: 10px;
    }
    .lz-devis__nav .lz-devis__btn {
        width: 100%;
        justify-content: center;
        margin-left: 0;
    }
    .lz-devis__upload-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .lz-devis__upload-text {
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lz-devis__pane,
    .lz-devis__step-dot,
    .lz-devis__step-line,
    .lz-devis__choice,
    .lz-devis__btn,
    .lz-devis__input,
    .lz-devis__textarea {
        transition: none !important;
        animation: none !important;
    }
}


/* ═══════════════════════════════════════════════════════════════════════
 * MODALE DE CONFIRMATION PREMIUM
 * Affichée après envoi réussi du devis
 * ═══════════════════════════════════════════════════════════════════════ */

.lz-devis-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(21, 39, 56, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lz-devis-modal-backdrop.is-visible {
    opacity: 1;
}

.lz-devis-modal {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    max-width: 480px;
    width: 100%;
    padding: 48px 36px 36px;
    box-shadow: 0 24px 70px -12px rgba(0, 0, 0, 0.35);
    text-align: center;
    transform: scale(0.92) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.lz-devis-modal-backdrop.is-visible .lz-devis-modal {
    transform: scale(1) translateY(0);
}

.lz-devis-modal *,
.lz-devis-modal *::before,
.lz-devis-modal *::after {
    box-sizing: border-box;
}

.lz-devis-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(21, 39, 56, 0.05);
    color: #506069;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.lz-devis-modal__close:hover {
    background: rgba(21, 39, 56, 0.12);
    color: #152738;
    transform: rotate(90deg);
}

.lz-devis-modal__icon {
    margin: 0 auto 24px;
    width: 92px;
    height: 92px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.lz-devis-modal__icon::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.08);
    z-index: -1;
    animation: lz-devis-modal-pulse 2s ease-out infinite;
}

@keyframes lz-devis-modal-pulse {
    0%   { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

.lz-devis-modal__icon svg {
    width: 72px;
    height: 72px;
}

.lz-devis-modal__circle {
    stroke: #22c55e;
    stroke-dasharray: 220;
    stroke-dashoffset: 220;
    animation: lz-devis-modal-circle 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.lz-devis-modal__check {
    stroke: #22c55e;
    stroke-dasharray: 80;
    stroke-dashoffset: 80;
    animation: lz-devis-modal-check 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.7s forwards;
}

@keyframes lz-devis-modal-circle { to { stroke-dashoffset: 0; } }
@keyframes lz-devis-modal-check  { to { stroke-dashoffset: 0; } }

.lz-devis-modal__title {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #152738;
    letter-spacing: -0.02em;
    margin: 0 0 12px;
    line-height: 1.2;
}

.lz-devis-modal__text {
    font-size: 0.98rem;
    line-height: 1.6;
    color: #506069;
    margin: 0 0 28px;
}

.lz-devis-modal__info {
    background: #f7f8f9;
    border-radius: 10px;
    padding: 16px 18px;
    margin-bottom: 24px;
    text-align: left;
}

.lz-devis-modal__info-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
    font-size: 0.9rem;
    color: #2d3a4a;
    line-height: 1.5;
}

.lz-devis-modal__info-row svg {
    flex-shrink: 0;
    color: #152738;
}

.lz-devis-modal__info-row a {
    color: #152738;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid rgba(21, 39, 56, 0.2);
    transition: border-color 0.2s ease;
}

.lz-devis-modal__info-row a:hover {
    border-bottom-color: #152738;
}

.lz-devis-modal__btn {
    width: 100%;
    padding: 14px 24px;
    background: #152738;
    color: #ffffff;
    border: none;
    border-radius: 100px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.lz-devis-modal__btn:hover {
    background: #1f3a5c;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px -6px rgba(21, 39, 56, 0.35);
}

.lz-devis-modal__btn:active {
    transform: translateY(0);
}

@media (max-width: 600px) {
    .lz-devis-modal {
        padding: 40px 24px 28px;
        max-width: 100%;
    }
    .lz-devis-modal__icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    .lz-devis-modal__icon svg {
        width: 60px;
        height: 60px;
    }
    .lz-devis-modal__title { font-size: 1.35rem; }
    .lz-devis-modal__text  { font-size: 0.9rem; }
}

@media (prefers-reduced-motion: reduce) {
    .lz-devis-modal-backdrop,
    .lz-devis-modal,
    .lz-devis-modal__circle,
    .lz-devis-modal__check,
    .lz-devis-modal__icon::before {
        transition: none !important;
        animation: none !important;
        stroke-dashoffset: 0 !important;
    }
}
