.site-footer {
    position: relative;
    margin-top: 70px;
    padding: 52px 0 24px;
    width: 100%;
    background:
        radial-gradient(circle at top left, rgba(139, 92, 246, 0.14), transparent 34%),
        radial-gradient(circle at bottom right, rgba(236, 72, 153, 0.12), transparent 30%),
        var(--surface);
    border-top: 1px solid var(--border);
    overflow: hidden;
}

.footer-wrapper {
    width: 100%;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

.footer-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(85px);
    opacity: 0.22;
    pointer-events: none;
}

.footer-glow-one {
    width: 260px;
    height: 260px;
    background: rgba(139, 92, 246, 0.45);
    top: -100px;
    left: -80px;
}

.footer-glow-two {
    width: 280px;
    height: 280px;
    background: rgba(236, 72, 153, 0.35);
    bottom: -120px;
    right: -90px;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    gap: 52px;
    align-items: start;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.footer-brand img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-brand-name {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.footer-brand-text small {
    color: var(--muted);
    font-size: 0.92rem;
}

.footer-brand-description {
    color: var(--muted);
    line-height: 1.85;
    max-width: 460px;
    margin-bottom: 22px;
}

.footer-legal-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 2px;
}

.footer-legal-row a {
    padding: 11px 16px;
    border-radius: 999px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 600;
    transition: 0.25s ease;
}

.footer-legal-row a:hover {
    transform: translateY(-2px);
    color: var(--primary);
    border-color: rgba(139, 92, 246, 0.35);
}

.footer-location-column h3,
.footer-links-column h3 {
    font-size: 1.12rem;
    margin-bottom: 16px;
    letter-spacing: 0.01em;
}

.footer-muted {
    color: var(--muted);
    margin-bottom: 18px;
    line-height: 1.8;
    max-width: 370px;
}

.footer-map-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-weight: 700;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, opacity 0.25s ease;
    margin-bottom: 22px;
}

.footer-map-btn:hover {
    transform: translateY(-2px);
    opacity: 0.96;
}

.footer-contact-list {
    display: grid;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding-bottom: 2px;
}

.footer-contact-icon {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-contact-item small {
    display: block;
    color: var(--muted);
    margin-bottom: 4px;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-contact-item a {
    color: var(--text);
    font-weight: 700;
    font-size: 1rem;
    word-break: break-word;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 22px;
}

.footer-links-grid a {
    color: var(--muted);
    font-weight: 600;
    transition: 0.25s ease;
    position: relative;
    padding-left: 15px;
    line-height: 1.5;
}

.footer-links-grid a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.78em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: translateY(-50%);
}

.footer-links-grid a:hover {
    color: var(--text);
    transform: translateX(3px);
}

.footer-bottom-bar {
    margin-top: 38px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-copyright {
    color: var(--muted);
    font-size: 0.95rem;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-socials a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--surface-2);
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s ease;
    color: var(--text);
}

.footer-socials a:hover {
    transform: translateY(-3px);
    color: var(--primary);
    border-color: rgba(139, 92, 246, 0.35);
}

.footer-apps {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.store-badge:hover {
    transform: translateY(-2px);
    opacity: 0.96;
}

.footer-apps img {
    height: 46px;
    width: auto;
    display: block;
}

@media (max-width: 1100px) {
    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .footer-wrapper {
        padding: 0 24px;
    }

    .footer-bottom-bar {
        gap: 16px;
    }
}

@media (max-width: 560px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
    }

    .footer-legal-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-apps img {
        height: 42px;
    }
}