html {
    scroll-behavior: smooth
}

body.user-page {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: #090b0f;
    color: #fff
}

.user-page *,
.user-page *::before,
.user-page *::after {
    box-sizing: border-box
}

.user-container {
    width: min(calc(100% - 112px), 1440px);
    margin: 0 auto
}

.user-main {
    width: 100%
}

.user-header {
    position: relative;
    z-index: 1000;
    width: 100%;
    background: #080a0d;
    border-top: 1px solid rgba(255, 255, 255, .14);
    border-bottom: 1px solid rgba(255, 255, 255, .03)
}

.user-header__inner {
    min-height: 80px;
    display: grid;
    grid-template-columns: minmax(250px, 1fr) auto minmax(250px, 1fr);
    align-items: center;
    gap: 38px
}

.user-header__brand {
    display: flex;
    align-items: center
}

.user-header__brand-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none
}

.user-header__logo {
    display: block;
    width: auto;
    height: auto;
    max-width: 230px;
    max-height: 46px;
    object-fit: contain
}

.user-header__nav {
    display: flex;
    justify-content: center;
    align-items: center
}

.user-header__menu {
    display: flex;
    align-items: center;
    gap: 42px;
    margin: 0;
    padding: 0;
    list-style: none
}

.user-header__menu a {
    color: #80838a;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: color .2s ease
}

.user-header__menu a:hover {
    color: #fff
}

.user-header__actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px
}

.user-header__languages {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #70737a;
    font-size: 12px
}

.user-header__language {
    color: #70737a !important;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none
}

.user-header__language.active {
    color: #2f80ff
}

.user-header__button {
    min-width: 124px;
    height: 42px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 22px;
    border-radius: 999px;
    background: #2f80ff;
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease
}

.user-header__button:hover {
    background: #4b91ff;
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(47, 128, 255, .22)
}

.user-menu-toggle,
.user-mobile-menu {
    display: none
}

.user-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: radial-gradient(circle at 18% 23%, rgba(20, 52, 96, .20), transparent 35%), linear-gradient(90deg, #0a1019 0%, #090b0f 56%, #08090c 100%)
}

.user-hero__grid {
    min-height: 720px;
    display: grid;
    grid-template-columns: minmax(0, 590px) minmax(520px, 610px);
    justify-content: space-between;
    align-items: center;
    gap: 90px;
    padding: 72px 0 82px
}

.user-hero__content {
    width: 100%;
    max-width: 590px
}

.user-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 30px;
    margin-bottom: 46px;
    padding: 6px 16px;
    border: 1px solid rgba(195, 154, 74, .38);
    border-radius: 999px;
    background: rgba(123, 95, 42, .08);
    color: #b99a63;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase
}

.user-hero__eyebrow-dot {
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    border-radius: 50%;
    background: #d0ac65
}

.user-hero__heading {
    margin: 0 0 28px;
    font-size: clamp(54px, 5vw, 72px);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -.045em
}

.user-hero__heading-primary,
.user-hero__heading-highlight {
    display: block
}

.user-hero__heading-primary {
    color: #f5f6f8
}

.user-hero__heading-highlight {
    margin-top: 8px;
    color: #2f80ff
}

.user-hero__description {
    max-width: 565px;
    margin: 0 0 38px;
    color: #9a9da5;
    font-size: 18px;
    line-height: 1.65
}

.user-hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 34px
}

.user-hero__button {
    min-height: 58px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    padding: 14px 30px;
    border-radius: 9px;
    color: #fff !important;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none !important;
    transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease
}

.user-hero__button--primary {
    min-width: 268px;
    background: #2f80ff;
    border: 1px solid #2f80ff
}

.user-hero__button--secondary {
    min-width: 205px;
    background: rgba(255, 255, 255, .01);
    border: 1px solid rgba(255, 255, 255, .10)
}

.user-hero__button:hover {
    transform: translateY(-2px)
}

.user-hero__button--primary:hover {
    background: #4b91ff;
    box-shadow: 0 14px 34px rgba(47, 128, 255, .20)
}

.user-hero__button--secondary:hover {
    border-color: rgba(255, 255, 255, .24);
    background: rgba(255, 255, 255, .035)
}

.user-hero__social-proof {
    max-width: 485px;
    display: flex;
    align-items: center;
    padding-top: 23px;
    border-top: 1px solid rgba(255, 255, 255, .11)
}

.user-hero__avatars {
    display: flex;
    align-items: center;
    min-width: 142px
}

.user-hero__avatar {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px;
    border: 2px solid #101216;
    border-radius: 50%;
    object-fit: cover
}

.user-hero__avatar+.user-hero__avatar {
    margin-left: -9px
}

