/**
 * Отраслевой хаб — изолированные стили (префикс .hub).
 * Вёрстка на flex/grid, резиновая: количество карточек и объём текста
 * не ломают сетку. position:absolute — только для декора.
 */

.hub {
    --hub-accent: #fb8227;
    --hub-accent-hover: #fca34d;
    --hub-accent-2: #f7b432;
    --hub-gradient: linear-gradient(99deg, #fa8026 0%, #f7b432 100%);
    --hub-ink: #1d1d1d;
    --hub-muted: #706f6f;
    --hub-line: rgba(29, 29, 29, 0.1);
    --hub-bg: #f5f6f8;
    --hub-peach: linear-gradient(177deg, #fff2e8 0%, #ffdcc1 100%);
    --hub-radius: 20px;
    --hub-gap: 24px;
    --hub-maxw: 1368px;
    --hub-section-y: 112px;

    color: var(--hub-ink);
    font-family: "Inter", -apple-system, Segoe UI, Roboto, sans-serif;
    background: #fff;
}

/* Sticky FAQ-aside: .main { overflow:hidden } ломает position:sticky */
.main.hub {
    overflow-x: clip;
    overflow-y: visible;
}

.hub *,
.hub *::before,
.hub *::after {
    box-sizing: border-box;
}

.hub__container {
    width: 100%;
    max-width: calc(var(--hub-maxw) + 40px);
    margin: 0 auto;
    padding: 0 20px;
}

.hub-section {
    padding: var(--hub-section-y) 0;
}

.hub-section__title {
    margin: 0 0 24px;
    font-size: 64px;
    line-height: 1.12;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.hub-section__lead {
    max-width: 1368px;
    margin: 0 0 64px;
    font-size: 20px;
    line-height: 1.28;
    color: var(--hub-muted);
}

/* Кнопки */
.hub-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 28px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.hub-btn--primary {
    background: var(--hub-gradient);
    color: #fff;
}

.hub-btn--primary:hover {
    box-shadow: 0 12px 24px rgba(251, 130, 39, 0.3);
    transform: translateY(-1px);
}

.hub-btn--ghost {
    background: transparent;
    color: var(--hub-ink);
    border-color: var(--hub-line);
}

.hub-btn--ghost:hover {
    border-color: var(--hub-accent);
    color: var(--hub-accent);
}

.hub-btn--light {
    background: #fff;
    color: var(--hub-ink);
}

.hub-btn--light:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* ── Hero ───────────────────────────────────────────── */
.hub-hero.hub-section {
    padding: 0;
}

.hub-hero {
    --hub-hero-bg: #f3f3f3;
    --hub-hero-content-width: 726px;
    --hub-hero-content-gap: 24px;
    --hub-hero-media-start: calc(
        (100% - min(100%, calc(var(--hub-maxw) + 40px))) / 2
        + 20px
        + var(--hub-hero-content-width)
        + var(--hub-hero-content-gap)
    );

    background: #f3f3f3;
    overflow: hidden;
}

.hub-hero__shell {
    position: relative;
    min-height: 880px;
}

/* Мягкий fade только над зоной иллюстрации — без вертикальной «полосы» */
.hub-hero__shell::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: max(var(--hub-hero-media-start), calc(50% + 42px));
    z-index: 2;
    pointer-events: none;
    content: "";
    background:
        linear-gradient(90deg, var(--hub-hero-bg) 0%, rgba(243, 243, 243, 0.35) 5%, rgba(243, 243, 243, 0) 12%),
        linear-gradient(0deg, var(--hub-hero-bg) 0%, rgba(243, 243, 243, 0) 28%);
}

.hub-hero__inner {
    position: relative;
    z-index: 3;
    padding-top: 32px;
    padding-bottom: 80px;
    background: transparent;
    box-shadow: none;
}

.hub-hero .breadcrumbs {
    margin: 0 0 93px;
    display: flex;
    align-items: center;
    color: rgba(29, 29, 29, 0.6);
}

.hub-hero .breadcrumbs > img {
    display: none;
}

.hub-hero .breadcrumbs nav {
    margin-left: 0;
}

.hub-hero .breadcrumbs nav p {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.hub-hero .breadcrumbs a,
.hub-hero .breadcrumbs span {
    color: rgba(29, 29, 29, 0.6);
    font-family: Inter, Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.28;
}

.hub-hero .breadcrumbs span:last-child,
.hub-hero .breadcrumbs .last {
    color: var(--hub-ink);
}

.hub-hero .breadcrumbs .separator {
    margin: 0;
}

.hub-hero__content {
    max-width: 726px;
}

.hub-hero__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 5px 20px;
    border-radius: 17px;
    background: #fff;
    border: 1px solid #c0c0c0;
    color: var(--hub-muted);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 27px;
}

.hub-hero__title {
    margin: 0 0 31px;
    font-size: 64px;
    line-height: 1.12;
    font-weight: 600;
    letter-spacing: -0.02em;
    max-width: 871px;
}

.hub-hero__title-accent {
    display: block;
    background: var(--hub-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.hub-hero__title-rest {
    display: block;
    color: var(--hub-ink);
}

.hub-hero__text {
    margin: 0 0 46px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 20px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.28;
    letter-spacing: 0;
    color: #1d1d1d;
    max-width: 726px;
}

.hub-hero__bullets {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    display: grid;
    gap: 12px;
}

.hub-hero__bullet {
    position: relative;
    padding-left: 32px;
    font-size: 16px;
    line-height: 1.45;
}

.hub-hero__bullet::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--hub-gradient);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23fff' d='M8.2 13.3 5 10.1l1.2-1.2 2 2 4.6-4.6L14 7.5z'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23fff' d='M8.2 13.3 5 10.1l1.2-1.2 2 2 4.6-4.6L14 7.5z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.hub-hero__actions {
    display: grid;
    grid-template-columns: 309px 309px;
    gap: 47px;
    margin: 0 0 46px;
    max-width: 665px;
}

.hub-hero__btn {
    width: 100%;
    min-height: 64px;
    padding: 21px 24px;
    border-radius: 16px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 18px;
    line-height: 1.12;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.hub-hero__actions .hub-btn--primary {
    padding: 21px 24px;
    background: var(--hub-accent);
    border-color: var(--hub-accent);
    color: #fff;
}

.hub-hero__actions .hub-btn--primary:hover,
.hub-hero__actions .hub-btn--primary:focus-visible {
    background: var(--hub-accent-hover);
    border-color: var(--hub-accent-hover);
    color: #fff;
    box-shadow: none;
    transform: none;
    text-decoration: none;
}

.hub-hero__actions .hub-btn--outline {
    background: transparent;
    color: var(--hub-accent);
    border: 1px solid var(--hub-accent);
}

.hub-hero__actions .hub-btn--outline:hover,
.hub-hero__actions .hub-btn--outline:focus-visible {
    background: var(--hub-accent);
    color: #fff;
    border-color: var(--hub-accent);
    box-shadow: none;
    transform: none;
    text-decoration: none;
}

.hub-hero__awards {
    display: flex;
    flex-wrap: wrap;
    gap: 54px;
    padding-top: 22px;
    border-top: 1px solid rgba(119, 119, 119, 0.3);
    max-width: 665px;
}

.hub-hero__award {
    display: flex;
    align-items: flex-start;
    gap: 23px;
    max-width: 289px;
}

.hub-hero__award-icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    display: block;
}

.hub-hero__award-text {
    font-size: 16px;
    line-height: 1.28;
    color: var(--hub-ink);
}

.hub-hero__media {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: max(var(--hub-hero-media-start), calc(50% + 42px));
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
    background: var(--hub-hero-bg);
}

.hub-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    display: block;
    vertical-align: top;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* ── Боли ниши ──────────────────────────────────────── */
.hub-pains {
    background: #fff;
}

.hub-pains__title {
    margin: 0 0 32px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 64px;
    line-height: 1.12;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--hub-ink);
}

.hub-pains__title-line {
    display: inline;
}

.hub-pains__title-line--wrap::before {
    content: "\A";
    white-space: pre;
}

.hub-pains__lead {
    max-width: 1368px;
    margin: 0 0 64px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.28;
    color: var(--hub-ink);
}

.hub-pains__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.hub-pains__card {
    display: flex;
    flex-direction: column;
    min-height: 358px;
    padding: 40px;
    background: var(--hub-bg);
    border-radius: 32px;
}

.hub-pains__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 96px;
    width: 96px;
    height: 96px;
    margin: 0 0 24px;
    border-radius: 50%;
    background: #fff;
}

.hub-pains__icon-img {
    display: block;
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.hub-pains__card-title {
    margin: 0 0 24px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 24px;
    line-height: 1.12;
    font-weight: 600;
    color: var(--hub-ink);
}

.hub-pains__card-text {
    margin: 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.28;
    font-weight: 400;
    color: var(--hub-ink);
}

/* ── Воронка ────────────────────────────────────────── */
.hub-funnel {
    background: var(--hub-bg);
}

.hub-funnel__title {
    margin: 0 0 32px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 64px;
    line-height: 1.12;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--hub-ink);
}

.hub-funnel__title-line {
    display: inline;
}

.hub-funnel__title-line--wrap::before {
    content: "\A";
    white-space: pre;
}

.hub-funnel__lead {
    max-width: 1368px;
    margin: 0 0 64px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.28;
    color: var(--hub-ink);
}

.hub-funnel__steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin: 0 0 24px;
}

.hub-funnel__step {
    position: relative;
    min-height: 227px;
    overflow: hidden;
    background: #fff;
    border-radius: 32px;
}

.hub-funnel__step-num {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 2;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.12;
    background: linear-gradient(113deg, #fa8026 0%, #f7b432 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

/* Картинка шага: универсально справа, не наезжает на номер и подпись (любые ассеты из админки) */
.hub-funnel__step-media {
    position: absolute;
    top: 30px;
    right: 0;
    bottom: 70px;
    left: 130px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    pointer-events: none;
}

.hub-funnel__step-media img {
    display: block;
    max-width: min(100%, 180px);
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: right center;
}

.hub-funnel__step-label {
    position: absolute;
    left: 30px;
    bottom: 30px;
    z-index: 2;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.28;
    color: var(--hub-ink);
}

.hub-funnel__bottom {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.hub-funnel__work {
    position: relative;
    min-height: 380px;
    padding: 40px;
    background: #fff;
    border-radius: 32px;
}

.hub-funnel__work-chart {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 64px;
    height: 64px;
    display: block;
}

.hub-funnel__work-title {
    margin: 0 0 32px;
    padding-right: 80px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 32px;
    line-height: 1.12;
    font-weight: 600;
    color: var(--hub-ink);
}

.hub-funnel__work-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 24px;
}

.hub-funnel__work-item {
    position: relative;
    padding-left: 31px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.28;
    font-weight: 400;
    color: #1a1919;
}

.hub-funnel__work-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 12px;
    background: url("../../img/industry-hub/icons/funnel-check.svg") center/contain no-repeat;
}

.hub-funnel__note {
    position: relative;
    display: flex;
    align-items: flex-start;
    min-height: 380px;
    padding: 40px;
    border-radius: 32px;
    overflow: hidden;
    background: linear-gradient(113deg, #fa8026 0%, #f7b432 100%);
}

.hub-funnel__note::before {
    position: absolute;
    top: 59px;
    right: 40px;
    width: 385px;
    height: 321px;
    pointer-events: none;
    content: "";
    background-image: var(--hub-funnel-note-bg, none);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    opacity: 0.42;
}

.hub-funnel__note::after {
    position: absolute;
    top: 59px;
    right: 40px;
    width: 385px;
    height: 321px;
    pointer-events: none;
    content: "";
    background: linear-gradient(113deg, rgba(250, 128, 38, 0.62) 0%, rgba(247, 180, 50, 0.78) 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.35) 28%, rgba(0, 0, 0, 0.95) 100%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.35) 28%, rgba(0, 0, 0, 0.95) 100%);
}

.hub-funnel__note-text {
    position: relative;
    z-index: 1;
    margin: 0;
    max-width: 592px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 24px;
    line-height: 1.12;
    font-weight: 500;
    color: #fef5ea;
}

