/* ===== Lead Magnet - Styles Popup - Palette Sensathé ===== 10/06/2026 */

/* Overlay */
.lm-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

/* Popup */
.lm-popup {
    background: #ffffff;
    max-width: 460px;
    width: 100%;
    padding: 40px 36px 32px;
    position: relative;
    border-top: 4px solid #516244;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    text-align: center;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

/* Bouton fermeture */
.lm-close {
    position: absolute;
    top: 12px; right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s;
}
.lm-close:hover {
    color: #516244;
}

/* Icône */
.lm-icon {
    font-size: 36px;
    margin-bottom: 12px;
    line-height: 1;
}

/* Titre */
.lm-title {
    font-size: 20px;
    color: #516244;
    margin: 0 0 10px;
    font-weight: 700;
    line-height: 1.3;
}

/* Sous-titre */
.lm-subtitle {
    font-size: 14px;
    color: #555;
    margin: 0 0 22px;
    line-height: 1.5;
}

/* Champs */
.lm-input {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #d3dbb8;
    background: #f5f7f3;
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s;
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
}
.lm-input:focus {
    border-color: #516244;
    background: #fff;
}
.lm-input::placeholder {
    color: #aaa;
}

/* Bouton principal */
.lm-btn {
    display: block;
    width: 100%;
    padding: 13px 20px;
    background: #516244;
    color: #ffffff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 4px;
    transition: background 0.2s;
    letter-spacing: 0.3px;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
}
.lm-btn:hover {
    background: #3d4d33;
    color: #fff;
    text-decoration: none;
}
.lm-btn:disabled {
    opacity: 0.7;
    cursor: default;
}

/* Mention légale */
.lm-legal {
    font-size: 11px;
    color: #aaa;
    margin: 10px 0 0;
}

/* Succès */
.lm-success-icon {
    width: 56px; height: 56px;
    background: #e6f1d7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #516244;
    margin: 0 auto 16px;
}
.lm-success-msg {
    font-size: 15px;
    color: #333;
    margin: 0 0 20px;
    line-height: 1.5;
}
.lm-btn-download {
    display: inline-block;
    width: auto;
    padding: 12px 24px;
}

/* Responsive mobile */
@media (max-width: 480px) {
    .lm-popup {
        padding: 30px 20px 24px;
    }
    .lm-title {
        font-size: 17px;
    }
}
