.wpcf7-response-output {
    display: none !important;
}

.mdp-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    padding: 20px;
}

.mdp-modal-overlay.mdp-active {
    display: flex;
}

.mdp-modal-box {
    position: relative;
    background: #ffffff;
    width: 100%;
    max-width: 420px;
    border-radius: 22px;
    padding: 34px 28px 30px;
    text-align: center;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.25);
    font-family: inherit;
    animation: mdpModalIn 0.25s ease;
}

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

.mdp-modal-x {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 42px;
    height: 30px;
    border: 0;
    border-radius: 999px;
    background: #f45f78;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.mdp-modal-x .mdp-lucide-icon {
    width: 16px;
    height: 16px;
    stroke-width: 3;
}

.mdp-modal-box #mdp-modal-title {
    margin: 0 0 12px !important;
    font-size: 34px !important;
    line-height: 1.12 !important;
    font-weight: 700 !important;
    color: #3f4650;
}

.mdp-modal-box p {
    margin: 0 0 24px;
    font-size: 16px;
    line-height: 1.5;
    color: #5f6670;
}

.mdp-modal-close {
    width: 100%;
    max-width: 220px;
    min-height: 48px;
    background: #f45f78;
    color: #ffffff;
    border: 0;
    border-radius: 999px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mdp-modal-close .mdp-lucide-icon {
    width: 18px;
    height: 18px;
    stroke-width: 2.6;
}

.mdp-lucide-icon {
    display: block;
    flex: 0 0 auto;
}

.mdp-modal-close:hover,
.mdp-modal-x:hover {
    filter: brightness(0.96);
}

body.mdp-modal-open {
    overflow: hidden;
}

@media (max-width: 480px) {
    .mdp-modal-box {
        padding: 32px 22px 26px;
    }
    .mdp-modal-box #mdp-modal-title {
        font-size: 31px !important;
    }
    .mdp-modal-box p {
        font-size: 15px;
    }
}