/* ── SEO, GEO, AEO (niche) ──────────────────────────── */
.hub-section.hub-niche {
    padding-bottom: 0;
}

.hub-niche__title {
    margin: 0 0 32px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 64px;
    line-height: 1.12;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--hub-ink);
}

.hub-niche__title-line {
    display: inline;
}

.hub-niche__title-line--wrap::before {
    content: "\A";
    white-space: pre;
}

.hub-niche__lead {
    max-width: 1368px;
    margin: 0 0 64px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.28;
    color: var(--hub-ink);
}

.hub-niche__channels {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.hub-niche__channel {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 100px;
    padding: 0 30px;
    border-radius: 17px;
    background: linear-gradient(177deg, #fff2e8 0%, #ffdcc1 100%);
}

.hub-niche__channel-icon {
    display: flex;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
}

.hub-niche__channel-icon img {
    display: block;
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.hub-niche__channel-label {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.222;
    color: #000;
}

.hub-niche__divider {
    margin: 64px 0;
    border-top: 1px solid #e7e7e7;
}

.hub-niche__subtitle {
    margin: 0 0 32px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 64px;
    line-height: 1.12;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--hub-ink);
}

.hub-niche__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.hub-niche__card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 156px;
    padding: 30px 70px 30px 30px;
    border-radius: 32px;
    background: #f5f6f8;
    text-decoration: none;
    color: var(--hub-ink);
}

.hub-niche__card-media {
    display: flex;
    flex: 0 0 96px;
    width: 96px;
    height: 96px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
}

.hub-niche__card-media img {
    display: block;
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.hub-niche__card-title {
    flex: 1;
    min-width: 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 24px;
    line-height: 1.12;
    font-weight: 500;
    color: var(--hub-ink);
    text-decoration: none;
}

.hub-niche__card:not(.hub-niche__card--static):hover,
.hub-niche__card:not(.hub-niche__card--static):focus-visible {
    text-decoration: none;
    color: var(--hub-ink);
}

.hub-niche__card:not(.hub-niche__card--static):hover .hub-niche__card-title,
.hub-niche__card:not(.hub-niche__card--static):focus-visible .hub-niche__card-title {
    text-decoration: none;
}

.hub-niche__card-arrow {
    position: absolute;
    right: 26px;
    bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--hub-accent);
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.hub-niche__card-arrow img {
    display: block;
    width: 16px;
    height: 16px;
    object-fit: contain;
    transition: filter 0.2s ease;
}

.hub-niche__card:not(.hub-niche__card--static):hover .hub-niche__card-arrow,
.hub-niche__card:not(.hub-niche__card--static):focus-visible .hub-niche__card-arrow {
    background: var(--hub-accent);
    border-color: var(--hub-accent);
}

.hub-niche__card:not(.hub-niche__card--static):hover .hub-niche__card-arrow img,
.hub-niche__card:not(.hub-niche__card--static):focus-visible .hub-niche__card-arrow img {
    filter: brightness(0) invert(1);
}

.hub-niche__card--static {
    cursor: default;
    padding-right: 30px;
}

/* ── Кейсы ──────────────────────────────────────────── */
.hub-cases__title {
    margin: 0 0 32px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 64px;
    line-height: 1.12;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--hub-ink);
}

.hub-cases__lead {
    max-width: 1108px;
    margin: 0 0 64px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.28;
    color: var(--hub-ink);
}

.hub-cases__grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
    align-items: stretch;
}

.hub-cases__cell {
    display: flex;
    min-height: 0;
}

.hub-cases__cell > .hub-case-card {
    flex: 1 1 auto;
    width: 100%;
}

.hub-cases__cell--hidden {
    display: none;
}

.hub-cases__more {
    display: flex;
    justify-content: center;
    margin: 64px 0 0;
}

.hub-cases__load-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 440px;
    height: 64px;
    padding: 0 32px;
    border: none;
    border-radius: 16px;
    background: #fb8227;
    color: #fff;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.12;
    cursor: pointer;
    transition: background-color 0.15s ease, transform 0.15s ease;
}

.hub-cases__load-more:hover {
    background: var(--hub-accent-hover);
    transform: translateY(-1px);
}

.hub-case-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 1057px;
    height: 100%;
    background: #f5f6f8;
    border-radius: 32px;
    overflow: hidden;
}

.hub-case-card > * {
    margin: 0 40px;
    padding: 40px 0;
}

.hub-case-card > *:first-child {
    margin: 0;
}

.hub-case-card__full-link {
    position: absolute;
    inset: 0;
    z-index: 30;
    margin: 0 !important;
    padding: 0 !important;
}

.hub-case-card__full-link:focus-visible {
    outline: 2px solid var(--hub-accent);
    outline-offset: 3px;
}

.hub-case-card__info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    height: 157px;
    min-height: 157px;
    padding: 0 40px;
    background: var(--hub-accent);
    border-radius: 32px 32px 0 0;
}

.hub-case-card__heading {
    width: 100%;
    margin: 0;
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.12;
    text-align: left;
}

.hub-case-card__client {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 32px !important;
    padding-bottom: 32px !important;
}

.hub-case-card__client-logo {
    display: flex;
    flex: 0 0 284px;
    align-items: center;
    justify-content: center;
    width: 284px;
    height: 116px;
    padding: 25px 37px;
    background: #fff;
    border-radius: 17px;
    box-sizing: border-box;
}

.hub-case-card__client-logo img {
    display: block;
    max-width: 100%;
    max-height: 66px;
    object-fit: contain;
}

.hub-case-card__client-meta {
    flex: 1;
    min-width: 0;
}

.hub-case-card__client-name {
    margin: 0 0 4px;
    color: var(--hub-ink);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.12;
}

.hub-case-card__client-desc {
    margin: 0;
    color: var(--hub-muted);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.12;
}

.hub-case-card__client + .hub-case-card__container {
    padding-top: 0;
}

.hub-case-card__chars {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 20px;
}

.hub-case-card__chars th,
.hub-case-card__chars td {
    text-align: start;
    vertical-align: top;
    font-size: 18px;
    line-height: 1.12;
    color: var(--hub-ink);
}

.hub-case-card__chars th {
    color: var(--hub-muted);
    font-weight: 400;
    white-space: nowrap;
    width: 1%;
}

.hub-case-card__chars td {
    padding-left: 12px;
    font-weight: 500;
}

.hub-case-card__chars-row--result th,
.hub-case-card__chars-row--result td {
    vertical-align: top;
}

.hub-case-card__chars-row--result td {
    color: var(--hub-ink);
}

.hub-case-card__info,
.hub-case-card__client,
.hub-case-card__container {
    flex-shrink: 0;
}

.hub-case-card__chars-accent {
    color: var(--hub-accent);
}

.hub-case-card__image {
    margin-top: auto !important;
    padding-top: 0 !important;
    flex-shrink: 0;
}

.hub-case-card__action {
    padding-top: 0 !important;
    flex-shrink: 0;
}

.hub-case-card__image-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
}

.hub-case-card__image-header p {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.12;
    color: var(--hub-ink);
}

.hub-case-card__image-chars {
    display: flex;
    gap: 16px;
}

.hub-case-card__image-char {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hub-case-card__image-char p {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.12;
}

.hub-case-card__image-content {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 8;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
}

.hub-case-card__image-content > svg,
.hub-case-card__image-content > .svg,
.hub-case-card__image-content > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    filter: blur(5px);
    scale: 1.03;
}

.hub-case-card__nda {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 12px 16px rgba(0, 0, 0, 0.04);
}

.hub-case-card__slider,
.hub-case-card__slider .slick-list,
.hub-case-card__slider .slick-track {
    height: 100%;
}

.hub-case-card__slider .slick-slide > div {
    height: 100%;
    padding: 15px;
}

.hub-case-card__slider .cases__item-chart-wrap,
.hub-case-card__slider .cases__item-chart-internal-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hub-case-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 220px;
    height: 64px;
    padding: 0 24px;
    border: none;
    border-radius: 16px;
    background: #fb8227;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.12;
    transition: background-color 0.2s, opacity 0.2s;
}

.hub-case-card__btn svg path {
    fill: #fff;
}

.hub-case-card--clickable:hover .hub-case-card__btn,
.hub-case-card--clickable:focus-within .hub-case-card__btn {
    background: var(--hub-accent-hover);
    color: #fff;
}

.hub-case-card--clickable:hover .hub-case-card__btn svg path,
.hub-case-card--clickable:focus-within .hub-case-card__btn svg path {
    fill: #fff;
}

.hub-cases__cta {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    min-height: 386px;
    margin-top: 112px;
    padding: 64px;
    border-radius: 32px;
    color: #fff;
    background-image: var(--hub-cases-cta-pic, none),
        linear-gradient(113deg, #f7b432 0%, #fa8026 100%);
    background-repeat: no-repeat, no-repeat;
    background-position: right bottom, 0 0;
}

.hub-cases__cta-body {
    position: relative;
    z-index: 1;
    max-width: 950px;
}

.hub-cases__cta-title {
    margin: 0 0 32px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 64px;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: #fff;
    text-decoration: none;
}

.hub-cases__cta-text {
    margin: 0 0 64px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.28;
    color: #fff;
}

.hub-cases__cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 376px;
    height: 64px;
    padding: 0 32px;
    border: none;
    border-radius: 16px;
    background: #fff;
    color: #fb8227;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.12;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.15s ease;
}

.hub-cases__cta-btn:hover,
.hub-cases__cta-btn:focus-visible {
    opacity: 0.92;
    text-decoration: none;
}

@media (max-width: 1100px) {
    .hub-case-card {
        min-height: 0;
    }

    .hub-case-card > * {
        margin: 0 24px;
        padding: 24px 0;
    }

    .hub-case-card__info {
        padding: 0 24px;
    }

    .hub-case-card__heading {
        font-size: 24px;
    }

    .hub-case-card__client-logo {
        flex-basis: 200px;
        width: 200px;
        height: 96px;
        padding: 16px 24px;
    }

    .hub-case-card__btn {
        width: auto;
        min-width: 220px;
        padding: 0 24px;
    }
}

@media (max-width: 950px) {
    .hub-cases__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hub-case-card__heading {
        font-size: 20px;
    }

    .hub-case-card__client {
        flex-direction: column;
        align-items: flex-start;
    }

    .hub-case-card__client-logo {
        flex-basis: auto;
        width: 100%;
        max-width: 284px;
    }

    .hub-case-card__chars th,
    .hub-case-card__chars td {
        font-size: 12px;
    }
}

@media (max-width: 767px) {
    .hub-case-card__heading {
        font-size: 20px;
    }

    .hub-case-card__btn {
        width: 100%;
        justify-content: center;
    }

    .hub-case-card__nda {
        font-size: 12px;
        width: 100px;
        height: 50px;
        gap: 5px;
    }

    .hub-case-card__slider .slick-slide > div {
        padding: 5px;
    }
}

/* ── Тарифы (Figma 2370:654) ────────────────────────── */
.hub-tariffs {
    background: #1d1d1d;
    color: #fff;
}

.hub-tariffs__title {
    margin: 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 64px;
    line-height: 1.12;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #fff;
}

.hub-tariffs__title-line {
    display: inline;
}

.hub-tariffs__title-line--accent {
    background: linear-gradient(90deg, #fb8227 0%, #f7b432 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.hub-tariffs__title-line--wrap::before {
    content: "\A";
    white-space: pre;
}

.hub-tariffs__lead {
    max-width: 1368px;
    margin: 32px 0 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.28;
    color: rgba(255, 255, 255, 0.6);
}

.hub-tariffs__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 64px;
}

.hub-tariffs__card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 479px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 32px;
}

.hub-tariffs__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 12px;
    border-radius: 21px;
    background: #fb8227;
    color: #fff;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.28;
    white-space: nowrap;
}

.hub-tariffs__body {
    flex: 1 1 auto;
    padding: 32px 32px 0;
}

.hub-tariffs__head--badge {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 12px;
    row-gap: 0;
    align-items: start;
}

