.cu-footer {
    --cu-footer-bg: #f4f7fb;
    --cu-footer-surface: #ffffff;
    --cu-footer-border: #e2e8f0;
    --cu-footer-text: #0f172a;
    --cu-footer-muted: #64748b;
    --cu-footer-accent: #0974ba;
    --cu-footer-green: #1dac8e;
    margin-top: 80px;
    color: var(--cu-footer-text);
    font-family: "CuristicRegular", sans-serif;
}

.cu-footer__accent {
    height: 4px;
    background: linear-gradient(90deg, var(--cu-footer-accent) 0%, var(--cu-footer-green) 100%);
}

.cu-footer__main {
    background: var(--cu-footer-bg);
    padding: 56px 0 48px;
    border-top: 1px solid var(--cu-footer-border);
}

.cu-footer__container {
    max-width: 1120px;
    margin: 0 auto;
    padding-inline: 24px;
}

.cu-footer__grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 64px;
}

.cu-footer__brand {
    flex: 0 1 380px;
    max-width: 380px;
}

.cu-footer__brand-logo {
    width: 200px;
    height: auto;
    margin-bottom: 18px;
    display: block;
}

.cu-footer__tagline {
    color: var(--cu-footer-muted);
    font-size: 15px;
    line-height: 1.65;
    margin: 0 0 22px;
}

.cu-footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.cu-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--cu-footer-text);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
}

.cu-footer__contact-item i {
    color: var(--cu-footer-accent);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.cu-footer__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 12px;
    background: var(--cu-footer-accent);
    color: #fff;
    font-family: "CuristicBold", sans-serif;
    font-size: 14px;
    line-height: 1.2;
    text-decoration: none;
}

.cu-footer__cta:hover {
    color: #fff;
}

.cu-footer__nav {
    flex: 1 1 auto;
    display: grid;
    grid-template-columns: minmax(140px, 200px) minmax(220px, 320px) minmax(140px, 220px);
    justify-content: end;
    gap: 48px 48px;
    padding-top: 6px;
}

.cu-footer__heading {
    color: var(--cu-footer-text);
    font-family: "CuristicBold", sans-serif;
    font-size: 15px;
    line-height: 1.3;
    margin: 0 0 18px;
    letter-spacing: 0.02em;
}

.cu-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cu-footer__links li + li {
    margin-top: 11px;
}

.cu-footer__link {
    color: var(--cu-footer-muted);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    display: inline-block;
    transition: color 0.2s ease, transform 0.2s ease;
}

.cu-footer__link:hover {
    color: var(--cu-footer-accent);
    transform: translateX(4px);
}

html[dir="rtl"] .cu-footer__link:hover {
    transform: translateX(-4px);
}

.cu-footer__bottom {
    background: var(--cu-footer-surface);
    border-top: 1px solid var(--cu-footer-border);
    padding: 20px 0;
}

.cu-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cu-footer__copyright {
    margin: 0;
    color: var(--cu-footer-muted);
    font-size: 13px;
    line-height: 1.5;
}

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

.cu-footer__social-link {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid var(--cu-footer-border);
    background: var(--cu-footer-surface);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cu-footer__social-link img {
    width: 17px;
    height: 17px;
}

@media (max-width: 991px) {
    .cu-footer__grid {
        flex-direction: column;
        gap: 40px;
    }

    .cu-footer__brand {
        flex: none;
        max-width: none;
    }

    .cu-footer__nav {
        width: 100%;
        justify-content: flex-start;
        gap: 40px 48px;
        padding-top: 0;
    }
}

@media (max-width: 767px) {
    .cu-footer {
        margin-top: 56px;
    }

    .cu-footer__main {
        padding: 44px 0 36px;
    }

    .cu-footer__container {
        padding-inline: 20px;
    }

    .cu-footer__nav {
        grid-template-columns: 1fr 1fr;
        gap: 32px 24px;
    }

    .cu-footer__bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
}

@media (max-width: 480px) {
    .cu-footer__nav {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}
