#leadPopup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.close-btn {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 30px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover {
    color: #00a2ff;
}

.popup-title {
    color: #00a2ff;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.popup-subtitle {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 30px;
    font-size: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 16px;
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #00a2ff;
    background: rgba(255, 255, 255, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #00a2ff, #00d2ff);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

#successMessage {
    display: none;
    text-align: center;
    color: #00a2ff;
    padding: 20px;
}

.privacy-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    text-align: center;
    margin-top: 20px;
}

.privacy-text a {
    color: #00a2ff;
    text-decoration: none;
}

.privacy-text a:hover {
    text-decoration: underline;
}

/* Stile mobile per il popup */
@media (max-width: 768px) {
    .popup-content {
        width: 95%;
        padding: 20px;
        margin: 10px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .popup-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .popup-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .form-group input {
        padding: 10px;
        font-size: 14px;
    }

    .submit-btn {
        padding: 12px;
        font-size: 14px;
    }

    .close-btn {
        right: 15px;
        top: 15px;
        font-size: 24px;
    }

    .privacy-text {
        font-size: 11px;
        margin-top: 15px;
    }
}