.user-hero__avatar-count {
    width: 36px;
    height: 36px;
    margin-left: -8px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #101216;
    border-radius: 50%;
    background: #181b20;
    color: #b9bcc2;
    font-size: 10px;
    font-weight: 700
}

.user-hero__social-copy {
    display: flex;
    flex-direction: column;
    gap: 3px
}

.user-hero__social-copy strong {
    color: #c7c9ce;
    font-size: 13px;
    font-weight: 600
}

.user-hero__social-copy span {
    color: #70737a;
    font-size: 11px;
    line-height: 1.4
}

.user-showcase {
    width: 100%;
    max-width: 610px;
    padding: 24px 22px 22px;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 28px;
    background: #17191e;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .28)
}

.user-showcase__top {
    min-height: 34px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px
}

.user-showcase__filters {
    display: flex;
    align-items: center;
    gap: 9px
}

.user-showcase__pill {
    min-height: 26px;
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 999px;
    background: #0f1115;
    color: #a2a5ab;
    font-size: 10px;
    font-weight: 700
}

.user-showcase__pill--blue {
    background: rgba(47, 128, 255, .12);
    color: #2f80ff
}

.user-showcase__settings {
    color: #2f80ff;
    font-size: 17px
}

.user-showcase__creator-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px
}

.user-creator-card__media {
    position: relative;
    aspect-ratio: 1.03/1;
    overflow: hidden;
    border-radius: 15px;
    background: #0c0e12
}

.user-creator-card__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover
}

.user-creator-card__rating,
.user-creator-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    min-height: 24px;
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 9px;
    font-weight: 700
}

.user-creator-card__rating {
    background: rgba(44, 45, 37, .86);
    color: #e5cb75
}

.user-creator-card__badge {
    background: #2f80ff;
    color: #fff;
    text-transform: uppercase
}

.user-creator-card__meta {
    min-height: 58px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding: 12px 3px 0
}

.user-creator-card__meta>div {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.user-creator-card__meta strong {
    color: #d8dade;
    font-size: 12px;
    font-weight: 700
}

.user-creator-card__meta span:not(.user-creator-card__heart) {
    color: #686b72;
    font-size: 9px
}

.user-creator-card__heart {
    color: #565960;
    font-size: 18px
}

.user-creator-card__heart.is-active {
    color: #ff2a9b
}

.user-showcase__status {
    min-height: 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 22px;
    margin-top: 18px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 13px;
    background: #101216
}

.user-showcase__status-left {
    display: flex;
    align-items: center;
    gap: 12px
}

.user-showcase__status-icon {
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(255, 42, 155, .10)
}

.user-showcase__status-icon img {
    width: 35px !important;
    height: 35px !important;
    object-fit: contain
}

.user-showcase__status-copy {
    display: flex;
    flex-direction: column;
    gap: 3px
}

.user-showcase__status-copy strong {
    color: #c9cbd0;
    font-size: 10px;
    font-weight: 700
}

.user-showcase__status-copy span {
    color: #ff2a9b;
    font-size: 9px;
    font-weight: 600
}

.user-showcase__status-time {
    color: #55585f;
    font-size: 9px;
    white-space: nowrap
}

.user-trust-bar {
    width: 100%;
    background: #171818;
    border-top: 1px solid rgba(255, 255, 255, .05)
}

.user-trust-bar__grid {
    min-height: 98px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center
}

.user-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 28px;
    border-right: 1px solid rgba(255, 255, 255, .07)
}

.user-trust-item:last-child {
    border-right: 0
}

.user-trust-item__icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 9px;
    background: rgba(47, 128, 255, .10)
}

.user-trust-item__icon img {
    width: 45px !important;
    height: 45px !important;
    object-fit: contain
}

.user-trust-item__copy {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.user-trust-item__copy strong {
    color: #c9cbd0;
    font-size: 11px;
    font-weight: 700
}

.user-trust-item__copy span {
    color: #696c72;
    font-size: 9px;
    line-height: 1.35
}

@media(max-width:1200px) {
    .user-container {
        width: min(calc(100% - 48px), 1120px)
    }

    .user-header__inner {
        grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
        gap: 24px
    }

    .user-header__menu {
        gap: 26px
    }

    .user-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(430px, 500px);
        gap: 52px
    }

    .user-hero__heading {
        font-size: 56px
    }
}

