/* Light-to-dark bridge before footer */
.footer-bridge {
    height: 56px;
    background: linear-gradient(180deg, #f8fafc 0%, #cbd5e1 38%, #475569 72%, #1e293b 100%);
    margin: 0;
    padding: 0;
    border: none;
}

/* Scoped footer styles — high specificity for Tailwind compatibility */
footer.site-footer {
    position: relative;
    z-index: 1;
    background: #1e293b;
    border-top: 3px solid #10b981;
    padding: 32px 20px 24px;
    margin-top: 0;
}
footer.site-footer .site-footer-columns {
    max-width: 1140px;
    margin: 0 auto;
}
footer.site-footer .site-footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
}
@media (min-width: 768px) {
    footer.site-footer .site-footer-inner {
        text-align: left;
        grid-template-columns: 1fr 1fr 1.15fr;
        gap: 32px;
        align-items: start;
    }
}
footer.site-footer h3 {
    color: #f8fafc;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 12px;
    padding: 0;
    border: none;
}
footer.site-footer h3::after {
    content: "";
    display: block;
    width: 32px;
    height: 2px;
    background: #10b981;
    margin-top: 8px;
    border-radius: 1px;
}
footer.site-footer .footer-tagline {
    color: #94a3b8;
    font-size: 0.84rem;
    line-height: 1.65;
    margin: 0 0 12px;
    max-width: 300px;
}
@media (max-width: 767px) {
    footer.site-footer .footer-tagline {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }
}
footer.site-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
footer.site-footer .footer-links li {
    margin-bottom: 7px;
}
footer.site-footer .footer-links a {
    color: #cbd5e1 !important;
    text-decoration: none !important;
    font-size: 0.84rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}
footer.site-footer .footer-links a::before {
    content: "›";
    color: #10b981;
    font-weight: 700;
}
footer.site-footer .footer-links a:hover {
    color: #10b981 !important;
}
footer.site-footer .footer-links a.footer-link-highlight {
    color: #6ee7b7 !important;
    font-weight: 600;
}
footer.site-footer .footer-links a.footer-link-highlight::before {
    content: "★";
    color: #6ee7b7;
}
footer.site-footer .footer-links a.footer-link-play::before {
    content: none;
}
footer.site-footer .footer-links a.footer-link-play .fa-google-play {
    color: #34a853;
    font-size: 0.95rem;
    flex-shrink: 0;
}
footer.site-footer .footer-contact-block {
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: left;
}
@media (max-width: 767px) {
    footer.site-footer .footer-contact-block {
        max-width: 320px;
        margin: 0 auto;
    }
}
footer.site-footer .footer-contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
footer.site-footer .footer-contact-item > i {
    color: #10b981;
    font-size: 0.85rem;
    margin-top: 3px;
    width: 16px;
    flex-shrink: 0;
    text-align: center;
}
footer.site-footer .item-label {
    display: block;
    color: #e2e8f0;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}
footer.site-footer .item-text {
    color: #94a3b8;
    font-size: 0.84rem;
    line-height: 1.6;
    margin: 0;
}
footer.site-footer .item-text a {
    color: #cbd5e1 !important;
    text-decoration: none !important;
}
footer.site-footer .item-text a:hover {
    color: #10b981 !important;
}
footer.site-footer .footer-phones {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
footer.site-footer .footer-phones a {
    color: #cbd5e1 !important;
    text-decoration: none !important;
    font-size: 0.84rem;
}
footer.site-footer .footer-phones a:hover {
    color: #10b981 !important;
}
footer.site-footer .phone-tag {
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #10b981;
    background: rgba(16, 185, 129, 0.15);
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 4px;
}
footer.site-footer .site-footer-bottom {
    max-width: 1140px;
    margin: 24px auto 0;
    padding-top: 18px;
    border-top: 1px solid #334155;
    text-align: center;
    color: #64748b;
    font-size: 0.78rem;
}