.hub-tariffs__head--badge .hub-tariffs__name-line:first-child {
    grid-column: 1;
    grid-row: 1;
}

.hub-tariffs__head--badge .hub-tariffs__badge {
    grid-column: 2;
    grid-row: 1;
}

.hub-tariffs__head--badge .hub-tariffs__name-line--full {
    grid-column: 1 / -1;
    grid-row: 2;
}

.hub-tariffs__name,
.hub-tariffs__name-line {
    margin: 0;
    min-width: 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.12;
    color: #fff;
    overflow-wrap: break-word;
}

.hub-tariffs__desc {
    margin: 32px 0 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.28;
    color: rgba(255, 255, 255, 0.6);
}

.hub-tariffs__footer {
    flex: 0 0 auto;
    margin-top: auto;
    padding: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hub-tariffs__price {
    margin: 0 0 24px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.12;
    background: linear-gradient(114deg, #fa8026 0%, #f7b432 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    width: fit-content;
}

.hub-tariffs__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 64px;
    padding: 0 24px;
    border: 1px solid #fb8227;
    border-radius: 16px;
    background: transparent;
    color: #fb8227;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.12;
    text-decoration: none !important;
    box-sizing: border-box;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.hub-tariffs__btn:hover,
.hub-tariffs__btn:focus,
.hub-tariffs__btn:focus-visible,
.hub-tariffs__btn:active {
    background: #fb8227;
    color: #fff;
    text-decoration: none !important;
}

/* ── Что входит + степпер ───────────────────────────── */
.hub-included__title {
    margin: 0 0 64px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 64px;
    line-height: 1.12;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--hub-ink);
}

.hub-included__title-line {
    display: inline;
}

.hub-included__title-line--wrap::before {
    content: "\A";
    white-space: pre;
}

.hub-included__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin: 0 0 64px;
}

.hub-included__card {
    display: flex;
    flex-direction: column;
    min-height: 471px;
    border-radius: 32px;
    background: var(--hub-bg);
    overflow: hidden;
}

.hub-included__card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex: 0 0 128px;
    height: 128px;
    padding: 32px 32px 0;
    border-bottom: 1px solid #cfcfcf;
}

.hub-included__card-head-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 14px;
}

.hub-included__card-code {
    margin: 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 32px;
    line-height: 1.12;
    font-weight: 600;
    color: var(--hub-ink);
}

.hub-included__card-sub {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.12;
    font-weight: 400;
    color: var(--hub-ink);
}

.hub-included__card-icon {
    display: block;
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
}

.hub-included__card-icon img {
    display: block;
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.hub-included__card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0;
    padding: 32px 32px 41px;
}

.hub-included__card-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.1875;
    font-weight: 400;
    color: #1a1919;
}

.hub-included__card-item::before {
    content: "";
    flex: 0 0 6px;
    width: 6px;
    height: 10px;
    margin-top: 5px;
    background: url("../../img/industry-hub/icons/included-chevron.svg") center / 6px 10px no-repeat;
}

.hub-stepper {
    margin: 0 0 64px;
}

.hub-stepper__title {
    margin: 0 0 24px;
    font-size: 26px;
    font-weight: 600;
}

.hub-stepper__head {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.hub-stepper__track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-anchor: none;
    scroll-behavior: smooth;
    scrollbar-width: none;
    flex: 1 1 auto;
}

.hub-stepper__track::-webkit-scrollbar {
    display: none;
}

.hub-stepper__item {
    position: relative;
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 200px;
    margin: 0;
    padding: 16px 0 0;
    border: 0;
    background: transparent;
    appearance: none;
    font: inherit;
    text-align: left;
    cursor: pointer;
    color: var(--hub-ink);
}

.hub-stepper__item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 1px;
    background: #cfcfcf;
}

.hub-stepper__item.is-active::before {
    background: var(--hub-accent);
}

.hub-stepper__num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #cfcfcf;
    color: #fff;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 32px;
    line-height: 1.12;
    font-weight: 700;
}

.hub-stepper__item.is-active .hub-stepper__num {
    background: linear-gradient(90deg, #fb8227 0%, #f7b432 100%);
    color: #fff;
}

.hub-stepper__name {
    margin-top: 22px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 20px;
    line-height: 1.12;
    font-weight: 600;
    color: var(--hub-ink);
}

.hub-stepper__desc {
    display: block;
    visibility: hidden;
    margin-top: 10px;
    min-height: calc(14px * 1.2 * 2);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--hub-muted);
}

.hub-stepper__item.is-active .hub-stepper__desc {
    visibility: visible;
}

.hub-stepper__nav-group {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    flex: 0 0 auto;
}

.hub-stepper__nav {
    display: block;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.hub-stepper__nav img {
    display: block;
    width: 40px;
    height: 40px;
}

.hub-stepper__nav:disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

.hub-included__timing {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin: 0 0 64px;
}

.hub-included__timing-item {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    min-height: 119px;
    padding: 32px;
    border: 1px solid #cfcfcf;
    border-radius: 32px;
    background: #fff;
}

.hub-included__timing-icon {
    display: block;
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
}

.hub-included__timing-icon img {
    display: block;
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.hub-included__timing-body {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
}

.hub-included__timing-value {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 24px;
    line-height: 1.12;
    font-weight: 500;
    color: var(--hub-accent);
}

.hub-included__timing-label {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.28;
    color: #1a1919;
}

.hub-included__bottom {
    display: grid;
    grid-template-columns: minmax(0, 556fr) minmax(0, 786fr);
    gap: 26px;
}

.hub-included__insight {
    display: flex;
    align-items: flex-start;
    gap: 31px;
    min-height: 238px;
    padding: 32px;
    border-radius: 32px;
    border: 1px solid transparent;
    background:
        linear-gradient(177deg, #fff2e8 0%, #ffdcc1 100%) padding-box,
        linear-gradient(180deg, rgba(251, 130, 39, 0) 0%, rgba(251, 130, 39, 1) 100%) border-box;
}

.hub-included__insight-icon {
    display: block;
    flex: 0 0 55px;
    width: 55px;
    height: 48px;
}

.hub-included__insight-icon img {
    display: block;
    width: 55px;
    height: 48px;
    object-fit: contain;
}

.hub-included__insight-text {
    margin: 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.28;
    color: #1a1919;
}

.hub-included__tech {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 238px;
    padding: 32px;
    border-radius: 32px;
    background: var(--hub-bg);
}

.hub-included__tech-title {
    margin: 0 0 32px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 20px;
    line-height: 1.12;
    font-weight: 600;
    color: var(--hub-ink);
}

.hub-included__tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 20px;
}

.hub-included__tech-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    border-radius: 16px;
    background: #fff;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.28;
    font-weight: 600;
    color: #777;
}

/* ── AI-видимость (Figma 2370:822) ──────────────────── */
.hub-ai {
    background: var(--hub-bg);
    color: var(--hub-ink);
}

.hub-ai__title {
    margin: 0 0 64px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 64px;
    line-height: 1.12;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--hub-ink);
}

.hub-ai__title-line {
    display: inline;
}

.hub-ai__title-line--wrap::before {
    content: "\A";
    white-space: pre;
}

.hub-ai__main {
    display: grid;
    grid-template-columns: 580px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.hub-ai__main > * {
    min-width: 0;
}

.hub-ai__text {
    max-width: 577px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.28;
    color: var(--hub-ink);
}

.hub-ai__text p {
    margin: 0 0 24px;
}

.hub-ai__text p:last-child {
    margin: 0;
}

.hub-ai__divider {
    width: 100%;
    max-width: 580px;
    height: 1px;
    margin: 32px 0;
    background: #cfcfcf;
}

.hub-ai__points {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 579px;
}

.hub-ai__point {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.hub-ai__point-icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
}

.hub-ai__point-icon img {
    display: block;
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.hub-ai__point-title {
    margin: 0 0 10px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.12;
    color: #000;
}

.hub-ai__point-text {
    margin: 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.28;
    color: #1a1919;
}

.hub-ai-mockup {
    width: 100%;
    max-width: 764px;
    justify-self: end;
}

.hub-ai-mockup__query {
    min-height: 112px;
    padding: 10px 10px 10px 53px;
    border: 1px solid #8e8e8e;
    border-radius: 32px;
    background: #fff;
}

.hub-ai-mockup__query-text {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 701px;
    min-height: 92px;
    margin: 0;
    padding: 22px 23px;
    border-radius: 22px;
    background: #f0f0f0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.28;
    color: var(--hub-ink);
}

.hub-ai-mockup__query-text-inner {
    max-width: 451px;
}

.hub-ai-mockup__compare {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 370px));
    gap: 24px;
    margin-top: 24px;
}

.hub-ai-mockup__col {
    display: flex;
    flex-direction: column;
    gap: 26px;
    min-width: 0;
}

.hub-ai-mockup__col--brand {
    gap: 24px;
}

.hub-ai-mockup__label {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    margin: 0;
    padding: 17px 18px;
    border: 1px solid #8e8e8e;
    border-radius: 32px;
    background: #f0f0f0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.28;
    text-align: center;
    color: var(--hub-ink);
}

.hub-ai-mockup__label--brand {
    border-color: var(--hub-accent);
    background: #fff2e9;
    color: var(--hub-accent);
}

.hub-ai-mockup__card {
    display: flex;
    flex-direction: column;
    min-height: 510px;
    padding: 10px;
    border: 1px solid #8e8e8e;
    border-radius: 32px;
    background: #fff;
}

.hub-ai-mockup__card--brand {
    min-height: 512px;
    border-color: var(--hub-accent);
}

.hub-ai-mockup__card-head {
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 56px;
    padding: 0 3px;
}

.hub-ai-mockup__card-head--brand {
    padding: 2px 3px 0;
}

.hub-ai-mockup__assistant-icon {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.hub-ai-mockup__assistant-title {
    min-width: 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.28;
    color: var(--hub-ink);
}

.hub-ai-mockup__card-body {
    flex: 1 1 auto;
    margin-top: 10px;
    padding: 22px;
    border-radius: 22px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.28;
    color: #777;
}

.hub-ai-mockup__card-body--plain {
    background: #f0f0f0;
}

.hub-ai-mockup__card-body--brand {
    background: rgb(251 130 39 / 10%);
}

.hub-ai-mockup__card-body p {
    margin: 0 0 24px;
}

.hub-ai-mockup__card-body p:last-child {
    margin-bottom: 0;
}

.hub-ai-mockup__accent {
    color: var(--hub-accent);
}

.hub-ai__logos {
    display: flex;
    flex-wrap: wrap;
    gap: 24.5px;
    list-style: none;
    margin: 64px 0 0;
    padding: 0;
}

.hub-ai__logo {
    width: 130px;
    height: 50px;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
}

.hub-ai__logo img {
    display: block;
    width: 130px;
    height: 50px;
    object-fit: contain;
    object-position: center;
}

/* ── Особенности (Figma 2370:865) ───────────────────── */
.hub-features {
    background: #fff;
}

.hub-features__title {
    margin: 0 0 32px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 64px;
    line-height: 1.12;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--hub-ink);
}

.hub-features__title-line {
    display: inline;
}

.hub-features__title-line--wrap::before {
    content: "\A";
    white-space: pre;
}

.hub-features__lead {
    max-width: 1368px;
    margin: 0 0 55px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.28;
    color: var(--hub-ink);
}

.hub-features__bento {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.hub-features__main {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
}

.hub-features__row {
    display: flex;
    gap: 24px;
    min-height: 306px;
}

.hub-features__card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 306px;
    padding: 32px;
    overflow: hidden;
    background: var(--hub-bg);
    border-radius: 32px;
}

.hub-features__card--sm {
    flex: 1 1 0;
}

.hub-features__card--md {
    flex: 0 0 440px;
    width: 440px;
}

.hub-features__card--wide {
    flex: 1 1 0;
}

.hub-features__card--tall {
    flex: 0 0 324px;
    width: 324px;
    min-height: 636px;
}

.hub-features__icon {
    display: block;
    width: 40px;
    height: 40px;
    margin: 0 0 24px;
}

