.sticky {
    display: none;
}

@media (max-width: 1030px) {
    .sticky {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9000;
        display: block;
        width: 100%;
        padding-bottom: env(safe-area-inset-bottom);
        background: rgba(255, 255, 255, 0.97);
        border-top: 1px solid var(--color-border);
        box-shadow: 0 -6px 22px rgba(0, 0, 0, 0.13);
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
    }

    .sticky-promo {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
        padding: 6px 10px;
        background: var(--color-background-tint);
        color: var(--color-text-primary);
        font-size: 12px;
        font-weight: 600;
        white-space: nowrap;
    }

    .sticky-promo b {
        margin: 0 1px;
        color: var(--color-brand-emphasis);
        font-family: var(--font-family-accent);
        font-size: 14px;
        font-weight: 800;
    }

    .sticky-slash {
        margin: 0 5px;
        color: var(--color-brand-emphasis);
        font-size: 16px;
        font-weight: 800;
    }

    .sticky-buttons {
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        gap: 8px;
        padding: 8px 12px;
        background: var(--color-background-tint);
    }

    .sticky a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        height: 52px;
        border-radius: 11px;
        font-weight: 700;
        text-decoration: none;
        transition: filter 0.15s;
    }

    .sticky a:active {
        filter: brightness(0.95);
    }

    .sticky-tel {
        background: var(--color-brand-primary-dark);
        box-shadow: 0 4px 14px var(--color-tel-shadow);
        color: var(--color-surface);
    }

    .sticky-tel svg {
        flex: 0 0 24px;
        width: 24px;
        height: 24px;
        fill: var(--color-surface);
    }

    .sticky-tel-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        line-height: 1.2;
    }

    .sticky-tel-text b {
        font-size: 13.5px;
    }

    .sticky-tel-text i {
        color: var(--color-tel-note);
        font-size: 8.5px;
        font-style: normal;
        font-weight: 500;
        white-space: nowrap;
    }

    .sticky-document {
        border: 1.5px solid var(--color-brand-primary);
        background: var(--color-surface);
        color: var(--color-brand-primary-dark);
        font-size: 14px;
    }

    .sticky-document svg {
        flex: 0 0 21px;
        width: 21px;
        height: 21px;
        fill: currentColor;
    }
}