@media(max-width:1024px) {

    .user-header__nav,
    .user-header__actions {
        display: none
    }

    .user-header__inner {
        min-height: 68px;
        display: flex;
        justify-content: space-between;
        align-items: center
    }

    .user-menu-toggle {
        width: 40px;
        height: 40px;
        display: block;
        padding: 8px;
        border: 0;
        background: transparent;
        cursor: pointer
    }

    .user-menu-toggle span {
        width: 100%;
        height: 2px;
        display: block;
        margin: 5px 0;
        background: #fff
    }

    .user-mobile-menu {
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        display: block;
        padding: 18px 24px 26px;
        background: #080a0d;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: .25s ease
    }

    .user-header.menu-open .user-mobile-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0)
    }

    .user-mobile-menu__list {
        margin: 0;
        padding: 0;
        list-style: none
    }

    .user-mobile-menu__list a {
        display: block;
        padding: 13px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .06);
        color: #d0d2d6;
        text-decoration: none
    }

    .user-mobile-menu__languages {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-top: 18px
    }

    .user-mobile-menu__languages a,
    .user-mobile-menu__languages span {
        color: #777a80;
        font-size: 12px;
        text-decoration: none
    }

    .user-mobile-menu__languages a.active {
        color: #2f80ff
    }

    .user-mobile-menu__button {
        min-height: 48px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 18px;
        border-radius: 8px;
        background: #2f80ff;
        color: #fff !important;
        font-weight: 700;
        text-decoration: none !important
    }

    .user-hero__grid {
        grid-template-columns: 1fr;
        gap: 56px;
        padding: 62px 0 72px
    }

    .user-hero__content,
    .user-showcase {
        max-width: 100%
    }

    .user-showcase {
        max-width: 720px;
        margin: 0 auto
    }

    .user-trust-bar__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 12px 0
    }

    .user-trust-item:nth-child(2) {
        border-right: 0
    }
}

@media(max-width:767px) {
    .user-container {
        width: calc(100% - 32px)
    }

    .user-header__logo {
        max-width: 180px
    }

    .user-hero__grid {
        gap: 44px;
        padding: 48px 0 58px
    }

    .user-hero__eyebrow {
        margin-bottom: 30px;
        font-size: 9px
    }

    .user-hero__heading {
        font-size: 44px
    }

    .user-hero__description {
        font-size: 15px
    }

    .user-hero__actions {
        align-items: stretch;
        flex-direction: column
    }

    .user-hero__button {
        width: 100%;
        min-width: 0
    }

    .user-hero__social-proof {
        align-items: flex-start;
        flex-direction: column;
        gap: 13px
    }

    .user-showcase {
        padding: 18px 15px 16px;
        border-radius: 22px
    }

    .user-trust-bar__grid {
        grid-template-columns: 1fr
    }

    .user-trust-item {
        padding: 18px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .06)
    }

    .user-trust-item:last-child {
        border-bottom: 0
    }
}

@media(max-width:480px) {
    .user-hero__heading {
        font-size: 38px
    }

    .user-showcase__creator-grid {
        grid-template-columns: 1fr
    }

    .user-creator-card__media {
        aspect-ratio: 1.2/1
    }
}

/* =========================================================
   COMMUNITY BENEFITS
   Pixel-matched dark section + explicit text colors to prevent
   Elementor/global heading styles from overriding this section.
========================================================= */

.user-page .user-community {
    position: relative;
    width: 100%;
    padding: 78px 0 112px;
    background: #090a0c !important;
}

.user-page .user-community__header {
    width: 100%;
    max-width: 760px;
    margin: 0 auto 58px;
    text-align: center;
}

.user-page .user-community__heading {
    margin: 0 !important;
    color: #f2f2f3 !important;
    font-size: 40px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.025em !important;
    text-align: center !important;
}

.user-page .user-community__subtitle {
    margin: 12px 0 0 !important;
    color: #74767c !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    text-align: center !important;
}