.hub-features__icon img {
    display: block;
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.hub-features__card-title {
    margin: 0 0 24px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.12;
    color: var(--hub-ink);
}

.hub-features__card-text {
    position: relative;
    z-index: 1;
    margin: 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.28;
    color: var(--hub-ink);
}

/* Иллюстрация в слоте Figma (32,440 / 295×299), любые ассеты из админки */
.hub-features__media {
    position: absolute;
    top: 440px;
    left: 32px;
    z-index: 0;
    width: 295px;
    height: 299px;
    overflow: hidden;
    pointer-events: none;
}

.hub-features__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

/* ── Критерии YMYL/E-E-A-T (Figma 2370:918) ─────────── */
.hub-criteria {
    background: #fff;
}

.hub-criteria__title {
    margin: 0 0 32px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 64px;
    line-height: 1.12;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--hub-ink);
}

.hub-criteria__title-line {
    display: inline;
}

.hub-criteria__title-line--wrap::before {
    content: "\A";
    white-space: pre;
}

.hub-criteria__lead {
    max-width: 1368px;
    margin: 0 0 64px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.28;
    color: var(--hub-ink);
}

.hub-criteria__body {
    position: relative;
    display: grid;
    grid-template-columns: 380px minmax(0, 1fr);
    gap: 0;
    align-items: start;
}

.hub-criteria__aside {
    position: relative;
    min-height: 716px;
}

.hub-criteria__subtitle {
    position: relative;
    z-index: 1;
    max-width: 348px;
    margin: 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.12;
    color: var(--hub-ink);
}

.hub-criteria__media {
    position: absolute;
    top: 180px;
    left: 0;
    z-index: 0;
    width: 528px;
    height: 490px;
    overflow: hidden;
    pointer-events: none;
}

.hub-criteria__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left bottom;
}

.hub-criteria__rows {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hub-criteria__row {
    display: flex;
    align-items: flex-start;
    min-height: 124px;
    padding: 32px;
    background: #1d1d1d;
    border-radius: 32px;
}

.hub-criteria__icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    margin-right: 16px;
}

.hub-criteria__icon img {
    display: block;
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.hub-criteria__name-wrap {
    flex: 0 0 152px;
    margin-right: 16px;
}

.hub-criteria__name {
    display: block;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.12;
    color: #fb8227;
}

.hub-criteria__name-en {
    display: block;
    margin-top: 10px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.12;
    color: rgba(251, 130, 39, 0.5);
}

.hub-criteria__meaning {
    flex: 0 0 260px;
    margin-right: 24px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.12;
    color: #cfcfcf;
}

.hub-criteria__impl {
    flex: 1 1 0;
    min-width: 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.12;
    color: rgba(207, 207, 207, 0.6);
}

/* ── Команда ────────────────────────────────────────── */
.hub-team {
    background: var(--hub-bg);
}

.hub-team__title {
    margin: 0 0 32px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 64px;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--hub-ink);
}

.hub-team__lead {
    max-width: 1368px;
    margin: 0 0 64px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.28;
    color: var(--hub-ink);
}

.hub-team__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.hub-team__featured {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 32px;
    background: #e3e3e3;
}

.hub-team__featured > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hub-team__featured-card {
    position: absolute;
    left: 5.506%;
    bottom: 4.911%;
    width: 53.125%;
    padding: 24px;
    border-radius: 17px;
    background: #fff;
    backdrop-filter: blur(19.55px);
}

.hub-team__featured-name {
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.12;
    color: var(--hub-ink);
}

.hub-team__featured-role {
    display: block;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.12;
    color: var(--hub-muted);
}

.hub-team__mosaic {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hub-team__mosaic-large {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.hub-team__mosaic-small {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.hub-team__person {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 32px;
    background: #e3e3e3;
}

.hub-team__person > img:not(.hub-team__person-icon) {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hub-team__person--placeholder {
    background: #e3e3e3;
}

.hub-team__person-icon {
    position: absolute;
    top: 16%;
    left: 50%;
    width: 42.67%;
    height: auto;
    transform: translateX(-50%);
}

.hub-team__badge {
    position: absolute;
    right: 9.6%;
    bottom: 9.6%;
    left: 9.6%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 7px;
    border-radius: 17px;
    background: #fff;
    text-align: center;
}

.hub-team__name,
.hub-team__role {
    display: block;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.2;
}

.hub-team__name {
    color: var(--hub-ink);
}

.hub-team__role {
    color: var(--hub-muted);
}

.hub-team__person--large .hub-team__name {
    font-size: 14px;
    font-weight: 500;
}

.hub-team__person--large .hub-team__role {
    font-size: 14px;
    font-weight: 400;
}

.hub-team__person--small .hub-team__name {
    font-size: 12px;
    font-weight: 500;
}

.hub-team__person--small .hub-team__role {
    font-size: 11px;
    font-weight: 400;
}

.hub-team__person--placeholder .hub-team__role {
    font-size: 12px;
    font-weight: 400;
}

/* ── Признание ──────────────────────────────────────── */
.hub-awards__heading {
    margin: 0 0 64px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 64px;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--hub-ink);
}

.hub-awards__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: auto auto;
    gap: 24px;
}

.hub-awards__card {
    position: relative;
    display: grid;
    grid-row: span 2;
    grid-template-rows: subgrid;
    grid-template-rows: subgrid / span 2;
    min-height: 302px;
    min-width: 0;
    padding: 32px;
    overflow: hidden;
    border-radius: 32px;
    background: linear-gradient(90deg, #fb8227 0%, #f7b432 100%);
    color: #fff;
}

.hub-awards__card--dark {
    background: #1d1d1d;
}

.hub-awards__top {
    display: flex;
    grid-row: 1;
    flex-direction: column;
    align-items: flex-start;
    align-self: start;
    box-sizing: border-box;
    min-height: 103px;
    padding-bottom: 0;
}

.hub-awards__top:has(.hub-awards__year) {
    min-height: 134px;
}

.hub-awards__logo {
    display: block;
    width: auto;
    max-width: 140px;
    height: auto;
}

.hub-awards__place {
    position: absolute;
    top: 32px;
    right: 32px;
    padding: 5px 12px;
    border-radius: 21px;
    background: #1d1d1d;
    color: #fff;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.28;
    white-space: nowrap;
}

.hub-awards__card--dark .hub-awards__place {
    background: #fff;
    color: var(--hub-ink);
}

.hub-awards__year {
    width: 200px;
    max-width: 100%;
    margin: 35px 0 0;
    overflow-wrap: anywhere;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.12;
}

.hub-awards__category {
    grid-row: 2;
    align-self: start;
    margin: 0 -32px 0;
    padding: 24px 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.28;
    overflow-wrap: anywhere;
}

@supports not (grid-template-rows: subgrid) {
    .hub-awards__grid {
        grid-auto-rows: auto;
    }

    .hub-awards__card {
        display: flex;
        flex-direction: column;
        grid-row: auto;
        grid-template-rows: none;
    }

    .hub-awards__top {
        flex: 0 0 auto;
        grid-row: auto;
    }

    .hub-awards__category {
        flex: 1 1 auto;
        grid-row: auto;
    }
}

@media (max-width: 360px) {
    .hub-awards__logo {
        max-width: 110px;
    }
}

/* ── Отзывы ─────────────────────────────────────────── */
.hub-reviews {
    background: #fff;
}

.hub-reviews__title {
    margin: 0 0 64px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 64px;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--hub-ink);
}

.hub-reviews__grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hub-reviews__cell--hidden {
    display: none;
}

.hub-reviews__more {
    display: flex;
    justify-content: center;
    margin-top: 64px;
}

.hub-reviews__more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 440px;
    max-width: 100%;
    height: 64px;
    padding: 24px 32px;
    border: 0;
    border-radius: 16px;
    background: #fb8227;
    color: #fff;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.12;
    cursor: pointer;
}

.hub-review-card {
    --hub-review-card-pad-x: 40px;
    --hub-review-card-gap-head-project: 17px;
    --hub-review-card-gap-section: 24px;
    --hub-review-card-text-height: calc(16px * 1.28 * 6);
    --hub-review-card-gap-author-text: 31px;
    --hub-review-card-gap-text-readmore: 15px;
    --hub-review-card-underline-offset: 2px;
    --hub-review-card-underline-thickness: 1px;
    --hub-review-card-head-row-height: 20px;
    --hub-review-card-category-width: auto;
    --hub-review-card-head-height: 57px;
    --hub-review-card-key-result-height: 142px;
    --hub-review-card-key-result-border: #dfe0e2;
    --hub-review-card-author-height: 64px;
    --hub-review-card-readmore-height: 20px;
    --hub-review-card-meta-row-height: 20px;
    --hub-review-card-footer-height: 120px;
    --hub-review-card-case-btn-width: 201px;
    --hub-review-card-case-btn-height: 56px;
    background: var(--hub-bg);
    border-radius: 32px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-height: 779px;
    padding: 40px var(--hub-review-card-pad-x) 0;
    width: 100%;
}

.hub-review-card__head {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    gap: var(--hub-review-card-gap-head-project);
    height: var(--hub-review-card-head-height);
    margin-bottom: var(--hub-review-card-gap-section);
    min-height: var(--hub-review-card-head-height);
}

.hub-review-card__head-top {
    align-items: center;
    column-gap: 16px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) var(--hub-review-card-category-width);
    min-height: var(--hub-review-card-head-row-height);
}

.hub-review-card__domain,
.hub-review-card__project,
.hub-review-card__date {
    align-items: flex-start;
    color: #777;
    display: flex;
    font-size: 16px;
    font-weight: 400;
    gap: 10px;
    line-height: 1.28;
    min-width: 0;
}

.hub-review-card__domain {
    align-items: center;
    grid-column: 1;
    min-height: var(--hub-review-card-head-row-height);
    min-width: 0;
}

.hub-review-card__domain > a,
.hub-review-card__domain > span:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hub-review-card__project {
    align-items: center;
    max-height: var(--hub-review-card-head-row-height);
    min-height: var(--hub-review-card-head-row-height);
    overflow: hidden;
    width: 100%;
}

