.site-footer {
    margin-top: 28px;
    background: linear-gradient(135deg, #fafafa 0%, #eef4ff 55%, #e6f0ff 100%);
    color: #1f2937;
    border-top: 1px solid rgba(148, 163, 184, 0.24);
}

.site-footer__inner {
    width: min(1480px, 100%);
    box-sizing: border-box;
    margin: 0 auto;
    padding: 28px 24px 18px;
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 28px;
    align-items: start;
}

.site-footer__brand {
    display: grid;
    gap: 12px;
    max-width: 420px;
}

.site-footer__logo {
    display: inline-flex;
    align-items: center;
    width: fit-content;
}

.site-footer__logo img {
    display: block;
    max-width: 100%;
    height: auto;
}

.site-footer__brand p {
    margin: 0;
    color: #475569;
    line-height: 1.7;
}

.site-footer__links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.site-footer__group {
    display: grid;
    gap: 10px;
}

.site-footer__group h4 {
    margin: 0;
    color: #1f2937;
    font-size: 0.98rem;
    font-weight: 800;
}

.site-footer__group ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.site-footer__group a {
    color: #475569;
    font-weight: 600;
}

.site-footer__group a:hover {
    color: #0f766e;
}

.site-footer__social {
    display: grid;
    gap: 10px;
}

.site-footer__social h4 {
    margin: 0;
    color: #1f2937;
    font-size: 0.98rem;
    font-weight: 800;
}

.site-footer__social p {
    margin: 0;
    color: #475569;
    line-height: 1.7;
}

.site-footer__social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.site-footer__social-row a {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border-radius: 10px;
    border: 1px solid rgba(59, 89, 152, 0.18);
    background: rgba(59, 89, 152, 0.08);
    color: #1877f2;
    font-size: 1rem;
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.site-footer__social-row a:hover {
    color: #ffffff;
    background: #1877f2;
    border-color: #1877f2;
    transform: translateY(-1px);
}

.site-footer__bottom {
    width: min(1480px, 100%);
    box-sizing: border-box;
    margin: 0 auto;
    padding: 14px 24px 24px;
    border-top: 1px solid rgba(148, 163, 184, 0.22);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    color: #64748b;
    font-size: 0.88rem;
}

.site-footer__bottom p {
    margin: 0;
}

.page-info-card {
    width: min(1480px, 100%);
    box-sizing: border-box;
    margin: 24px auto 0;
    padding: 22px 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
    border: 1px solid rgba(148, 163, 184, 0.20);
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.page-info-card__inner {
    display: grid;
    gap: 14px;
}

.page-info-card__links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.page-info-card__links a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 999px;
    color: #0f766e;
    background: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.page-info-card__links a:hover {
    color: #0b5d57;
    background: #ffffff;
    border-color: rgba(15, 118, 110, 0.28);
}

.page-info-card h2 {
    margin: 0;
    color: #1f2937;
    font-size: 1.15rem;
    font-weight: 800;
}

.page-info-card h3 {
    margin: 0;
    color: #1f2937;
    font-size: 0.98rem;
    font-weight: 800;
}

.page-info-card p {
    margin: 0;
    color: #475569;
    line-height: 1.7;
}

.page-info-card ol {
    margin: 0;
    padding-left: 1.2rem;
    display: grid;
    gap: 8px;
    color: #334155;
    line-height: 1.65;
}

.page-info-card li strong {
    color: #0f766e;
}

@media (max-width: 1120px) {
    .site-footer__inner,
    .site-footer__links {
        grid-template-columns: 1fr;
    }

    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .site-footer__inner,
    .site-footer__bottom,
    .page-info-card {
        padding-left: 18px;
        padding-right: 18px;
    }

    .page-info-card {
        margin-top: 18px;
        padding-top: 18px;
        padding-bottom: 18px;
        border-radius: 18px;
    }

    .page-info-card__links {
        gap: 8px;
    }

    .page-info-card__links a {
        width: 100%;
        justify-content: center;
    }

    .site-footer__social-row a {
        width: 100%;
        justify-content: center;
    }
}