.user-page .user-community__grid {
    width: min(100%, 1120px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    align-items: stretch;
}

.user-page .user-community-card {
    min-width: 0;
    min-height: 320px;
    padding: 38px 34px 36px;
    border: 1px solid #202126 !important;
    border-radius: 24px;
    background: #15161a !important;
    box-shadow: none;
    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.user-page .user-community-card:hover {
    transform: translateY(-3px);
    border-color: #292a30 !important;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .16);
}

.user-page .user-community-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    overflow: hidden;
    border-radius: 10px;
    background: color-mix(in srgb, var(--community-icon-color) 14%, #15161a) !important;
}

.user-page .user-community-card__icon-image,
.user-page .user-community-card__icon img {
    width: 46px !important;
    height: 46px !important;
    max-width: 46px !important;
    max-height: 46px !important;
    display: block;
    object-fit: contain;
}

.user-page .user-community-card__title {
    max-width: 245px;
    margin: 0 0 17px !important;
    color: #eeeeef !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    line-height: 1.28 !important;
    letter-spacing: -0.015em !important;
}

.user-page .user-community-card__description {
    margin: 0 !important;
    color: #85878d !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.7 !important;
}

@media (max-width: 1200px) {
    .user-page .user-community__grid {
        width: min(100%, 1040px);
        gap: 24px;
    }
}

@media (max-width: 1024px) {
    .user-page .user-community {
        padding: 72px 0 86px;
    }

    .user-page .user-community__header {
        margin-bottom: 44px;
    }

    .user-page .user-community__grid {
        gap: 20px;
    }

    .user-page .user-community-card {
        min-height: 310px;
        padding: 32px 26px 30px;
    }

    .user-page .user-community-card__title {
        font-size: 18px !important;
    }

    .user-page .user-community-card__description {
        font-size: 13px !important;
    }
}

@media (max-width: 767px) {
    .user-page .user-community {
        padding: 58px 0 68px;
    }

    .user-page .user-community__header {
        max-width: 100%;
        margin-bottom: 34px;
    }

    .user-page .user-community__heading {
        font-size: 26px !important;
    }

    .user-page .user-community__subtitle {
        font-size: 12px !important;
    }

    .user-page .user-community__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .user-page .user-community-card {
        min-height: 0;
        padding: 28px 24px;
        border-radius: 20px;
    }

    .user-page .user-community-card__icon {
        width: 46px;
        height: 46px;
        margin-bottom: 22px;
    }

    .user-page .user-community-card__icon-image,
    .user-page .user-community-card__icon img {
        width: 44px !important;
        height: 44px !important;
        max-width: 44px !important;
        max-height: 44px !important;
    }
}

/* =========================================================
   EXPLORE ECOSYSTEM
========================================================= */

.user-page .user-ecosystem {
    position: relative;
    width: 100%;
    padding: 82px 0 104px;
    background: #090a0c !important;
}

.user-page .user-ecosystem__header {
    width: 100%;
    margin: 0 0 46px;
    text-align: left;
}

.user-page .user-ecosystem__heading {
    margin: 0 0 12px !important;
    color: #f2f2f3 !important;
    font-size: 31px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.025em !important;
    text-align: left !important;
}

.user-page .user-ecosystem__subtitle {
    margin: 0 !important;
    color: #777a81 !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    text-align: left !important;
}

.user-page .user-ecosystem__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px 18px;
}

.user-page .user-ecosystem-card {
    position: relative;
    min-width: 0;
    aspect-ratio: 1.12 / 1;
    overflow: hidden;
    border-radius: 16px;
    background: #15161a;
    text-decoration: none !important;
    isolation: isolate;
    transition: transform .28s ease, box-shadow .28s ease;
}

.user-page .user-ecosystem-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .25);
}

.user-page .user-ecosystem-card__image {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    display: block;
    object-fit: cover;
    transition: transform .45s ease;
}

.user-page .user-ecosystem-card:hover .user-ecosystem-card__image {
    transform: scale(1.035);
}

.user-page .user-ecosystem-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .03) 22%, rgba(0, 0, 0, .12) 48%, rgba(0, 0, 0, .68) 100%);
}

.user-page .user-ecosystem-card__title {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 17px;
    z-index: 2;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    text-decoration: none !important;
    text-shadow: 0 1px 8px rgba(0, 0, 0, .25);
}

@media (max-width: 1200px) {
    .user-page .user-ecosystem__grid {
        gap: 18px;
    }
}

@media (max-width: 1024px) {
    .user-page .user-ecosystem {
        padding: 72px 0 88px;
    }

    .user-page .user-ecosystem__header {
        margin-bottom: 38px;
    }

    .user-page .user-ecosystem__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
}

@media (max-width: 767px) {
    .user-page .user-ecosystem {
        padding: 58px 0 68px;
    }

    .user-page .user-ecosystem__header {
        margin-bottom: 30px;
    }

    .user-page .user-ecosystem__heading {
        font-size: 27px !important;
    }

    .user-page .user-ecosystem__subtitle {
        font-size: 12px !important;
    }

    .user-page .user-ecosystem__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .user-page .user-ecosystem-card {
        aspect-ratio: 1.35 / 1;
        border-radius: 14px;
    }
}

/* =========================================================
   NOQ CREDIT SYSTEM
========================================================= */

.user-page .user-credit {
    width: 100%;
    padding: 58px 0 108px;
    background: #090a0c;
}

.user-page .user-credit__box {
    width: 100%;
    min-height: 560px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(480px, 1.2fr);
    align-items: center;
    gap: 70px;
    padding: 48px 52px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 28px;
    background: #191a1a;
}

.user-page .user-credit__content {
    width: 100%;
    max-width: 510px;
}

.user-page .user-credit__heading {
    margin: 0 0 15px !important;
    color: #f4f4f5 !important;
    font-size: 33px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.025em !important;
}

