body[data-page="home"] .container main p:first-child {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 .5rem var(--black-75);
}

body[data-page="home"] .container main .btn#call img#normal {
    opacity: 1;
}

body[data-page="home"] .container main .btn#call img#hover {
    opacity: 0;
}

body[data-page="home"] .container main .btn#call:hover img#normal {
    opacity: 0;
}

body[data-page="home"] .container main .btn#call:hover img#hover {
    opacity: 1;
}

body[data-page="home"] .container main .btn#message img#normal {
    opacity: 1;
}

body[data-page="home"] .container main .btn#message img#hover {
    opacity: 0;
}

body[data-page="home"] .container main .btn#message:hover img#normal {
    opacity: 0;
}

body[data-page="home"] .container main .btn#message:hover img#hover {
    opacity: 1;
}

body[data-page="home"] .lb {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px;
    background: var(--overlay-dark-94);
    z-index: 9999;
}

body[data-page="home"] .lb.is-hidden {
    display: none;
}

body[data-page="home"] .lb .lb__card {
    width: 100%;
    max-width: 420px;
    background-color: var(--black);
    border: 1px solid var(--white-06);
    border-radius: 16px;
    padding: 20px 18px;
    box-shadow: 0 0 40px var(--shadow-dark-60);
    animation: lbIn .22s ease;
}

body[data-page="home"] .lb .lb__header {
    margin-bottom: 12px;
}

body[data-page="home"] .lb .lb__title {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-strong);
    line-height: 1.2;
}

body[data-page="home"] .lb .lb__subtitle {
    margin-top: 8px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.35;
}

body[data-page="home"] .lb .lb__actions {
    margin-top: 14px;
}

body[data-page="home"] .lb .lb__actions .btn {
    width: 100%;
    padding: 12px 14px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .12s ease, background .12s ease;
}

body[data-page="home"] .lb .lb__actions .btn:active {
    transform: scale(.99);
}

body[data-page="home"] .lb .lb__actions .btn.btn--danger {
    background: var(--red);
    color: var(--text-strong);
}

body[data-page="home"] .lb .lb__actions .btn.btn--danger:hover {
    background: var(--red-dark);
}

@keyframes lbIn {
    from { opacity: 0; transform: scale(.97); }
    to { opacity: 1; transform: scale(1); }
}