.hub-review-card__project-text {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hub-review-card__project .hub-review-card__icon {
    flex-shrink: 0;
    margin-top: 0;
}

.hub-review-card__date {
    align-items: center;
}

.hub-review-card__domain a {
    color: #777;
    text-decoration: none;
}

.hub-review-card__domain a:hover {
    color: var(--hub-ink);
}

.hub-review-card__category,
.hub-review-card__readmore,
.hub-review-card__letter-text {
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-thickness: var(--hub-review-card-underline-thickness);
    text-underline-offset: var(--hub-review-card-underline-offset);
}

.hub-review-card__category {
    color: var(--hub-accent);
    font-size: 16px;
    grid-column: 2;
    justify-self: end;
    line-height: 1.28;
    min-height: var(--hub-review-card-head-row-height);
    text-align: right;
    text-decoration-color: var(--hub-accent);
    white-space: nowrap;
    width: var(--hub-review-card-category-width);
}

.hub-review-card__slot {
    box-sizing: border-box;
    flex-shrink: 0;
    width: 100%;
}

.hub-review-card__slot--key-result {
    height: var(--hub-review-card-key-result-height);
    margin-bottom: var(--hub-review-card-gap-section);
    min-height: var(--hub-review-card-key-result-height);
}

.hub-review-card__slot--author {
    height: auto;
    margin-bottom: var(--hub-review-card-gap-author-text);
    min-height: var(--hub-review-card-author-height);
    overflow: visible;
}

.hub-review-card__slot--text {
    height: var(--hub-review-card-text-height);
    min-height: var(--hub-review-card-text-height);
}

.hub-review-card__slot--readmore {
    height: var(--hub-review-card-readmore-height);
    margin-top: var(--hub-review-card-gap-text-readmore);
    min-height: var(--hub-review-card-readmore-height);
}

.hub-review-card__slot--letter {
    height: var(--hub-review-card-meta-row-height);
    margin-top: var(--hub-review-card-gap-section);
    min-height: var(--hub-review-card-meta-row-height);
}

.hub-review-card__slot--date {
    height: var(--hub-review-card-meta-row-height);
    margin-bottom: var(--hub-review-card-gap-section);
    margin-top: var(--hub-review-card-gap-section);
    min-height: var(--hub-review-card-meta-row-height);
}

.hub-review-card__icon {
    align-items: center;
    display: inline-flex;
    flex: 0 0 16px;
    height: 16px;
    justify-content: center;
    width: 16px;
}

.hub-review-card__icon svg,
.hub-review-card__icon img {
    display: block;
    height: 16px;
    width: 16px;
}

.hub-review-card__icon--accent svg path {
    fill: var(--hub-accent);
}

.hub-review-card__key-result {
    background: linear-gradient(177deg, #fff2e8 0%, #ffdcc1 100%);
    border-bottom: 1px solid var(--hub-review-card-key-result-border);
    border-top: 1px solid var(--hub-review-card-key-result-border);
    box-sizing: border-box;
    height: 100%;
    margin: 0 calc(var(--hub-review-card-pad-x) * -1);
    min-height: var(--hub-review-card-key-result-height);
    padding: 24px var(--hub-review-card-pad-x);
}

.hub-review-card__key-result-title {
    align-items: center;
    color: var(--hub-accent);
    display: flex;
    font-size: 16px;
    gap: 10px;
    line-height: 1.28;
    margin-bottom: 15px;
}

.hub-review-card__key-result-text {
    color: var(--hub-ink);
    font-size: 16px;
    line-height: 1.28;
    margin: 0;
}

.hub-review-card__author {
    align-items: flex-start;
    display: flex;
    gap: 20px;
    height: auto;
    margin-bottom: 0;
    min-height: var(--hub-review-card-author-height);
}

.hub-review-card__avatar {
    border-radius: 50%;
    flex: 0 0 64px;
    height: 64px;
    overflow: hidden;
    width: 64px;
}

.hub-review-card__avatar:empty {
    visibility: hidden;
}

.hub-review-card__avatar img {
    display: block;
    height: 64px;
    object-fit: cover;
    width: 64px;
}

.hub-review-card__name {
    color: var(--hub-ink);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.28;
    margin-top: 5px;
    min-height: 26px;
}

.hub-review-card__position {
    color: #777;
    font-size: 16px;
    line-height: 1.28;
    margin-top: 4px;
    min-height: 20px;
}

.hub-review-card__position a {
    color: inherit;
    text-decoration: underline;
}

.hub-review-card__text {
    height: 100%;
    margin-bottom: 0;
    overflow: hidden;
}

.hub-review-card__text-inner,
.hub-review-card__text-inner p {
    color: var(--hub-ink);
    font-size: 16px;
    line-height: 1.28;
    margin: 0;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    line-clamp: 6;
}

.hub-review-card__readmore {
    appearance: none;
    background: none;
    border: 0;
    color: #706f6f;
    cursor: pointer;
    display: block;
    font-size: 16px;
    height: var(--hub-review-card-readmore-height);
    line-height: 1.28;
    margin: 0;
    padding: 0;
    text-align: left;
    text-decoration-color: #706f6f;
}

.hub-review-card__readmore:hover {
    color: #5a5959;
    text-decoration-color: #5a5959;
}

.hub-review-card__letter {
    align-items: center;
    color: var(--hub-accent);
    display: inline-flex;
    gap: 10px;
    height: var(--hub-review-card-meta-row-height);
    margin: 0;
    text-decoration: none;
    width: fit-content;
}

.hub-review-card__letter:hover,
.hub-review-card__letter:focus-visible {
    color: #fca34d;
}

.hub-review-card__letter-text {
    color: var(--hub-accent);
    font-size: 16px;
    line-height: 1.28;
    text-decoration-color: var(--hub-accent);
}

.hub-review-card__letter:hover .hub-review-card__letter-text,
.hub-review-card__letter:focus-visible .hub-review-card__letter-text {
    color: #fca34d;
    text-decoration-color: #fca34d;
}

.hub-review-card__letter-icon {
    flex: 0 0 14px;
    height: 16px;
    width: 14px;
}

.hub-review-card__letter-icon svg,
.hub-review-card__letter-icon img {
    display: block;
    height: 16px;
    width: 14px;
}

.hub-review-card__date {
    align-items: center;
    height: var(--hub-review-card-meta-row-height);
    margin: 0;
}

.hub-review-card__date-icon {
    flex: 0 0 16px;
    height: 16px;
    width: 16px;
}

.hub-review-card__date-icon svg,
.hub-review-card__date-icon img {
    display: block;
    height: 16px;
    width: 16px;
}

.hub-review-card__footer {
    align-items: flex-start;
    border-top: 1px solid rgba(29, 29, 29, 0.1);
    box-sizing: border-box;
    display: flex;
    flex-shrink: 0;
    justify-content: flex-start;
    margin: auto calc(var(--hub-review-card-pad-x) * -1) 0;
    min-height: var(--hub-review-card-footer-height);
    padding: 24px var(--hub-review-card-pad-x) 40px;
    width: calc(100% + var(--hub-review-card-pad-x) * 2);
}

.hub-review-card__case-btn {
    align-items: center;
    border: 1px solid var(--hub-accent);
    border-radius: 16px;
    box-sizing: border-box;
    color: var(--hub-accent);
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 18px;
    font-weight: 500;
    gap: 6px;
    height: var(--hub-review-card-case-btn-height);
    justify-content: center;
    line-height: 1.12;
    min-height: var(--hub-review-card-case-btn-height);
    padding: 0 20px;
    text-decoration: none;
    width: auto;
}

.hub-review-card__case-arrow {
    display: inline-flex;
    flex: 0 0 20px;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.hub-review-card__case-arrow svg,
.hub-review-card__case-arrow img {
    display: block;
    width: 20px;
    height: 20px;
}

.hub-review-card__case-btn--disabled {
    border-color: #c6c6c6;
    color: #c6c6c6;
    cursor: default;
    display: inline-flex;
    pointer-events: none;
}

/* Попап «Читать полностью» */
.fancybox__content .reviews__readmore .reviews__pos {
    min-height: 0;
}

.fancybox__content .reviews__readmore .reviews__middle {
    padding-top: 16px;
}

.fancybox__content .reviews__readmore .reviews__text {
    min-height: 0;
}

@media (max-width: 1200px) {
    .hub-reviews__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .hub-reviews__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hub-review-card {
        --hub-review-card-pad-x: 20px;
        --hub-review-card-text-height: calc(16px * 1.28 * 5);
        min-height: 0;
        padding-top: 24px;
    }

    .hub-review-card__text-inner,
    .hub-review-card__text-inner p {
        -webkit-line-clamp: 5;
        line-clamp: 5;
    }

    .hub-review-card__key-result {
        margin-left: calc(var(--hub-review-card-pad-x) * -1);
        margin-right: calc(var(--hub-review-card-pad-x) * -1);
        padding: 20px var(--hub-review-card-pad-x);
    }

    .hub-review-card__footer {
        margin-left: calc(var(--hub-review-card-pad-x) * -1);
        margin-right: calc(var(--hub-review-card-pad-x) * -1);
        min-height: var(--hub-review-card-footer-height);
        padding: 24px var(--hub-review-card-pad-x) 32px;
        width: calc(100% + var(--hub-review-card-pad-x) * 2);
    }

    .hub-review-card__head-top {
        grid-template-columns: minmax(0, 1fr);
    }

    .hub-review-card__category {
        justify-self: start;
        text-align: left;
        width: auto;
    }
}

/* ── Почему выбирают ────────────────────────────────── */
.hub-why {
    background: var(--hub-bg);
}

.hub-why__title {
    margin: 0 0 32px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 64px;
    line-height: 1.12;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--hub-ink);
}

.hub-why__lead {
    max-width: 1108px;
    margin: 0 0 64px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.28;
    color: var(--hub-ink);
}

.hub-why__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.hub-why__card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 32px;
    background: #fff;
    border-radius: 32px;
}

.hub-why__head {
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 64px;
    margin: 0 0 24px;
}

.hub-why__icon {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
}

.hub-why__icon img {
    display: block;
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.hub-why__card-title {
    margin: 0;
    max-width: 283px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.12;
    color: var(--hub-ink);
}

.hub-why__cols {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 46px;
    padding-top: 24px;
    border-top: 1px solid #cfcfcf;
}

.hub-why__cols::before {
    content: "";
    position: absolute;
    top: 24px;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: #cfcfcf;
    transform: translateX(-50%);
}

.hub-why__col-title {
    margin: 0 0 24px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.28;
}

.hub-why__col-text {
    margin: 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.28;
}

.hub-why__col--rush .hub-why__col-title,
.hub-why__col--rush .hub-why__col-text {
    color: var(--hub-ink);
}

.hub-why__col--others .hub-why__col-title,
.hub-why__col--others .hub-why__col-text {
    color: var(--hub-muted);
}

/* ── Оффер / форма заявки ────────────────────────────── */
.hub-offer {
    overflow: visible;
    background: #fff;
}

.hub-offer__layout {
    position: relative;
    min-height: 678px;
    overflow: visible;
}

.hub-offer__bg {
    position: absolute;
    top: 138px;
    left: 696px;
    z-index: 0;
    width: 672px;
    height: 540px;
    overflow: visible;
    pointer-events: none;
}

.hub-offer__waves {
    position: absolute;
    top: -367px;
    left: -696px;
    display: block;
    width: 3706px;
    height: 804px;
    max-width: none;
    pointer-events: none;
}

.hub-offer__main {
    position: relative;
    z-index: 2;
    max-width: 710px;
}

.hub-offer__title {
    max-width: 710px;
    margin: 0 0 32px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 64px;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--hub-ink);
}

.hub-offer__lead {
    max-width: 710px;
    margin: 0 0 34px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.28;
    color: var(--hub-ink);
}

.hub-offer__form {
    max-width: 440px;
}

.hub-offer__form .form__contact-title {
    margin: 0 0 16px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.28;
    color: var(--hub-ink);
}

.hub-offer__form .form__contact--type2 .wpcf7-form-control,
.hub-offer__form .form__contact-items {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin: 0;
}

.hub-offer__form .form__contact-item {
    box-sizing: border-box;
    display: inline-flex;
    flex: 1 1 0;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 12px 32px;
    border: 1px solid #e9e9e9;
    border-radius: 16px;
    background: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.28;
    color: var(--hub-ink);
}

.hub-offer__form .form__contact-item .icon,
.hub-offer__form .form__contact-item .icon svg {
    width: 28px;
    height: 28px;
    margin: 0;
}

.hub-offer__form .form__contact-item--phone.active,
.hub-offer__form .form__contact-item--phone:hover {
    border-color: var(--hub-accent);
    background: var(--hub-accent);
    color: #fff;
}

.hub-offer__form .form__contact-item--phone.active .icon svg path,
.hub-offer__form .form__contact-item--phone:hover .icon svg path {
    fill: #fff;
    stroke: #fff;
}

.hub-offer__form .form__item--tel,
.hub-offer__form .form__item--tel input[type="tel"] {
    box-sizing: border-box;
    height: 64px;
    border-radius: 16px;
}

.hub-offer__form .form__item--tel input[type="tel"] {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.28;
}

.hub-offer__form .form__caption {
    margin: 16px 0 24px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.28;
    color: rgba(29, 29, 29, 0.6);
}

.hub-offer__form .btn,
.hub-offer__form button[type="submit"],
.hub-offer__form input[type="submit"] {
    box-sizing: border-box;
    width: 100%;
    height: 64px;
    margin: 0 0 20px;
    padding: 24px 64px;
    border: 1px solid var(--hub-accent);
    border-radius: 16px;
    background: var(--hub-accent);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.12;
    color: #fff;
}

.hub-offer__form .checkbox-wrap {
    margin-top: 0;
    font-size: 12px;
    line-height: 16px;
    color: #777;
}

.hub-offer__form .checkbox-wrap a {
    color: #fb8227;
}

.hub-offer__media {
    position: absolute;
    top: 67px;
    left: 696px;
    z-index: 1;
    width: 672px;
    height: 611px;
    overflow: visible;
}

.hub-offer__media::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 71px;
    left: 0;
    width: 672px;
    height: 540px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 68%, #fff 100%);
}