.user-page .user-credit__eyebrow {
    margin-bottom: 24px;
    color: #2f80ff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

/* WYSIWYG content */

.user-page .user-credit__content-editor {
    margin-bottom: 26px;
    color: #a0a2a7;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
}

.user-page .user-credit__content-editor p {
    margin: 0 0 4px !important;
    color: #a0a2a7 !important;
    font-size: 16px !important;
    line-height: 28px !important;
}

.user-page .user-credit__content-editor ul {
    margin: 2px 0 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.user-page .user-credit__content-editor li {
    position: relative;
    margin: 0 0 3px !important;
    padding: 0 0 0 14px !important;
    color: #a0a2a7 !important;
    font-size: 14px !important;
    line-height: 25px !important;
    list-style: none !important;
}

.user-page .user-credit__content-editor li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #2f80ff;
    font-weight: 700;
}

/* Billing box */

.user-page .user-credit__billing {
    width: 100%;
    max-width: 430px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    border: 1px solid #2f80ff;
    border-radius: 12px;
    background: #15171a;
}

.user-page .user-credit__billing-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(47, 128, 255, 0.12);
}

.user-page .user-credit__billing-icon img {
    width: 52px !important;
    height: 52px !important;
    max-width: 52px !important;
    max-height: 52px !important;
    object-fit: contain;
}

.user-page .user-credit__billing-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.user-page .user-credit__billing-copy strong {
    color: #e5e6e8 !important;
    font-size: 15px;
    font-weight: 700;
}

.user-page .user-credit__billing-copy span {
    color: #85878d;
    font-size: 12px;
    line-height: 1.45;
}

/* Right graphic */

.user-page .user-credit__visual {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-page .user-credit__image {
    width: 100% !important;
    height: auto !important;
    max-width: 620px !important;
    display: block;
    object-fit: contain;
}

/* Tablet */

@media (max-width: 1024px) {
    .user-page .user-credit {
        padding: 55px 0 85px;
    }

    .user-page .user-credit__box {
        grid-template-columns: 1fr;
        gap: 45px;
        padding: 42px 38px;
    }

    .user-page .user-credit__content {
        max-width: 100%;
    }

    .user-page .user-credit__image {
        max-width: 720px !important;
    }
}

/* Mobile */

@media (max-width: 767px) {
    .user-page .user-credit {
        padding: 45px 0 70px;
    }

    .user-page .user-credit__box {
        min-height: 0;
        padding: 30px 24px;
        border-radius: 22px;
    }

    .user-page .user-credit__heading {
        font-size: 27px !important;
    }

    .user-page .user-credit__eyebrow {
        font-size: 10px;
    }

    .user-page .user-credit__content-editor,
    .user-page .user-credit__content-editor p,
    .user-page .user-credit__content-editor li {
        font-size: 13px !important;
    }

    .user-page .user-credit__billing {
        max-width: 100%;
    }
}

/* =========================================================
   WHY CHOOSE NOQ CREDITS
========================================================= */

.user-page .user-why-credits {
    width: 100%;
    padding: 92px 0 105px;
    background: #090a0c;
}

.user-page .user-why-credits__header {
    max-width: 720px;
    margin: 0 auto 58px;
    text-align: center;
}

.user-page .user-why-credits__eyebrow {
    width: fit-content;
    min-height: 27px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin: 0 auto 26px;
    padding: 5px 14px;
    border: 1px solid rgba(190, 151, 76, .25);
    border-radius: 999px;
    background: rgba(190, 151, 76, .04);
    color: #b99a63;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.user-page .user-why-credits__eyebrow span {
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    border-radius: 50%;
    background: #d0ac65;
}

.user-page .user-why-credits__heading {
    margin: 0 0 18px !important;
    color: #f2f2f3 !important;
    font-size: 40px !important;
    font-weight: 750 !important;
    line-height: 1.15 !important;
    letter-spacing: -.035em !important;
    text-align: center !important;
}

.user-page .user-why-credits__description {
    max-width: 640px;
    margin: 0 auto !important;
    color: #777980 !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.55 !important;
    text-align: center !important;
}

/* Cards */

.user-page .user-why-credits__grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.user-page .user-why-credits-card {
    min-width: 0;
    min-height: 320px;
    padding: 32px 30px;
    border: 1px solid rgba(255, 255, 255, .045);
    border-radius: 24px;
    background: #15161a;
}

.user-page .user-why-credits-card__icon {
    width: 49px;
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: 11px;
    background: color-mix(in srgb, var(--why-credit-color) 13%, #15161a);
}

.user-page .user-why-credits-card__icon img {
    width: 50px !important;
    height: 50px !important;
    max-width: 50px !important;
    max-height: 50px !important;
    display: block;
    object-fit: contain;
}

.user-page .user-why-credits-card__title {
    margin: 0 0 18px !important;
    color: #eeeeef !important;
    font-size: 19px !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
}

/* WYSIWYG features */

.user-page .user-why-credits-card__features {
    color: #777980;
}

.user-page .user-why-credits-card__features p {
    margin: 0 !important;
}

.user-page .user-why-credits-card__features ul {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.user-page .user-why-credits-card__features li {
    position: relative;
    min-height: 20px;
    margin: 0 0 10px !important;
    padding: 0 0 0 25px !important;
    color: #777980 !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 1.45 !important;
    list-style: none !important;
}

.user-page .user-why-credits-card__features li:last-child {
    margin-bottom: 0 !important;
}

.user-page .user-why-credits-card__features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    width: 16px;
    padding: 5px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #2f80ff;
    color: #fff;
    font-size: 8px;
    font-weight: 800;
    line-height: 1;
}

/* Buttons */

.user-page .user-why-credits__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 50px;
}

.user-page .user-why-credits__button {
    min-width: 190px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 9px;
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.user-page .user-why-credits__button--primary {
    background: #2f80ff;
    border: 1px solid #2f80ff;
}

.user-page .user-why-credits__button--secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .10);
}

