html, body {
    font-family: 'Outfit', sans-serif;
}

.iq-hero-left *:focus,
.iq-hero-left *:focus-visible {
    outline: none;
}

.iq-pricing-hero *:focus,
.iq-pricing-hero *:focus-visible {
    outline: none;
}

.iq-help-title *:focus,
.iq-help-title *:focus-visible {
    outline: none;
}

/* =========================
   FOOTER
   ========================= */

.iq-footer {
    background-color: #0D0C22;
    color: #e5edf7;
    padding: 40px 0 24px;
    margin-top: 40px;
    font-size: 14px;
}

.iq-footer a {
    color: #e5edf7;
    text-decoration: none;
}

.iq-footer a:hover {
    text-decoration: underline;
}

/* Верхняя часть футера */

.iq-footer-top {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.iq-footer-col {
    min-width: 200px;
}

.iq-footer-brand {
    max-width: 260px;
}

/* Лого в футере */

.iq-footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.iq-footer-logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 2px solid #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.iq-footer-logo-text {
    font-weight: 700;
    font-size: 20px;
}

/* Соц. сети */

.iq-footer-social {
    display: flex;
    gap: 14px;
    font-size: 20px;
}

.iq-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Заголовки и списки */

.iq-footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.iq-footer-list {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
}

.iq-footer-list li + li {
    margin-top: 6px;
}

/* Две колонки справа (Legal + About Us) */

.iq-footer-links {
    display: flex;
    gap: 40px;
}

/* Кнопка поддержки */

.iq-footer-support-btn {
    margin-top: 16px;
    border-radius: 999px;
    padding: 10px 18px;
    border: 1.5px solid #ffffff;
    background: transparent;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.iq-footer-support-btn:hover {
    background-color: #ffffff;
    color: #021a35;
    border-color: #ffffff;
}

.iq-footer-support-icon {
    width: 35px;
    height: 35px;
    border-radius: 999px;
    border: 1px solid currentColor;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* Разделитель */

.iq-footer-divider {
    border-top: 1px solid rgba(148, 163, 184, 0.35);
    margin: 28px 0 18px;
}

/* Нижняя полоса */

.iq-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
}

.iq-footer-copy p {
    margin: 0;
    line-height: 1.5;
}

.iq-footer-copy p + p {
    margin-top: 4px;
}

/* Правая часть: язык + платежные системы */

.iq-footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

.iq-lang-switcher {
    border-radius: 999px;
    padding: 8px 14px;
    border: 1px solid #e5edf7;
    background: transparent;
    color: #e5edf7;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
}

.iq-payment-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 26px;
}

/* Адаптив для футера */

@media (max-width: 992px) {
    .iq-footer-links {
        gap: 24px;
    }

    .iq-footer-bottom-right {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .iq-footer-top {
        flex-direction: column;
        gap: 32px;
    }

    .iq-footer-links {
        justify-content: space-between;
    }

    .iq-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .iq-footer-bottom-right {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .iq-footer {
        padding: 32px 0 20px;
    }

    .iq-footer-links {
        flex-direction: column;
    }

    .iq-payment-icons {
        font-size: 22px;
    }
}