.hub-offer__laptop {
    position: absolute;
    z-index: 1;
    top: 69px;
    left: 132px;
    display: block;
    width: 878px;
    max-width: none;
    height: auto;
}

.hub-offer__badge {
    position: absolute;
    z-index: 2;
    display: flex;
    box-sizing: border-box;
    padding: 16px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.hub-offer__badge--stat {
    top: 0;
    left: 348px;
    flex-direction: column;
    gap: 4px;
}

.hub-offer__badge--niche {
    top: 331px;
    left: 40px;
    align-items: center;
    gap: 13px;
    width: 268px;
}

.hub-offer__badge-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
}

.hub-offer__badge-icon img {
    display: block;
    width: 52px;
    height: 52px;
}

.hub-offer__badge-title {
    margin: 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.12;
    background: linear-gradient(146deg, #fa8026 0%, #f7b432 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hub-offer__badge-text {
    margin: 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: rgba(29, 29, 29, 0.6);
}

.hub-offer__badge--stat .hub-offer__badge-text {
    max-width: 143px;
}

.hub-offer__badge--niche .hub-offer__badge-title {
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    background: none;
    background-clip: border-box;
    -webkit-background-clip: border-box;
    color: var(--hub-ink);
}

@media (max-width: 1367px) {
    .hub-offer__layout {
        min-height: 0;
    }

    .hub-offer__media {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        max-width: 672px;
        height: auto;
        min-height: 400px;
        margin-top: 40px;
    }

    .hub-offer__laptop {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        margin-top: 69px;
    }

    .hub-offer__badge--stat {
        left: auto;
        right: 24px;
    }

    .hub-offer__bg {
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        height: auto;
        min-height: 280px;
    }

    .hub-offer__waves {
        left: -25%;
        width: 150%;
        height: auto;
        top: -120px;
    }

    .hub-offer__media::after {
        width: 100%;
        height: auto;
        bottom: 0;
        top: 40%;
    }
}

/* ── FAQ ────────────────────────────────────────────── */
.hub-faq {
    background: #fff;
}

/* Сброс глобальных .faq--new — своя сетка хаба */
.hub-section.hub-faq.faq--new {
    padding: var(--hub-section-y) 0;
}

.hub-faq.faq--new .faq--new__item {
    display: block;
    flex-wrap: unset;
    max-width: none;
    margin-bottom: 0;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(29, 29, 29, 0.1);
}

.hub-faq.faq--new .faq--new__item-q {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) 48px;
    gap: 24px;
    align-items: start;
    width: auto;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: normal;
}

.hub-faq.faq--new .faq--new__item-q .hub-faq__q {
    max-width: none;
    padding-right: 0;
}

.hub-faq.faq--new .faq--new__item-a {
    display: none;
    padding-top: 0;
    font-size: 16px !important;
    line-height: 1.28;
}

.hub-faq.faq--new .faq--new__item-a p {
    font-size: inherit !important;
    line-height: inherit;
    padding-top: 0;
}

.hub-faq.faq--new .hub-faq__num {
    margin: 0;
}

.hub-faq__layout {
    display: grid;
    grid-template-columns: minmax(0, 788px) 440px;
    gap: 140px;
    align-items: start;
}

.hub-faq__title {
    margin: 0 0 64px;
    max-width: 788px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 64px;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--hub-ink);
}

.hub-faq__list {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: none;
}

.hub-faq__item {
    padding: 0 0 48px;
    border: none;
    border-bottom: 1px solid rgba(29, 29, 29, 0.1);
    border-radius: 0;
    background: transparent;
}

.hub-faq__head {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) 48px;
    gap: 24px;
    align-items: start;
    cursor: pointer;
}

.hub-faq__num {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.08;
    color: rgba(29, 29, 29, 0.1);
}

.hub-faq__item.active .hub-faq__num {
    background: linear-gradient(95deg, #f7b432 0%, #fa8026 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hub-faq__q {
    margin: 0;
    padding: 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.12;
    color: var(--hub-ink);
}

.hub-faq__q::after {
    content: none;
}

.hub-faq__toggle {
    position: relative;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border: 1px solid var(--hub-ink);
    border-radius: 50%;
}

.hub-faq__toggle::before,
.hub-faq__toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--hub-ink);
    border-radius: 1px;
    transform: translate(-50%, -50%);
}

.hub-faq__toggle::before {
    width: 12px;
    height: 2px;
}

.hub-faq__toggle::after {
    width: 2px;
    height: 12px;
}

.hub-faq__item.active .hub-faq__toggle::after {
    opacity: 0;
}

.hub-faq__a {
    display: none;
    max-width: 700px;
    margin: 24px 0 0 88px;
    padding: 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.28;
    color: var(--hub-ink);
}

.hub-faq__a p {
    margin: 0;
}

.hub-faq__aside {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-width: 1025px) {
    .hub-faq__aside {
        position: sticky;
        top: 120px;
        align-self: start;
    }
}

.hub-faq__form {
    box-sizing: border-box;
    padding: 40px;
    background: var(--hub-bg);
    border-radius: 32px;
}

.hub-faq__form-text {
    margin: 0 0 31px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.28;
    color: var(--hub-ink);
}

.hub-faq__form-inner .form__contact-title {
    display: none;
}

.hub-faq__form-inner .form__contact--type2 .wpcf7-form-control,
.hub-faq__form-inner .form__contact-items {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin: 0 0 16px;
}

.hub-faq__form-inner .form__contact-item {
    box-sizing: border-box;
    display: inline-flex;
    flex: 1 1 0;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 12px 16px;
    border: 1px solid #e9e9e9;
    border-radius: 16px;
    background: #fff;
    font-size: 16px;
    line-height: 1.28;
    color: var(--hub-ink);
}

.hub-faq__form-inner .form__contact-item--phone.active,
.hub-faq__form-inner .form__contact-item--phone:hover {
    border-color: var(--hub-accent);
    background: var(--hub-accent);
    color: #fff;
}

.hub-faq__form-inner .form__item--tel input[type="tel"] {
    box-sizing: border-box;
    height: 64px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 400;
}

.hub-faq__form-inner .form__caption {
    margin: 16px 0 24px;
    font-size: 16px;
    line-height: 1.28;
    color: rgba(29, 29, 29, 0.6);
}

.hub-faq__form-inner .btn,
.hub-faq__form-inner button[type="submit"],
.hub-faq__form-inner input[type="submit"] {
    box-sizing: border-box;
    width: 100%;
    height: 64px;
    margin: 0 0 20px;
    padding: 24px 16px;
    border: 1px solid var(--hub-accent);
    border-radius: 16px;
    background: var(--hub-accent);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.12;
    color: #fff;
}

.hub-faq__form-inner .checkbox-wrap {
    margin-top: 0;
    font-size: 12px;
    line-height: 16px;
    color: #777;
}

.hub-faq__form-inner .checkbox-wrap a {
    color: #fb8227;
}

.hub-faq__expert {
    box-sizing: border-box;
    padding: 32px;
    border: 1px solid rgba(29, 29, 29, 0.1);
    border-radius: 32px;
    background: #fff;
}

.hub-faq__expert-head {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(29, 29, 29, 0.1);
}

.hub-faq__expert-photo {
    position: relative;
    display: block;
    width: 88px;
    height: 88px;
}

.hub-faq__expert-photo img {
    display: block;
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: 50%;
}

.hub-faq__expert-online {
    position: absolute;
    right: 2px;
    bottom: 2px;
    width: 20px;
    height: 20px;
    background: #4cb944;
    border: 4px solid #fff;
    border-radius: 50%;
}

.hub-faq__expert-name {
    margin: 0 0 8px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.28;
    color: var(--hub-ink);
}

.hub-faq__expert-role {
    margin: 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.28;
    color: rgba(29, 29, 29, 0.6);
}

.hub-faq__expert-tg {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.28;
    color: var(--hub-ink);
    text-decoration: none;
}

.hub-faq__expert-tg img {
    display: block;
    width: 24px;
    height: 24px;
}

/* ── Видео ──────────────────────────────────────────── */
.hub-video {
    background: var(--hub-bg);
}

.hub-video__title {
    margin: 0 0 64px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 64px;
    line-height: 1.12;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--hub-ink);
}

.hub-video__title-line {
    display: inline;
}

.hub-video__title-line--wrap::before {
    content: "\A";
    white-space: pre;
}

.hub-video__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hub-video__item {
    min-width: 0;
}

.hub-video__card {
    display: flex;
    flex-direction: column;
    min-height: 344px;
    height: 100%;
    margin: 0;
    color: var(--hub-ink);
    text-decoration: none;
}

.hub-video__card:hover,
.hub-video__card:focus,
.hub-video__card:focus-visible,
.hub-video__card:visited {
    color: var(--hub-ink);
    text-decoration: none;
}

.hub-video__thumb {
    display: block;
    flex: 0 0 181px;
    height: 181px;
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    text-decoration: none;
}

.hub-video__thumb.iframe-wrap {
    margin: 0;
}

.hub-video__thumb .iframe-wrap__inner {
    display: block;
    height: 100%;
    border-radius: 24px;
}

.hub-video__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hub-video__card-title {
    margin: 14px 0 0;
    min-height: 81px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.12;
    color: var(--hub-ink);
}

.hub-video__card-text {
    display: -webkit-box;
    margin: 0;
    max-height: 68px;
    overflow: hidden;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.28;
    color: #000;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

/* ── Статьи ─────────────────────────────────────────── */
.hub-section.hub-articles {
    padding-bottom: 0;
}

.hub-articles__title {
    margin: 0 0 64px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 64px;
    line-height: 1.12;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--hub-ink);
}

.hub-articles__title-line {
    display: inline;
}

.hub-articles__title-line--wrap::before {
    content: "\A";
    white-space: pre;
}

.hub-articles__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.hub-articles__card {
    display: flex;
    flex-direction: column;
    min-height: 293px;
    padding: 40px;
    border: 1px solid #cfcfcf;
    border-radius: 32px;
    background: #fff;
    color: var(--hub-ink);
    text-decoration: none;
}

.hub-articles__card:hover,
.hub-articles__card:focus,
.hub-articles__card:visited {
    color: var(--hub-ink);
    text-decoration: none;
}

.hub-articles__card-title {
    margin: 0;
    min-height: 105px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.12;
    color: var(--hub-ink);
}

.hub-articles__meta {
    margin: 24px 0 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.28;
    color: var(--hub-muted);
}

.hub-articles__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
    margin-top: 32px;
    height: 56px;
    padding: 21px 24px;
    border: 1px solid var(--hub-accent);
    border-radius: 16px;
    color: var(--hub-accent);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.12;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.hub-articles__btn img {
    display: block;
    width: 20px;
    height: 20px;
}

.hub-articles__card:hover .hub-articles__btn,
.hub-articles__card:focus-within .hub-articles__btn {
    background: var(--hub-accent);
    color: #fff;
}

.hub-articles__card:hover .hub-articles__btn img,
.hub-articles__card:focus-within .hub-articles__btn img {
    filter: brightness(0) invert(1);
}

/* ── Перелинковка ───────────────────────────────────── */
.hub-interlink {
    background: #fff;
}

.hub-interlink__title {
    margin: 0 0 64px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 64px;
    line-height: 1.12;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--hub-ink);
}

.hub-interlink__title-accent {
    background: linear-gradient(90deg, #fb8227 0%, #f7b432 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.hub-interlink__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.hub-interlink__card {
    display: flex;
    flex-direction: column;
    min-height: 430px;
    padding: 40px 40px 0;
    border-radius: 32px;
    background: var(--hub-bg);
    color: var(--hub-ink);
    text-decoration: none;
}

.hub-interlink__card:hover,
.hub-interlink__card:focus,
.hub-interlink__card:visited {
    color: var(--hub-ink);
    text-decoration: none;
}

.hub-interlink__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 0 0 24px;
}

