.footer-section {
    position: relative;
    margin-top: 14px;
    padding: 42px 34px 22px;
    min-height: 620px;
    border-radius: 30px;
    overflow: hidden;
    color: #f4f6fb;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(120deg, rgba(35, 56, 108, 0.16), rgba(35, 56, 108, 0) 40%),
        linear-gradient(240deg, rgba(30, 51, 102, 0.12), rgba(30, 51, 102, 0) 42%),
        linear-gradient(180deg, #0e111a 0%, #0a0c13 100%);
    box-shadow:
        0 38px 58px -44px rgba(0, 0, 0, 0.9),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.footer-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 24%);
}

.footer-top {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: start;
}

.footer-logo {
    position: relative;
    width: max-content;
    border-radius: 999px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.footer-logo::before {
    content: "";
    position: absolute;
    inset: -18px -22px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.26) 52%, rgba(255, 255, 255, 0) 82%),
        radial-gradient(circle at 40% 62%, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 62%);
    filter: blur(12px);
    opacity: 0.98;
    pointer-events: none;
}

.footer-logo::after {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.04));
    pointer-events: none;
    z-index: 0;
}

.footer-logo {
    display: inline-block;
}

.footer-logo img {
    position: relative;
    z-index: 1;
    width: 170px;
    max-width: 100%;
    display: block;
    filter: drop-shadow(0 4px 10px rgba(255, 255, 255, 0.15)) saturate(1.05) contrast(1.08);
}

.footer-cols {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.footer-col {
    padding: 8px 2px 10px;
}

.footer-col h4 {
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #ffffff;
}

.footer-col a {
    display: block;
    margin-bottom: 8px;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.35;
    color: #cfd4df;
    transition: color 0.22s ease, transform 0.22s ease;
}

.footer-col a:hover {
    color: #ffffff;
    transform: translateX(2px);
}

.footer-col p {
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 1.35;
    color: #dbe0e9;
}

.footer-wordmark {
    position: relative;
    z-index: 1;
    margin: 30px auto 0;
    width: 100%;
    text-align: center;
    line-height: 0.82;
    font-size: clamp(150px, 23vw, 380px);
    letter-spacing: 0.08em;
    font-weight: 800;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.94) 0%, rgba(241, 247, 255, 0.84) 28%, rgba(187, 206, 241, 0.4) 60%, rgba(149, 172, 213, 0.1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 12px 32px rgba(205, 220, 246, 0.12);
}

.footer-bottom {
    position: relative;
    z-index: 2;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    text-align: center;
    font-size: 14px;
    color: #e8edf7;
}

@media (max-width: 1180px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .footer-cols {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-wordmark {
        font-size: clamp(120px, 22vw, 250px);
        letter-spacing: 0.06em;
    }
}

@media (max-width: 768px) {
    .footer-section {
        min-height: 0;
        padding: 28px 18px 16px;
        border-radius: 24px;
    }

    .footer-logo {
        margin: 0 auto;
    }

    .footer-logo img {
        width: 152px;
    }

    .footer-wordmark {
        margin-top: 18px;
        font-size: clamp(88px, 24vw, 170px);
        letter-spacing: 0.04em;
    }
}

@media (max-width: 560px) {
    .footer-cols {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .footer-wordmark {
        font-size: clamp(72px, 22vw, 124px);
        letter-spacing: 0.03em;
    }
}