.user-page .user-why-credits__button:hover {
    transform: translateY(-2px);
}

.user-page .user-why-credits__button--primary:hover {
    background: #4b91ff;
}

.user-page .user-why-credits__button--secondary:hover {
    border-color: rgba(255, 255, 255, .25);
}

/* Tablet */

@media (max-width: 1024px) {
    .user-page .user-why-credits {
        padding: 75px 0 85px;
    }

    .user-page .user-why-credits__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Mobile */

@media (max-width: 767px) {
    .user-page .user-why-credits {
        padding: 60px 0 70px;
    }

    .user-page .user-why-credits__header {
        margin-bottom: 38px;
    }

    .user-page .user-why-credits__heading {
        font-size: 29px !important;
    }

    .user-page .user-why-credits__description {
        font-size: 13px !important;
    }

    .user-page .user-why-credits__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .user-page .user-why-credits-card {
        min-height: 0;
        padding: 28px 25px;
    }

    .user-page .user-why-credits__actions {
        flex-direction: column;
        margin-top: 38px;
    }

    .user-page .user-why-credits__button {
        width: 100%;
    }
}

/* =========================================================
   YOUR TRUST IS OUR GREATEST ASSET
   Reference-matched section
========================================================= */

.user-page .user-trust-section {
    position: relative;
    width: 100%;
    padding: 82px 0 96px;
    background: #090a0c !important;
}

.user-page .user-trust-section .user-container {
    width: min(calc(100% - 112px), 1440px);
}

/* Header */
.user-page .user-trust-section__header {
    width: 100%;
    max-width: 780px;
    margin: 0 auto 58px;
    text-align: center;
}

.user-page .user-trust-section__heading {
    margin: 0 0 18px !important;
    color: #f1f1f2 !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 40px !important;
    font-style: italic !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.025em !important;
    text-align: center !important;
}

.user-page .user-trust-section__description {
    max-width: 730px;
    margin: 0 auto !important;
    color: #777a81 !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.55 !important;
    text-align: center !important;
}

/* Main cards */
.user-page .user-trust-section__grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.user-page .user-trust-section-card {
    min-width: 0;
    min-height: 220px;
    padding: 28px 27px 27px;
    border: 1px solid rgba(255, 255, 255, .055) !important;
    border-radius: 14px;
    background: #111214 !important;
    box-shadow: none !important;
}

.user-page .user-trust-section-card__icon {
    width: 31px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 15px;
    overflow: hidden;
}

.user-page .user-trust-section-card__icon img {
    width: 27px !important;
    height: 27px !important;
    max-width: 27px !important;
    max-height: 27px !important;
    display: block;
    object-fit: contain;
}

.user-page .user-trust-section-card__title {
    margin: 0 0 13px !important;
    color: #ededee !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    letter-spacing: -0.01em !important;
}

.user-page .user-trust-section-card__description {
    margin: 0 !important;
    color: #666970 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.55 !important;
}

/* Bottom assurance row */
.user-page .user-trust-section__bottom {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-top: 60px;
}

.user-page .user-trust-section__bottom-item {
    min-width: 0;
    min-height: 56px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px 20px;
    border: 1px solid rgba(255, 255, 255, .04) !important;
    border-radius: 10px;
    background: #171819 !important;
}

.user-page .user-trust-section__bottom-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.user-page .user-trust-section__bottom-icon img {
    width: 20px !important;
    height: 20px !important;
    max-width: 20px !important;
    max-height: 20px !important;
    display: block;
    object-fit: contain;
}

.user-page .user-trust-section__bottom-item span {
    color: #d6d7da !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
}

/* Large desktop tuning */
@media (min-width: 1201px) {
    .user-page .user-trust-section__grid {
        gap: 24px;
    }

    .user-page .user-trust-section-card {
        min-height: 220px;
    }
}

/* Tablet */
@media (max-width: 1200px) {
    .user-page .user-trust-section .user-container {
        width: min(calc(100% - 48px), 1120px);
    }

    .user-page .user-trust-section__grid {
        gap: 20px;
    }

    .user-page .user-trust-section-card {
        padding: 26px 23px;
    }
}

@media (max-width: 1024px) {
    .user-page .user-trust-section {
        padding: 72px 0 82px;
    }

    .user-page .user-trust-section__header {
        margin-bottom: 44px;
    }

    .user-page .user-trust-section__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .user-page .user-trust-section-card {
        min-height: 205px;
    }

    .user-page .user-trust-section__bottom {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 42px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .user-page .user-trust-section {
        padding: 58px 0 68px;
    }

    .user-page .user-trust-section .user-container {
        width: calc(100% - 32px);
    }

    .user-page .user-trust-section__header {
        max-width: 100%;
        margin-bottom: 36px;
    }

    .user-page .user-trust-section__heading {
        font-size: 28px !important;
    }

    .user-page .user-trust-section__description {
        font-size: 12px !important;
    }

    .user-page .user-trust-section__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .user-page .user-trust-section-card {
        min-height: 0;
        padding: 25px 23px;
    }

    .user-page .user-trust-section__bottom {
        margin-top: 36px;
    }

    .user-page .user-trust-section__bottom-item {
        padding: 14px 17px;
    }
}

/* =========================================================
   FREQUENTLY ASKED QUESTIONS
========================================================= */

.user-page .user-faq {
    position: relative;
    width: 100%;
    padding: 92px 0 105px;
    background: #090a0c !important;
}

.user-page .user-faq__header {
    width: 100%;
    max-width: 680px;
    margin: 0 auto 52px;
    text-align: center;
}

.user-page .user-faq__heading {
    margin: 0 0 20px !important;
    color: #f1f1f2 !important;
    font-size: 40px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    letter-spacing: -.025em !important;
    text-align: center !important;
}

.user-page .user-faq__subtitle {
    margin: 0 !important;
    color: #686b71 !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    text-align: center !important;
}

.user-page .user-faq__list {
    width: min(100%, 720px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0 auto;
}

.user-page .user-faq-item {
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .055) !important;
    border-radius: 13px;
    background: #17181c !important;
}

.user-page .user-faq-item__button {
    width: 100%;
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 28px;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    cursor: pointer;
    text-align: left;
}

.user-page .user-faq-item__button:hover,
.user-page .user-faq-item__button:focus {
    background: transparent !important;
}

.user-page .user-faq-item__question {
    color: #bfc1c6 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
}

.user-page .user-faq-item__toggle {
    flex: 0 0 auto;
    color: #696b70 !important;
    font-size: 25px;
    font-weight: 300;
    line-height: 1;
    transition: transform .25s ease, color .25s ease;
}

.user-page .user-faq-item.is-open .user-faq-item__toggle {
    color: #2f80ff !important;
    transform: rotate(45deg);
}

.user-page .user-faq-item__answer {
    padding: 0 28px 24px;
}

.user-page .user-faq-item__answer[hidden] {
    display: none !important;
}

.user-page .user-faq-item__answer-inner {
    max-width: 620px;
    color: #71747b !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 1.65 !important;
}

.user-page .user-faq-item__answer-inner p {
    margin: 0 0 10px !important;
    color: #71747b !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 1.65 !important;
}

.user-page .user-faq-item__answer-inner p:last-child {
    margin-bottom: 0 !important;
}

@media (max-width: 1024px) {
    .user-page .user-faq {
        padding: 75px 0 85px;
    }
}

@media (max-width: 767px) {
    .user-page .user-faq {
        padding: 58px 0 70px;
    }

    .user-page .user-faq__header {
        max-width: 100%;
        margin-bottom: 36px;
    }

    .user-page .user-faq__heading {
        font-size: 27px !important;
    }

    .user-page .user-faq__subtitle {
        font-size: 11px !important;
    }

    .user-page .user-faq-item__button {
        min-height: 58px;
        padding: 17px 19px;
    }

    .user-page .user-faq-item__question {
        font-size: 13px !important;
    }

    .user-page .user-faq-item__answer {
        padding: 0 19px 20px;
    }
}

/* =========================================================
   COMMUNITY CTA
========================================================= */

.user-page .user-community-cta {
    position: relative;
    width: 100%;
    padding: 36px 0 72px;
    background: #090a0c !important;
}

.user-page .user-community-cta__box {
    position: relative;
    width: 100%;
    min-height: 290px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 55px 40px;
    overflow: hidden;
    border-radius: 40px;
    background: #2f80ed !important;
    text-align: center;
}

.user-page .user-community-cta__box::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -170px;
    width: 500px;
    height: 350px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(255, 255, 255, .035);
    pointer-events: none;
}

.user-page .user-community-cta__heading {
    position: relative;
    z-index: 1;
    margin: 0 0 14px !important;
    color: #fff !important;
    font-size: 44px !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
    letter-spacing: -.025em !important;
    text-align: center !important;
}

.user-page .user-community-cta__description {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto 31px !important;
    color: rgba(255, 255, 255, .72) !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.55 !important;
    text-align: center !important;
}

.user-page .user-community-cta__button {
    position: relative;
    z-index: 1;
    min-width: 224px;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    border: 0 !important;
    border-radius: 12px;
    background: #fff !important;
    color: #2f80ed !important;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .06);
    transition: transform .2s ease, box-shadow .2s ease;
}

.user-page .user-community-cta__button:hover {
    transform: translateY(-2px);
    color: #2f80ed !important;
    box-shadow: 0 7px 18px rgba(0, 0, 0, .12);
}

@media (max-width: 1024px) {
    .user-page .user-community-cta__box {
        min-height: 270px;
        padding: 48px 32px;
        border-radius: 34px;
    }

    .user-page .user-community-cta__heading {
        font-size: 38px !important;
    }
}

@media (max-width: 767px) {
    .user-page .user-community-cta {
        padding: 28px 0 55px;
    }

    .user-page .user-community-cta__box {
        min-height: 250px;
        padding: 42px 22px;
        border-radius: 26px;
    }

    .user-page .user-community-cta__heading {
        font-size: 29px !important;
        line-height: 1.2 !important;
    }

    .user-page .user-community-cta__description {
        margin-bottom: 26px !important;
        font-size: 13px !important;
    }

    .user-page .user-community-cta__button {
        width: 100%;
        max-width: 250px;
        min-height: 50px;
    }
}

/* =========================================================
   USER FOOTER
========================================================= */

.user-page .user-footer {
    position: relative;
    width: 100%;
    padding: 58px 0 30px;
    background: #090a0c !important;
    border-top: 1px solid rgba(255, 255, 255, .025);
}

.user-page .user-footer__top {
    display: grid;
    grid-template-columns: minmax(320px, 1.65fr) minmax(500px, 1fr);
    gap: 80px;
    padding-bottom: 46px;
}

.user-page .user-footer__brand {
    max-width: 390px;
}

.user-page .user-footer__brand-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.user-page .user-footer__logo {
    display: block;
    width: auto !important;
    height: 28px !important;
    max-width: 175px !important;
    object-fit: contain;
}

.user-page .user-footer__brand-name {
    color: #e5e6e8 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
}

.user-page .user-footer__description {
    max-width: 340px;
    margin: 0 0 22px !important;
    color: #55585f !important;
    font-size: 11px !important;
    font-weight: 400 !important;
    line-height: 1.55 !important;
}

.user-page .user-footer__socials {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-page .user-footer__social {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent !important;
    text-decoration: none !important;
    transition: border-color .2s ease, background .2s ease;
}

.user-page .user-footer__social img {
    width: 40px !important;
    height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    display: block;
    object-fit: contain;
    opacity: .55;
}

.user-page .user-footer__social:hover {
    border-color: rgba(255, 255, 255, .2) !important;
    background: rgba(255, 255, 255, .035) !important;
}

.user-page .user-footer__columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 50px;
}

.user-page .user-footer__column-title {
    margin: 0 0 15px !important;
    color: #d5d6d8 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
}

.user-page .user-footer__links {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.user-page .user-footer__links li {
    margin: 0 0 10px !important;
    padding: 0 !important;
    list-style: none !important;
}

.user-page .user-footer__links a {
    color: #53565c !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 30px !important;
    text-decoration: none !important;
    transition: color .2s ease;
}

.user-page .user-footer__links a:hover {
    color: #9b9da2 !important;
}

.user-page .user-footer__bottom {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.user-page .user-footer__copyright {
    margin: 0 !important;
    color: #4e5056 !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
}

.user-page .user-footer__trust {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
}

.user-page .user-footer__trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.user-page .user-footer__trust-item img {
    width: 11px !important;
    height: 11px !important;
    max-width: 11px !important;
    max-height: 11px !important;
    display: block;
    object-fit: contain;
    opacity: .55;
}

.user-page .user-footer__trust-item span {
    color: #4f5258 !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    line-height: 1.3 !important;
}

@media (max-width: 1024px) {
    .user-page .user-footer__top {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .user-page .user-footer__brand {
        max-width: 100%;
    }

    .user-page .user-footer__columns {
        max-width: 650px;
    }
}

@media (max-width: 767px) {
    .user-page .user-footer {
        padding: 48px 0 28px;
    }

    .user-page .user-footer__top {
        gap: 38px;
        padding-bottom: 38px;
    }

    .user-page .user-footer__columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .user-page .user-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .user-page .user-footer__trust {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }
}