.hub-interlink__icon {
    display: flex;
    flex: 0 0 96px;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #fff;
}

.hub-interlink__icon-img {
    display: block;
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.hub-interlink__num {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--hub-ink);
    opacity: 0.3;
}

.hub-interlink__card-title {
    margin: 0 0 24px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.12;
    color: var(--hub-ink);
}

.hub-interlink__card-text {
    margin: 0 0 36px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.28;
    color: var(--hub-ink);
}

.hub-interlink__footer {
    display: flex;
    align-items: center;
    margin: auto -40px 8px;
    padding: 32px 40px;
    border-top: 1px solid var(--hub-line);
}

.hub-interlink__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 56px;
    padding: 21px 24px;
    border: 1px solid var(--hub-accent);
    border-radius: 16px;
    color: var(--hub-accent);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.12;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.hub-interlink__btn img {
    display: block;
    width: 20px;
    height: 20px;
}

.hub-interlink__card:hover .hub-interlink__btn,
.hub-interlink__card:focus-within .hub-interlink__btn {
    background: var(--hub-accent);
    color: #fff;
}

.hub-interlink__card:hover .hub-interlink__btn img,
.hub-interlink__card:focus-within .hub-interlink__btn img {
    filter: brightness(0) invert(1);
}

/* ── Адаптив ────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hub {
        --hub-section-y: 80px;
    }

    .hub-section__title {
        font-size: 40px;
    }

    .hub-section__lead {
        margin-bottom: 48px;
    }

    .hub-hero__title,
    .hub-cases__cta-title {
        font-size: 40px;
    }

    .hub-pains__title {
        font-size: 40px;
        margin-bottom: 24px;
    }

    .hub-pains__lead {
        margin-bottom: 48px;
        font-size: 18px;
    }

    .hub-pains__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hub-pains__card {
        min-height: 0;
    }

    .hub-funnel__title {
        font-size: 40px;
        margin-bottom: 24px;
    }

    .hub-funnel__lead {
        margin-bottom: 48px;
        font-size: 18px;
    }

    .hub-ai__title,
    .hub-features__title,
    .hub-criteria__title {
        font-size: 40px;
        margin-bottom: 24px;
    }

    .hub-ai__text,
    .hub-features__lead,
    .hub-criteria__lead {
        font-size: 18px;
    }

    .hub-features__lead {
        margin-bottom: 48px;
    }

    .hub-funnel__steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hub-funnel__work-title {
        font-size: 28px;
    }

    .hub-niche__title {
        font-size: 40px;
        margin-bottom: 24px;
    }

    .hub-team__title,
    .hub-awards__heading,
    .hub-reviews__title {
        font-size: 40px;
        margin-bottom: 24px;
    }

    .hub-team__lead {
        margin-bottom: 48px;
        font-size: 18px;
    }

    .hub-awards__heading,
    .hub-reviews__title {
        margin-bottom: 48px;
    }

    .hub-team__layout,
    .hub-awards__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hub-included__title {
        font-size: 40px;
        margin-bottom: 48px;
    }

    .hub-included__cards {
        grid-template-columns: 1fr;
    }

    .hub-included__cards,
    .hub-stepper,
    .hub-included__timing {
        margin-bottom: 48px;
    }

    .hub-included__card {
        min-height: 0;
    }

    .hub-included__bottom {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hub-included__insight,
    .hub-included__tech {
        min-height: 0;
    }

    .hub-niche__lead {
        margin-bottom: 48px;
        font-size: 18px;
    }

    .hub-cases__title {
        font-size: 40px;
        margin-bottom: 24px;
    }

    .hub-cases__lead {
        margin-bottom: 48px;
        font-size: 18px;
    }

    .hub-cases__cta {
        min-height: 0;
        margin-top: 80px;
        padding: 48px;
    }

    .hub-cases__cta-text {
        margin-bottom: 40px;
    }

    .hub-niche__channels {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hub-niche__subtitle {
        font-size: 40px;
        margin-bottom: 24px;
    }

    .hub-niche__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hub-tariffs__title {
        font-size: 40px;
    }

    .hub-tariffs__grid {
        margin-top: 48px;
    }

    .hub-tariffs__card {
        min-height: 0;
    }

    .hub-tariffs__name {
        min-height: 0;
    }

    .hub-video__title {
        font-size: 40px;
        margin-bottom: 48px;
    }

    .hub-video__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hub-articles__title {
        font-size: 40px;
        margin-bottom: 48px;
    }

    .hub-articles__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hub-articles__card {
        min-height: 0;
    }

    .hub-interlink__title {
        font-size: 40px;
        margin-bottom: 48px;
    }

    .hub-interlink__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hub-interlink__card {
        min-height: 0;
    }

    .hub-hero__shell {
        min-height: 720px;
    }

    .hub-hero__inner,
    .hub-ai__main,
    .hub-criteria__body,
    .hub-funnel__bottom {
        grid-template-columns: 1fr;
    }

    .hub-ai-mockup {
        max-width: 100%;
        justify-self: stretch;
    }

    .hub-ai-mockup__compare {
        grid-template-columns: 1fr;
    }

    .hub-ai-mockup__query {
        min-height: 0;
        padding: 10px 20px;
    }

    .hub-ai-mockup__query-text {
        max-width: none;
        min-height: 0;
    }

    .hub-ai-mockup__query-text-inner {
        max-width: none;
    }

    .hub-ai__text,
    .hub-ai__points {
        max-width: 100%;
    }

    .hub-features__bento {
        flex-direction: column;
    }

    .hub-features__row {
        min-height: 0;
    }

    .hub-features__card--md,
    .hub-features__card--tall {
        flex: 1 1 0;
        width: auto;
        min-height: 306px;
    }

    .hub-features__card--tall {
        flex: 1 1 auto;
        width: 100%;
        min-height: 0;
    }

    .hub-features__card--tall .hub-features__media {
        position: relative;
        top: auto;
        left: auto;
        width: min(295px, 100%);
        height: auto;
        margin-top: 24px;
        align-self: flex-end;
        overflow: visible;
    }

    .hub-features__card--tall .hub-features__media img {
        height: auto;
        object-fit: contain;
        object-position: center bottom;
    }

    .hub-criteria__aside {
        position: static;
        min-height: 0;
        margin-bottom: 32px;
    }

    .hub-criteria__media {
        position: relative;
        top: 24px;
        width: min(528px, 100%);
        height: auto;
        aspect-ratio: 528 / 490;
    }

    .hub-funnel__note-text {
        max-width: 100%;
    }

    .hub-why__title {
        font-size: 40px;
        margin-bottom: 24px;
    }

    .hub-why__lead {
        margin-bottom: 48px;
        font-size: 18px;
    }

    .hub-why__card-title {
        font-size: 22px;
    }

    .hub-why__cols {
        column-gap: 24px;
    }

    .hub-offer__title {
        font-size: 40px;
        margin-bottom: 24px;
    }

    .hub-offer__lead {
        margin-bottom: 32px;
        font-size: 18px;
    }

    .hub-offer__layout {
        min-height: 0;
    }

    .hub-offer__media {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        max-width: 672px;
        height: auto;
        min-height: 400px;
        margin-top: 40px;
    }

    .hub-offer__laptop {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        margin-top: 69px;
    }

    .hub-offer__badge--stat {
        left: auto;
        right: 24px;
    }

    .hub-offer__bg {
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        height: auto;
        min-height: 280px;
    }

    .hub-offer__waves {
        left: -25%;
        width: 150%;
        height: auto;
        top: -120px;
    }

    .hub-faq__layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hub-faq__title {
        font-size: 40px;
        margin-bottom: 48px;
    }

    .hub-faq__aside {
        max-width: 440px;
    }

    .hub-cases__cta-body {
        max-width: 100%;
    }
}

/* Планшет: больше места контенту (665px), иллюстрация — остаток справа */
@media (min-width: 769px) and (max-width: 1024px) {
    .hub-hero {
        --hub-hero-content-gap: 16px;
        --hub-hero-content-width: clamp(520px, calc(100% - 200px), 665px);
    }

    .hub-hero__content {
        position: relative;
        z-index: 3;
        max-width: var(--hub-hero-content-width);
    }

    .hub-hero__title,
    .hub-hero__text {
        max-width: 100%;
    }

    .hub-hero__actions,
    .hub-hero__awards {
        max-width: min(665px, 100%);
    }

    .hub-hero__actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .hub-hero__btn {
        min-width: 0;
        width: 100%;
    }

    .hub-hero__media {
        left: var(--hub-hero-media-start);
        right: 0;
        width: auto;
        overflow: hidden;
    }

    .hub-hero__shell::after {
        left: var(--hub-hero-media-start);
        right: 0;
        width: auto;
    }

    .hub-hero__img {
        object-fit: cover;
        object-position: left center;
    }
}

