/* Public Footer */
/* Footer */
.home-footer {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    color: var(--home-muted);
    background: #080809;
}

.home-footer::before {
    position: absolute;
    top: -1px;
    left: 8%;
    width: 22%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--home-gold), transparent);
    content: '';
    opacity: 0.65;
}

.home-footer__grid {
    display: grid;
    grid-template-columns: minmax(250px, 1.4fr) repeat(3, minmax(130px, 0.7fr));
    gap: clamp(2rem, 5vw, 5rem);
    padding-block: 58px 46px;
}

.home-footer__brand>a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--home-text);
    text-decoration: none;
}

.home-footer__brand img {
    border-radius: 50%;
}

.home-footer__brand span {
    display: grid;
    gap: 2px;
}

.home-footer__brand strong {
    font-size: 1.05rem;
}

.home-footer__brand small {
    color: #6d6f74;
    font-size: 0.65rem;
}

.home-footer__brand>p {
    max-width: 290px;
    margin: 18px 0 0;
    color: #73757a;
    font-size: 0.8rem;
    line-height: 1.65;
}

.home-footer__column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
}

.home-footer__column h2 {
    margin: 0 0 7px;
    color: #d8d9dc;
    font-size: 0.76rem;
    font-weight: 750;
    letter-spacing: 0.06em;
}

.home-footer__column a,
.home-footer__column>span {
    color: #85878c;
    font-size: 0.76rem;
    line-height: 1.5;
    text-decoration: none;
}

.home-footer__column a:hover {
    color: var(--home-text);
}

.home-footer__column .is-disabled {
    display: flex;
    align-items: center;
    gap: 7px;
    cursor: default;
}

.home-footer__column .is-disabled small {
    padding: 2px 5px;
    border-radius: 3px;
    color: #777980;
    background: #171719;
    font-size: 0.52rem;
}

.home-footer__telegram {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.home-footer__telegram svg {
    width: 16px;
    height: 16px;
    fill: #31a8df;
}

.home-footer__column>p {
    max-width: 190px;
    margin: 2px 0 0;
    color: #62646a;
    font-size: 0.7rem;
    line-height: 1.6;
}

.home-footer__bottom {
    display: flex;
    min-height: 70px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    color: #5f6166;
    font-size: 0.68rem;
}

.home-footer__bottom p {
    margin: 0;
}

/* Telegram Floating Button */
.telegram-float {
    position: fixed;
    bottom: 22px;
    right: 22px;
    z-index: 900;
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    gap: 9px;
    padding: 0 17px 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.19);
    border-radius: 999px;
    color: #fff;
    background: #229ed9;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.42), 0 5px 16px rgba(34, 158, 217, 0.2);
    font-size: 0.78rem;
    font-weight: 750;
    text-decoration: none;
    transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.telegram-float:hover {
    color: #fff;
    background: #2aabee;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.48), 0 6px 20px rgba(34, 158, 217, 0.28);
    transform: translateY(-3px);
}

.telegram-float svg {
    width: 23px;
    height: 23px;
    fill: currentColor;
}


.home-footer a:focus-visible, .telegram-float:focus-visible { outline:2px solid var(--home-gold); outline-offset:4px; }
@media (max-width:1080px) { .home-footer__grid { grid-template-columns:minmax(230px,1.2fr) repeat(3,minmax(115px,.7fr)); gap:2.5rem; } }
@media (max-width:960px) { .home-footer__grid { grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media (max-width:560px) { .home-footer__grid { grid-template-columns:minmax(0,1fr); gap:2rem; padding-block:44px 34px; } .home-footer__bottom { align-items:flex-start; flex-direction:column; justify-content:center; gap:6px; padding-block:18px; } .telegram-float { bottom:14px; right:14px; min-width:50px; min-height:50px; justify-content:center; padding:0; } .telegram-float span { display:none; } }
@media (prefers-reduced-motion: reduce) { .telegram-float { transition:none; } .telegram-float:hover { transform:none; } }
