.wf-contact-backdrop {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    place-items: center;
    padding: 20px;
    background: rgba(15, 23, 42, 0.78);
    backdrop-filter: blur(8px);
}

.wf-contact-backdrop.is-open {
    display: grid;
}

.wf-contact-dialog {
    position: relative;
    width: min(100%, 620px);
    max-height: min(760px, calc(100vh - 40px));
    overflow-y: auto;
    border: 1px solid rgba(20, 184, 166, 0.35);
    border-radius: 22px;
    background: #fff;
    color: #0f172a;
    box-shadow: 0 28px 90px rgba(15, 23, 42, 0.32);
}

.wf-contact-dialog__body {
    padding: 34px;
}

.wf-contact-dialog__badge {
    display: inline-flex;
    margin-bottom: 14px;
    border-radius: 999px;
    padding: 6px 11px;
    background: rgba(20, 184, 166, 0.12);
    color: #0f766e;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.wf-contact-dialog h2 {
    margin: 0 44px 10px 0;
    font-size: clamp(26px, 5vw, 36px);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.wf-contact-dialog__intro {
    margin: 0 0 24px;
    color: #64748b;
    line-height: 1.6;
}

.wf-contact-dialog__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    background: #f8fafc;
    color: #334155;
    font: inherit;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.wf-contact-dialog__options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.wf-contact-option {
    display: flex;
    min-height: 170px;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    background: #f8fafc;
    color: #0f172a;
    text-decoration: none;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.wf-contact-option:hover,
.wf-contact-option:focus-visible {
    transform: translateY(-2px);
    border-color: #14b8a6;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
    outline: none;
}

.wf-contact-option--whatsapp {
    border-color: rgba(34, 197, 94, 0.35);
    background: #f0fdf4;
}

.wf-contact-option__icon {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 13px;
    background: #0f172a;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}

.wf-contact-option--whatsapp .wf-contact-option__icon {
    background: #16a34a;
}

.wf-contact-option strong {
    display: block;
    margin-bottom: 5px;
    font-size: 18px;
}

.wf-contact-option span:last-child {
    color: #64748b;
    font-size: 14px;
    line-height: 1.45;
}

.wf-contact-dialog__note {
    margin: 18px 0 0;
    color: #64748b;
    font-size: 12px;
    line-height: 1.5;
}

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

@media (max-width: 620px) {
    .wf-contact-dialog__body {
        padding: 26px 20px 22px;
    }

    .wf-contact-dialog__options {
        grid-template-columns: 1fr;
    }

    .wf-contact-option {
        min-height: 138px;
    }
}