@media (min-width: 920px) and (max-width: 1024px) {
    .hub-hero {
        --hub-hero-content-width: 665px;
    }

    .hub-hero__actions {
        grid-template-columns: 309px 309px;
        gap: 47px;
    }

    .hub-hero__btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hub {
        --hub-section-y: 56px;
    }

    .hub-section {
        padding: var(--hub-section-y) 0;
    }

    .hub-section__title {
        font-size: 32px;
    }

    .hub-section__lead {
        font-size: 18px;
        margin-bottom: 32px;
    }

    .hub-hero__title,
    .hub-cases__cta-title {
        font-size: 32px;
    }

    .hub-cases__title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .hub-cases__lead {
        margin-bottom: 32px;
        font-size: 18px;
    }

    .hub-cases__load-more {
        min-width: 0;
        width: 100%;
        max-width: 440px;
    }

    .hub-cases__cta {
        min-height: 0;
        margin-top: 56px;
        padding: 32px 24px;
        background-image: linear-gradient(113deg, #f7b432 0%, #fa8026 100%);
        background-repeat: no-repeat;
        background-position: 0 0;
    }

    .hub-cases__cta-title {
        margin-bottom: 20px;
    }

    .hub-cases__cta-text {
        margin-bottom: 32px;
    }

    .hub-cases__cta-btn {
        width: 100%;
        max-width: none;
        justify-content: center;
        padding: 0 16px;
        font-size: 14px;
        white-space: nowrap;
        text-align: center;
    }

    .hub-pains__title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .hub-pains__title-line--wrap::before,
    .hub-ai__title-line--wrap::before,
    .hub-features__title-line--wrap::before,
    .hub-criteria__title-line--wrap::before {
        content: " ";
        white-space: normal;
    }

    .hub-pains__lead {
        margin-bottom: 32px;
        font-size: 18px;
    }

    .hub-pains__grid {
        grid-template-columns: 1fr;
    }

    .hub-pains__card {
        display: grid;
        grid-template-columns: 64px minmax(0, 1fr);
        column-gap: 16px;
        row-gap: 12px;
        align-items: start;
        min-height: 0;
        padding: 24px;
    }

    .hub-pains__icon {
        grid-column: 1;
        grid-row: 1;
        flex: none;
        width: 64px;
        height: 64px;
        margin: 0;
    }

    .hub-pains__icon-img {
        width: 32px;
        height: 32px;
    }

    .hub-pains__card-title {
        grid-column: 2;
        grid-row: 1;
        margin: 0;
        font-size: 18px;
    }

    .hub-pains__card-text {
        grid-column: 1 / -1;
        grid-row: 2;
        font-size: 14px;
    }

    .hub-funnel__title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .hub-funnel__title-line--wrap::before {
        content: " ";
        white-space: normal;
    }

    .hub-funnel__lead {
        margin-bottom: 32px;
        font-size: 18px;
    }

    .hub-funnel__steps {
        grid-template-columns: 1fr;
        margin-bottom: 16px;
    }

    .hub-funnel__step {
        min-height: 200px;
    }

    .hub-funnel__step-num {
        font-size: 48px;
        top: 24px;
        left: 24px;
    }

    .hub-funnel__step-label {
        left: 24px;
        bottom: 24px;
        font-size: 18px;
    }

    .hub-funnel__step-media {
        top: 64px;
        right: 0;
        bottom: 56px;
        left: 24px;
        justify-content: flex-end;
    }

    .hub-funnel__step-media img {
        max-width: min(180px, 48%);
    }

    .hub-funnel__work,
    .hub-funnel__note {
        min-height: 0;
        padding: 32px 24px;
    }

    .hub-funnel__work-chart {
        top: 24px;
        right: 24px;
        width: 48px;
        height: 48px;
    }

    .hub-funnel__work-title {
        font-size: 24px;
        padding-right: 56px;
        margin-bottom: 24px;
    }

    .hub-funnel__work-list {
        gap: 16px;
    }

    .hub-niche__title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .hub-niche__title-line--wrap::before {
        content: " ";
        white-space: normal;
    }

    .hub-team__title,
    .hub-awards__heading,
    .hub-reviews__title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .hub-team__lead {
        margin-bottom: 32px;
        font-size: 18px;
    }

    .hub-awards__heading,
    .hub-reviews__title {
        margin-bottom: 32px;
    }

    .hub-team__layout,
    .hub-awards__grid {
        grid-template-columns: 1fr;
    }

    .hub-team__mosaic-large,
    .hub-team__mosaic-small {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hub-team__featured-card {
        width: auto;
        right: 5.506%;
    }

    .hub-reviews__more {
        margin-top: 32px;
    }

    .hub-reviews__more-btn {
        width: 100%;
    }

    .hub-included__title {
        font-size: 32px;
        margin-bottom: 32px;
    }

    .hub-included__title-line--wrap::before {
        content: " ";
        white-space: normal;
    }

    .hub-included__cards {
        grid-template-columns: 1fr;
    }

    .hub-included__timing {
        grid-template-columns: 1fr;
    }

    .hub-included__cards,
    .hub-stepper,
    .hub-included__timing {
        margin-bottom: 32px;
    }

    .hub-included__card-head {
        height: auto;
        flex-basis: auto;
        padding: 24px;
    }

    .hub-included__card-list {
        padding: 24px;
        gap: 16px;
    }

    .hub-included__timing-item {
        min-height: 0;
        padding: 24px;
        gap: 16px;
    }

    .hub-included__insight,
    .hub-included__tech {
        padding: 24px;
    }

    .hub-tariffs__title {
        font-size: 32px;
    }

    .hub-tariffs__title-line--wrap::before {
        content: " ";
        white-space: normal;
    }

    .hub-tariffs__grid {
        grid-template-columns: 1fr;
        margin-top: 32px;
    }

    .hub-tariffs__body {
        padding: 24px 24px 32px;
    }

    .hub-tariffs__head,
    .hub-tariffs__head--badge {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .hub-tariffs__badge {
        float: none;
        order: 1;
        padding: 4px 10px;
        border-radius: 16px;
        font-size: 13px;
        line-height: 1.2;
    }

    .hub-tariffs__name,
    .hub-tariffs__name-line {
        order: 2;
        width: 100%;
        font-size: 22px;
    }

    .hub-tariffs__name-line--full {
        order: 3;
    }

    .hub-tariffs__desc {
        margin-top: 20px;
    }

    .hub-tariffs__footer {
        padding: 24px;
    }

    .hub-niche__lead {
        margin-bottom: 32px;
        font-size: 18px;
    }

    .hub-niche__channels {
        grid-template-columns: 1fr;
    }

    .hub-niche__divider {
        margin: 48px 0;
    }

    .hub-niche__subtitle {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .hub-niche__grid {
        grid-template-columns: 1fr;
    }

    .hub-niche__card {
        min-height: 0;
        padding: 24px 64px 24px 24px;
    }

    .hub-niche__card-arrow {
        right: 16px;
        bottom: 24px;
    }

    .hub-niche__card-title {
        font-size: 20px;
    }

    .hub-video__title {
        font-size: 32px;
        margin-bottom: 32px;
    }

    .hub-video__title-line--wrap::before {
        content: " ";
        white-space: normal;
    }

    .hub-video__grid {
        grid-template-columns: 1fr;
    }

    .hub-video__card {
        min-height: 0;
    }

    .hub-video__card-title {
        min-height: 0;
    }

    .hub-articles__title {
        font-size: 32px;
        margin-bottom: 32px;
    }

    .hub-articles__title-line--wrap::before {
        content: " ";
        white-space: normal;
    }

    .hub-articles__grid {
        grid-template-columns: 1fr;
    }

    .hub-articles__card {
        min-height: 0;
        padding: 32px 24px;
    }

    .hub-articles__card-title {
        min-height: 0;
        font-size: 20px;
    }

    .hub-interlink__title {
        font-size: 32px;
        margin-bottom: 32px;
    }

    .hub-interlink__grid {
        grid-template-columns: 1fr;
    }

    .hub-interlink__card {
        min-height: 0;
        padding: 32px 24px 0;
    }

    .hub-interlink__card-title {
        font-size: 24px;
    }

    .hub-interlink__footer {
        margin-left: -24px;
        margin-right: -24px;
        padding: 24px;
    }

    .hub-interlink__icon {
        flex-basis: 80px;
        width: 80px;
        height: 80px;
    }

    .hub-funnel__note::before,
    .hub-funnel__note::after {
        top: auto;
        right: 16px;
        bottom: 16px;
        width: min(240px, 55%);
        height: 180px;
    }

    .hub-funnel__note-text {
        font-size: 20px;
        max-width: 100%;
    }

    .hub-hero__shell {
        display: block;
        min-height: 0;
    }

    .hub-hero__inner {
        padding-bottom: 40px;
    }

    .hub-hero__badge {
        font-size: 16px;
        min-height: 36px;
        margin-bottom: 20px;
    }

    .hub-hero__title {
        margin-bottom: 24px;
    }

    .hub-hero__text {
        margin-bottom: 32px;
        font-size: 18px;
    }

    .hub-hero__actions {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 32px;
        max-width: none;
    }

    .hub-hero__btn {
        width: 100%;
    }

    .hub-hero__awards {
        gap: 24px;
        max-width: none;
    }

    .hub-hero__award {
        max-width: none;
        flex: 1 1 100%;
    }

    .hub-hero__media {
        position: relative;
        width: 100%;
        margin: 0;
        min-height: 0;
        left: auto;
    }

    .hub-hero__shell::after {
        display: none;
    }

    .hub-hero__img {
        min-height: 280px;
        max-height: 360px;
        object-fit: cover;
        object-position: center;
    }

    .hub-hero {
        padding-top: 0;
    }

    .hub-hero .breadcrumbs {
        margin-bottom: 48px;
    }

    .hub-hero__actions .hub-btn {
        width: 100%;
    }

    .hub-ai__title,
    .hub-features__title,
    .hub-criteria__title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .hub-ai__text,
    .hub-features__lead,
    .hub-criteria__lead {
        margin-bottom: 32px;
        font-size: 18px;
    }

    .hub-ai__logos {
        gap: 12px;
        margin-top: 40px;
    }

    .hub-ai-mockup__card,
    .hub-ai-mockup__card--brand {
        min-height: 0;
    }

    .hub-ai-mockup__card-head {
        align-items: flex-start;
    }

    .hub-ai-mockup__card-body,
    .hub-ai-mockup__query-text-inner {
        overflow-wrap: anywhere;
    }

    .hub-features__row {
        flex-direction: column;
    }

    .hub-features__card--md,
    .hub-features__card--wide,
    .hub-features__card--tall,
    .hub-features__card--sm {
        flex: 1 1 auto;
        width: 100%;
        min-height: 0;
    }

    .hub-features__card {
        display: grid;
        grid-template-columns: 40px minmax(0, 1fr);
        grid-template-areas:
            "icon title"
            "text text"
            "media media";
        column-gap: 12px;
        row-gap: 16px;
    }

    .hub-features__card:not(:has(.hub-features__icon)) {
        grid-template-columns: 1fr;
        grid-template-areas:
            "title"
            "text"
            "media";
    }

    .hub-features__icon {
        grid-area: icon;
        margin: 0;
        align-self: start;
    }

    .hub-features__card-title {
        grid-area: title;
        margin: 0;
        align-self: center;
    }

    .hub-features__card-text {
        grid-area: text;
    }

    .hub-features__media {
        position: relative;
        top: auto;
        left: auto;
        grid-area: media;
        width: min(295px, 100%);
        height: auto;
        margin-top: 8px;
        justify-self: end;
        overflow: visible;
    }

    .hub-features__media img {
        height: auto;
        object-fit: contain;
        object-position: center bottom;
    }

    .hub-criteria__subtitle {
        font-size: 24px;
    }

    .hub-criteria__row {
        flex-wrap: wrap;
        min-height: 0;
        padding: 24px;
        gap: 12px;
    }

    .hub-criteria__icon {
        margin-right: 12px;
    }

    .hub-criteria__name-wrap,
    .hub-criteria__meaning,
    .hub-criteria__impl {
        flex: 1 1 100%;
        margin-right: 0;
    }

    .hub-stepper__head {
        flex-direction: column;
    }

    .hub-stepper__track {
        box-sizing: border-box;
        width: calc(100% + 40px);
        margin-inline: -20px;
        padding-inline: 20px;
        scroll-padding-inline: 20px;
    }

    .hub-stepper__item {
        flex: 0 0 calc(100% - 68px);
        width: calc(100% - 68px);
    }

    .hub-stepper__item::before {
        width: 100%;
    }

    .hub-stepper__nav-group {
        align-self: flex-end;
    }

    .hub-why__title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .hub-why__lead {
        margin-bottom: 32px;
        font-size: 18px;
        max-width: 100%;
    }

    .hub-why__grid {
        grid-template-columns: 1fr;
    }

    .hub-why__card {
        padding: 24px;
    }

    .hub-why__card-title {
        font-size: 20px;
        max-width: none;
    }

    .hub-why__cols {
        grid-template-columns: 1fr;
        gap: 24px;
        column-gap: 0;
    }

    .hub-why__cols::before {
        display: none;
    }

    .hub-why__col-text br {
        display: none;
    }

    .hub-offer__title {
        font-size: 32px;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .hub-offer__lead {
        margin-bottom: 24px;
        font-size: 18px;
        max-width: 100%;
    }

    .hub-offer__form {
        max-width: 100%;
    }

    .hub-offer__media {
        min-height: 280px;
        max-width: 100%;
    }

    .hub-offer__laptop {
        width: 100%;
        margin-top: 48px;
        margin-left: 0;
    }

    .hub-offer__badge--stat {
        top: -15px;
        left: auto;
        right: 12px;
    }

    .hub-offer__badge--niche {
        left: 12px;
        top: auto;
        bottom: 24px;
        width: min(268px, calc(100% - 24px));
    }

    .hub-offer__badge-title {
        font-size: 24px;
    }

    .hub-faq__title {
        font-size: 32px;
        margin-bottom: 32px;
    }

    .hub-faq__list {
        gap: 32px;
    }

    .hub-faq__item {
        padding-bottom: 32px;
    }

    .hub-faq.faq--new .faq--new__item-q {
        grid-template-columns: 48px minmax(0, 1fr) 40px;
        gap: 16px;
    }

    .hub-faq.faq--new .faq--new__item-q span {
        font-size: inherit !important;
        line-height: inherit;
    }

    .hub-faq.faq--new .faq--new__item {
        padding-bottom: 32px;
    }

    .hub-faq__head {
        grid-template-columns: 48px minmax(0, 1fr) 40px;
        gap: 16px;
    }

    .hub-faq__num {
        font-size: 32px;
    }

    .hub-faq__q {
        font-size: 24px;
    }

    .hub-faq__toggle {
        width: 40px;
        height: 40px;
    }

    .hub-faq__a {
        margin-left: 64px;
        font-size: 16px !important;
        line-height: 1.28;
    }

    .hub-faq__a p {
        font-size: inherit !important;
        line-height: inherit;
    }

    .hub-faq__aside {
        max-width: 100%;
    }

    .hub-faq__form {
        padding: 24px;
    }
}
