:root {
    --hero-text: #0B1431;
    --hero-text-contrast: #fff;
    --hero-primary: #12254A;
    --hero-primary-hover: #0e1d3a;
    --hero-outline: rgba(255, 255, 255, .85);
    --clr-text: #072650;
    --clr-accent: #1a3563;
    --clr-muted: #a2a8b3;
    --clr-border: #dfe3ea;
    --sp-1: 8px;
    --sp-2: 12px;
    --sp-3: 16px;
    --sp-4: 24px;
    --sp-5: 32px;
    --sp-6: 48px;
}

body {
    font-family: Roboto, sans-serif;
}

.hero-bottom,
.hero {
    font-family: Roboto, sans-serif;
    height: 660px;
    width: 100%;
    position: relative;
    isolation: isolate;
    min-height: clamp(520px, 70vh, 820px);
    color: var(--hero-text);
    display: grid;
    align-items: end;
    padding-block: clamp(117px, 8vh, 96px);
}

.personalized-hero {
    height: 681px;
    padding: 0 0 64px;
    margin-top: 86px;
}


.hero-bottom {
    margin: 64px 0;
    padding: 64px 240px;
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    height: 100%;
    overflow: hidden;
    /* background-position: 90% 40% !important; */
    width: 100%;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: right center !important;
    /*background-blend-mode: normal, luminosity, normal;*/
}

.hero__media video {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
}

@media (max-width: 768px) {
    .hero__media video {
        height: 100%;
        width: auto;
        left: 50%;
        transform: translateX(-50%);
    }
}

.hero__inner {
    /*width: var(--container);*/
    /*margin: 0 auto;*/
    /*padding-bottom: clamp(32px, 6vh, 64px);*/
    z-index: 1;
}

/* Badge */
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px;
    /*background: rgba(255,255,255,.65);*/
    /*backdrop-filter: blur(4px);*/
    border-radius: 6px;
    margin-bottom: clamp(16px, 2vh, 24px);
}

.badge-flag {
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
    border-radius: 3px;
    overflow: hidden;
}

.badge-flag__icon {
    display: block;
}

.hero__badge-text {
    font-size: 16px;
    letter-spacing: .12em;
    font-weight: 400;
    color: #fff;
    white-space: nowrap;
}

/* Title */
.hero__title {
    margin: 0 0 clamp(12px, 1.5vh, 16px);
    font-weight: 800;
    line-height: 88px;
    color: #B8B195;
    letter-spacing: 0;
    text-transform: uppercase;
    font-size: 80px;
    max-width: 18ch;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .12);
    z-index: 1;
}

.hero-bottom .hero__title {
    margin: 0 0 clamp(12px, 1.5vh, 16px);
    font-weight: 800;
    line-height: 48px;
    color: var(--hero-text-contrast);
    letter-spacing: 0;
    text-transform: uppercase;
    font-size: 48px;
    max-width: 850px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .12);
    z-index: 1;
}


section.hero .hero__actions .btn--primary {
    background-color: #B8B195 !important;
}
.hero__subtitle {
    font-size: 24px;
    max-width: 60ch;
    color: #fff;
}

.hero-bottom .hero__subtitle {
    font-size: 14px;
    max-width: 60ch;
    color: var(--hero-text-contrast);
    text-transform: uppercase;
    margin: 8px 0;
}

.hero__caption {
    color: var(--hero-text-contrast);
    text-transform: uppercase;
    font-size: 12px;
    margin: 8px 0;
}

@media (max-width: 768px) {
    .hero-bottom {
        height: 364px;
        padding: 0 16px 52px;
        margin: 0;
        min-height: 300px
    }

    .hero-bottom .hero__media {
        background-position: 60% 0 !important;
    }

    .hero-bottom .hero__title {
        font-size: 24px;
        line-height: 28px;
    }

    .hero-bottom .hero__actions a {
        max-width: 55% !important;
    }
}

/*.personalized-hero .container--padding-medium {*/
/*    padding: 0;*/
/*    width: 1440px;*/
/*    max-width: unset;*/
/*    margin: 0 auto;*/
/*}*/

.personalized-hero .hero__title,
.personalized-hero .hero__subtitle {
    color: var(--hero-text-contrast) !important;
}

/* Actions */
.hero__actions {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.personalized-hero .hero__actions {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    font-family: Roboto, sans-serif;
    display: inline-flex;
    font-size: 18px;
    font-style: normal;
    font-weight: 700 !important;
    line-height: normal;
    text-transform: uppercase;
    height: 44px;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: unset !important;
}

.btn:focus {
    outline: none;
}

.btn:focus-visible {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .9), 0 0 0 6px rgba(18, 37, 74, .55);
}

/* Filled */
.btn--primary {
    background: #072650 !important;
    color: var(--hero-text-contrast) !important;
    border: 1px solid var(--hero-primary) !important;
}

.btn--primary:hover {
    background: var(--hero-primary-hover) !important;
    transform: translateY(-1px);
}

.btn--primary:active {
    transform: translateY(0);
}

.btn--outline {
    background: rgba(255, 255, 255, .84);
    color: #0b1431;
    border: 1px solid rgba(11, 20, 49, .15);
}

.btn--outline:hover {
    background: #fff;
    border-color: rgba(11, 20, 49, .35);
    transform: translateY(-1px);
}

.btn--outline:active {
    transform: translateY(0);
}

.banner.main-banner.top_banner {
    padding-top: 0;
}

.personalized-hero-bottom .btn--primary,
.personalized-hero .btn--primary {
    background: rgba(184, 177, 149, 1) !important;
    border: none !important;
}

.personalized-hero-bottom .btn--primary:hover,
.personalized-hero .btn--primary:hover {
    background: rgba(184, 177, 149, 1) !important;
    transform: translateY(-1px);
}

/* Solutions block */

.solutions-v2 {
    background: #fff;
    padding: 64px 0;
}

.sv2__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px 0 24px;
}

.sv2__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.sv2__overline {
    display: inline-block;
    font: 700 12px/1.2 system-ui, -apple-system, Segoe UI, Roboto;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #CB2128;
    margin-bottom: 8px;
}

.sv2__title {
    margin: 0;
    font: 700 48px/1.15 system-ui, -apple-system, Segoe UI, Roboto;
    color: #072650;
    letter-spacing: .01em;
}

.sv2__all {
    display: inline-block;
    background: #233156;
    color: #fff;
    text-decoration: none;
    font: 700 18px/1 system-ui, -apple-system, Segoe UI, Roboto;
    padding: 12px 18px;
    white-space: nowrap;
    transition: .36s;
}

.sv2__all:hover {
    background: var(--hero-primary-hover) !important;
    transform: translateY(-1px);
}

.sv2__wrap {
    overflow: hidden;
}

.sv2__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 150px;
    gap: 20px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.sv2__track {
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
}

.sv2__track::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.sv2__item {
    scroll-snap-align: start;
}

.sv2__card {
    position: relative;
    display: block;
    width: 150px;
    height: 150px;
    border-radius: 2px;
    overflow: hidden;
}

.sv2__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: bottom;
}

.sv2__label {
    display: none;
    position: absolute;
    left: 6px;
    bottom: 6px;
    background: rgba(31, 51, 87, .92);
    color: #fff;
    padding: 6px 8px;
    border-radius: 2px;
    font: 700 11px/1.1 system-ui, -apple-system, Segoe UI, Roboto;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.sv2__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
}

.sv2__dots {
    display: flex;
    gap: 10px;
}

.sv2__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c6ccd9;
    opacity: .9;
    transition: opacity .2s ease, transform .2s ease;
}

.sv2__dot.is-active {
    background: #233156;
    opacity: 1;
    transform: scale(1.05);
}

.sv2__arrows {
    display: flex;
    gap: 12px;
}

a.sv2__arrow {
    width: 36px;
    height: 36px;
    background: #fff;
    color: #233156;
    font: 700 16px/1 system-ui, -apple-system, Segoe UI, Roboto;
    display: grid;
    place-items: center;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
    right: 20px !important;
}

#sv2__track {
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    scroll-padding-inline: 16px;
}

#sv2__track > * {
    scroll-snap-align: start;
}

.sv2__arrow:hover {
    background: #f6f8fb;
    border-color: #cfd6e1;
}

.sv2__arrow:active {
    transform: scale(.98);
}

.sv2__arrow:focus-visible {
    outline: 2px solid #233156;
    outline-offset: 2px;
}

@media (max-width: 900px) {
    .sv2__title {
        font-size: 36px
    }

    .sv2__track {
        grid-auto-columns: 150px
    }

    .sv2__card {
        width: 150px;
        height: 150px
    }
}

@media (max-width: 600px) {
    .sv2__head {
        flex-direction: column;
        align-items: flex-start
    }

    .sv2__track {
        grid-auto-columns: 150px;
        gap: 16px
    }

    .sv2__card {
        width: 150px;
        height: 150px
    }
}

@media (max-width: 720px) {
    .hero {
        align-items: end;
    }

    .hero__media {
        background-position: 76% 40% !important;
    }

    .btn {
        width: 100%;
        justify-content: center;
        --padY: 16px;
    }
}

@media (max-width: 768px) {
    .hero__title {
        font-size: 32px;
        line-height: 40px;
        font-weight: 800;
    }

    .hero__subtitle {
        font-size: 16px;
        line-height: 20px;
        font-weight: 400;
        max-width: 290px;
    }

    .btn {
        font-size: 14px;
        line-height: 18px;
    }

    .hero__badge {
        padding: 0;
        margin-bottom: 10px;
        font-size: 14px;
        gap: 5px;
        align-items: start;
    }

    .hero__badge-text {
        font-size: 14px;
    }

    .hero__actions {
        gap: 16px;
    }

    .personalized-hero .hero__actions {
        gap: 8px;
    }
}

/* Personalized program */

.prog-split {
    background: #162949;
    color: #fff;
}

.prog__form {
    max-width: 464px;
}

.prog__choice {
    min-width: 220px;
}

.prog__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 64px 24px;
    display: grid;
    gap: 32px;
    grid-template-columns: 0.9fr 1.1fr;
}

@media (max-width: 980px) {
    .prog__inner {
        grid-template-columns:1fr;
        gap: 24px;
        padding: 40px 20px
    }
}

.prog__overline {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #c6cfeb;
    margin-bottom: 6px
}

.prog__title {
    margin: 0 0 12px;
    font-size: 36px;
    font-weight: 500;
}

@media (max-width: 640px) {
    .prog__title {
        font-size: 30px
    }
}

.prog__lead {
    margin: 0 0 20px;
    font-size: 18px;
    line-height: 1.6;
    color: #d7deea;
    max-width: 560px
}

.prog__label {
    display: block;
    margin: 14px 0 8px;
    font-size: 13px;
    font-weight: 600;
    color: #cbd4ee
}

.prog__choices {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 18px;
    justify-content: space-between
}

.prog__choice {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .35);
    border-radius: 4px;
    padding: 12px 42px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color .22s ease,
    border-color .22s ease,
    color .22s ease;
}

.prog__choice:hover {
    border-color: #545454;
    background: #fff;
    color: #171A1B;
}

.prog__choice.is-active {
    border-color: #bdb79e;
    box-shadow: inset 0 0 0 1px rgba(189, 183, 158, .6)
}

.prog__cta {
    display: inline-block;
    width: 100%;
    border: 1px solid transparent;
    text-align: center;
    cursor: pointer;
    font-size: 18px;
    background: #B8B195;
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    padding: 8px 16px;
    transition: background-color .22s ease,
    border-color .22s ease,
    color .22s ease;
}

.prog__cta:hover {
    background: #fff;
    border: 1px solid #B8B195;
    color: #072650 !important;
}

.prog__right {
    display: flex;
    justify-content: center
}

.vscroll {
    width: 100%;
    max-width: 560px;
    height: clamp(320px, 48vh, 420px);
    position: relative;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: y proximity;
    touch-action: pan-y;
    -ms-overflow-style: none;
    scrollbar-width: none;
    cursor: pointer;
}

.vscroll::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.vscroll.is-drag, .vscroll.is-drag * {
    user-select: none;
}

.vscroll:active {
    cursor: pointer;
}

.vscroll__track {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 100%;
}

.vcard {
    flex: 0 0 80%;
    min-height: 220px;
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
    border: 1px solid rgba(184, 177, 149, 1)
}

.vcard img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    position: relative;
    z-index: 0;
    object-position: top;
}

.vcard::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(235deg, rgba(7, 38, 80, 0.00) 15.1%, rgba(7, 38, 80, 0.90) 91.95%);
    pointer-events: none;
    z-index: 1;
}

.vcard__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    color: #fff;
    z-index: 2;
}

.vcard__head {
    margin-bottom: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.object-position-center {
    object-position: center;
}

.vcard__icon {
    width: 40px;
    height: auto;
    margin-bottom: 12px;
    opacity: .95;
}

.vcard__title {
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 20px;
}

.vcard__text {
    margin-top: auto;
    max-width: min(520px, 78%);
    font-size: 16px;
    color: #e9eef6;
    font-weight: 300;
}

.vcard__text {
    margin: 0;
    color: #d8dfec;
    font-size: 14px;
    line-height: 1.5;
    max-width: 360px
}

/* Logo block */

.logo-strip {
    background: #ffffff;
    padding: 64px 0;
}

/* 1) Ленты должны лежать РЯДОМ, не друг на друге */
.logo-strip__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    overflow: hidden; /* маска */
    position: relative;
}

/* Трек шириной по содержимому (две копии подряд) */
/* ─── Глобальные настройки ─────────────────────────────────────────── */
.logo-strip {
    --gap: 120px; /* расстояние между логотипами */
    --height: 110px; /* высота логотипа */
    --speed: 40; /* px/сек — конечная скорость */
    --edge-fade: 24px; /* ширина затемнения по краям */
}

/* контейнер-viewport с fade-маской по краям */
.logo-strip__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    overflow: hidden;
    position: relative;
    /* мягкое «затемнение» краёв, поддерживают все современные браузеры */
    -webkit-mask-image: linear-gradient(to right,
    transparent 0,
    #072650 var(--edge-fade),
    #072650 calc(100% - var(--edge-fade)),
    transparent 100%);
    mask-image: linear-gradient(to right,
    transparent 0,
    #072650 var(--edge-fade),
    #072650 calc(100% - var(--edge-fade)),
    transparent 100%);
}

/* трек из двух одинаковых списков; анимация параметризуется через CSS vars */
.logo-strip__track {
    display: flex;
    width: max-content; /* ширина = сумме двух UL */
    gap: var(--gap);
    will-change: transform;
    animation: logo-marquee var(--duration, 40s) linear infinite;
    animation-play-state: paused; /* запустим из JS, когда всё готово */
}

/* каждый список и элементы не сжимаем */
.logo-strip__list {
    display: flex;
    align-items: center;
    gap: var(--gap);
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 0 0 auto;
}

.logo-strip__item {
    flex: 0 0 auto;
}

.logo-strip__logo {
    display: block;
    height: var(--height);
    width: auto;
}

/* едем РОВНО на ширину первой копии в пикселях (ставит JS в --loop) */
@keyframes logo-marquee {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(calc(-1 * var(--loop, 0px)), 0, 0);
    }
}

/* UX: пауза при ховере и при фокусе внутри (доступность) */
.logo-strip:hover .logo-strip__track,
.logo-strip:focus-within .logo-strip__track {
    animation-play-state: paused;
}

/* уважение к prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .logo-strip__track {
        animation: none !important;
        transform: none !important;
    }
}

/* адаптив: чуть меньше зазоры и высота на мобилках */
@media (max-width: 768px) {
    .logo-strip {
        --gap: 56px;
        --height: 84px;
        --edge-fade: 16px;
    }
}


@media (prefers-reduced-motion: reduce) {
    .logo-strip__track {
        animation: none;
        transform: none;
    }
}

/* (опционально) адаптивный зазор, чтобы на мобилках не «рвалось» */
@media (max-width: 768px) {
    .logo-strip__list {
        gap: 56px;
    }
}


.icons-item__icon img {
    max-height: 40px;
}

.community__list {
    max-height: 460px;
}


/* 4) Анимация: уезжаем на ширину самой ленты */

/* 5) Элементы */
.logo-strip__item {
    flex: 0 0 auto;
}

/* 6) Картинки */
.logo-strip__logo {
    height: 54px;
    width: auto;
    display: block;
    opacity: 1;
    transition: opacity .2s ease, filter .2s ease, transform .04s ease;
}

/* (опционально) Пауза при ховере */
.logo-strip__inner:hover .logo-strip__list {
    animation-play-state: paused;
}

/*.logo-strip__logo:hover{*/
/*    opacity:1;*/
/*    filter:none;*/
/*    transform:translateY(-1px);*/
/*}*/

@media (max-width: 1024px) {
    .logo-strip__list {
        gap: 90px;
    }

    .logo-strip__logo {
        height: 48px;
    }

    .logo-strip__list.clone {
        margin: 0 90px;
    }
}

@media (max-width: 768px) {
    .logo-strip {
        padding: 0px 0 42px
    }

    .logo-strip__list {
        gap: 60px;
    }

    .logo-strip__logo {
        height: 40px;
    }

    .logo-strip__list.clone {
        margin: 0 60px
    }

    #personalized-program .vcard img {
        height: 220px;
        object-position: top;
    }

    .personalized-hero {
        padding-bottom: 72px !important;
        height: 572px !important;
    }

    .personalized-hero .container--padding-medium {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .logo-strip__list {
        gap: 40px;
    }

    .logo-strip__logo {
        height: 34px;
    }

    .logo-strip__list.clone {
        margin: 0 40px
    }
}

.pdp {
    background: #ffffff;
}

.pdp__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px 64px 24px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
}

@media (max-width: 980px) {
    .pdp__inner {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 16px;
    }
}

.pdp__figure {
    margin: 0;
    overflow: hidden;
    background: #f3f5f9;
}

.pdp__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.pdp__overline {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #CB2128;
    font-weight: 700;
    font-size: 12px;
    margin-bottom: 8px;
}

.pdp__title {
    margin: 0 0 10px;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 800;
    color: #203055;
}

.pdp__subtitle {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.6;
    color: #657096;
    max-width: 560px;
}

.pdp__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 14px;
    padding: 0;
    list-style: none;
}

.pdp__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border: 1px solid #dfe4ee;
    border-radius: 8px;
    font-size: 12px;
    color: #556086;
    background: #f6f8fc;
    font-weight: 600;
}

.pdp__rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.pdp__stars {
    display: inline-flex;
    gap: 4px;
}

.pdp__reviews {
    font-size: 13px;
    color: #8b95ad
}

.product__main-body_content {
    padding-top: 16px;
}

.card-product-order__icons-block {
    display: flex;
    flex-direction: column;
    font-size: 10px;
    justify-content: center;
    text-align: center;
}

.pdp__buy {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: center;
    margin: 6px 0 18px;
}

.pdp__pricewrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pdp__price {
    font-size: 22px;
    font-weight: 800;
    color: #223158;
}

.pdp__infoicon {
    position: relative;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 11px;
    color: #223158;
    border: 1px solid #cfd5e3;
    cursor: default;
}

.pdp__tooltip {
    position: absolute;
    left: 50%;
    bottom: 125%;
    transform: translateX(-50%);
    white-space: nowrap;
    background: #1f2b4a;
    color: #fff;
    padding: 6px 8px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .15s ease;
    box-shadow: 0 6px 18px rgba(12, 22, 44, .15);
}

.pdp__infoicon:hover .pdp__tooltip,
.pdp__infoicon:focus .pdp__tooltip {
    opacity: 1
}

.pdp__qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid #e1e6ef;
    border-radius: 6px;
    overflow: hidden;
}

.pdp__qtybtn {
    width: 40px;
    height: 40px;
    background: #f8fafc;
    border: 0;
    color: #4b5575;
    font-size: 18px;
    cursor: pointer;
}

.pdp__qtybtn:active {
    transform: scale(.98)
}

.pdp__qtyinput {
    width: 52px;
    height: 40px;
    border: 0;
    text-align: center;
    font-weight: 700;
    color: #223158;
    -moz-appearance: textfield;
}

.pdp__qtyinput::-webkit-outer-spin-button,
.pdp__qtyinput::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.pdp__cart {
    font-size: 18px;
    grid-column: 1 / -1;
    height: 46px;
    border: 0;
    cursor: pointer;
    background: #2a3353;
    color: #fff;
    font-weight: 700;
    letter-spacing: .02em;
    transition: opacity .18s ease, transform .04s ease;
}

.pdp__cart:hover {
    opacity: .93
}

.pdp__cart:active {
    transform: translateY(1px)
}

/*.pdp__thumbs{*/
/*    display:flex; gap:18px; list-style:none; padding:8px 0 0; margin:10px 0 0;*/
/*}*/
/*.pdp__thumb{*/
/*    width:84px; height:84px; border:2px solid transparent; border-radius:50%;*/
/*    padding:0; background:transparent; cursor:pointer; position:relative;*/
/*    display:grid; place-items:center; transition:transform .06s ease, box-shadow .2s ease, border-color .2s ease;*/
/*}*/
/*.pdp__thumb img{*/
/*    width:78px; height:78px; border-radius:50%; object-fit:cover; display:block;*/
/*}*/
/*.pdp__thumb:hover{transform:translateY(-1px)}*/
/*.pdp__thumb.is-active{*/
/*    border-color:#d94a41;*/
/*    box-shadow:0 0 0 6px rgba(217,74,65,.25);*/
/*}*/

@media (max-width: 640px) {
    .pdp__title {
        font-size: 28px
    }

    .pdp__thumb {
        width: 70px;
        height: 70px
    }

    .pdp__thumb img {
        width: 64px;
        height: 64px
    }
}

/*  Review section  */
.sab-v2 {
    background: #fff;
}

.sabv2__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px 0 24px;
}

.sabv2__head {
    display: grid;
    grid-template-columns:1fr auto;
    gap: 24px;
    align-items: end;
    margin-bottom: 18px;
}

.sabv2__overline {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #CB2128;
}

.sabv2__title {
    margin: 0;
    font-size: 44px;
    font-weight: 700;
    color: #1f3357;
}

.sabv2__desc {
    margin: 0;
    max-width: 620px;
    color: #38445d;
    opacity: .9;
    font-size: 16px;
    line-height: 1.7;
}

.sabv2__cta {
    display: inline-block;
    background: #233156;
    color: #fff;
    text-decoration: none;
    padding: 12px 18px;
    font-weight: 700;
    font-size: 18px;
    height: max-content;
    transition: .36s;
}

.sabv2__cta:hover {
    background: var(--hero-primary-hover) !important;
    transform: translateY(-1px);
}

.sabv2__grid {
    list-style: none;
    margin: 28px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 24px;
    align-items: start;
    text-align: center;
}

.sabv2-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.sabv2-card__photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 2px solid #cbbf9b;
    display: grid;
    place-items: center;
    background: #fff;
}

.sabv2-card__photo img {
    width: 172px;
    height: 172px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.sabv2-card__name {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #1f3357;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: .01em;
}

.sabv2-card__role {
    margin: 0;
    color: #5a678c;
    font-size: 14px;
    line-height: 1.55;
    max-width: 280px;
}

@media (max-width: 1100px) {
    .sabv2__title {
        font-size: 24px
    }

    .sabv2__grid {
        grid-template-columns:repeat(2, 1fr);
    }
}

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

    .sabv2__cta {
        order: 3
    }

    .sabv2__grid {
        grid-template-columns:1fr;
    }

    .sabv2-card__photo {
        width: 160px;
        height: 160px
    }

    .sabv2-card__photo img {
        width: 160px;
        height: 160px
    }
}

/* Insights Banner  */
.insights-hero {
    position: relative;
    min-height: clamp(420px, 70vh, 720px);
    color: #fff;
    overflow: hidden;
}

.insights-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 28, 58, 0.85) 0%,
    rgba(15, 28, 58, 0.65) 28%,
    rgba(15, 28, 58, 0.25) 55%,
    rgba(15, 28, 58, 0.00) 85%);
    pointer-events: none;
}

.insights-hero__inner {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px 64px 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: inherit;
    justify-content: flex-end;
}

.insights-hero__overline {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #cfd6ea;
}

.insights-hero__title {
    margin: 0;
    max-width: 760px;
    font-size: clamp(28px, 4.2vw, 48px);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: .02em;
    text-transform: uppercase;
    text-wrap: balance;
}

.insights-hero__btn {
    display: inline-block;
    width: fit-content;
    margin-top: 8px;
    background: #B8B195;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: .02em;
    padding: 12px 18px;
    transition: opacity .2s ease, transform .04s ease;
}

.insights-hero__btn:hover {
    opacity: .92;
}

.insights-hero__btn:active {
    transform: translateY(1px);
}

@media (max-width: 640px) {
    .insights-hero__inner {
        padding: 36px 16px;
    }

    .insights-hero__title {
        max-width: 520px;
    }
}

/*  Community  */
.community {
    background: #fff;
    margin-top: 64px;
}

#personalized .community {
    margin-top: 0;
}

#personalized .text-reviews .reviews-pagination,
#personalized .text-reviews .reviews-items {
    margin-bottom: 0;
}

#personalized .text-reviews .reviews-pagination {
    margin: 24px 0;
}

.community__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px 0 24px;
}

#personalized .community__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
}

.community-reviews__body {
    display: flex;
    flex-direction: column;
    gap: 24px;
}


@media (min-width: 1200px) {
    .community-reviews__body {
        flex-direction: row;
    }

    .community-reviews__body.half-container > *:not(script) {
        width: calc(50% - 12px);
    }

    .community-reviews__body.half-container .community__scroller {
        margin: 0;
    }

    .community-reviews__body.half-container .community__list {
        justify-content: space-between;
        gap: 0;
    }

    .community-reviews__body.three-quarts .text-reviews {
        width: calc(75% - 12px);
        padding-left: 122px;
    }

    .community-reviews__body.three-quarts .community__scroller {
        width: calc(25% - 12px);
    }
}

.community__top {
    display: grid;
    grid-template-columns:1fr auto;
    gap: 24px;
    align-items: end;
    margin-bottom: 18px;
}

.community__top__caption {
    margin-top: 32px;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    line-height: 22px;
    color: #1F3357;
}

#problems-categories-slider .community__top {
    display: block;
}

.community__overline {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #CB2128;
}

#personalized .community__overline {
    font-weight: 400;
    font-size: 14px;
}

.community__title {
    margin: 0 0 6px;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 900;
    color: #1f3357;
    letter-spacing: .01em;
    text-wrap: balance;
}

#personalized .community__title {
    text-transform: uppercase;
    font-size: 48px;
    font-weight: 700;
    line-height: 48px;
}

#problem-group-wrapper {
    max-width: 1440px;
    margin: 32px auto 0;
}

.community__actions {
    display: flex;
    align-items: center;
    gap: 12px
}

.community__arrows {
    display: flex;
    gap: 8px
}

.community__arrow {
    width: 38px;
    height: 38px;
    border: 1px solid #e0e6f0;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background .2s ease, border-color .2s ease, transform .04s ease;
}

.community__arrow:hover {
    background: #f6f8fb;
    border-color: #cfd6e1
}

.community__arrow:active {
    transform: scale(.98)
}

.community__join {
    font-size: 18px;
    display: inline-block;
    background: #253154;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    padding: 10px 16px;
    letter-spacing: .02em;
    transition: .36s;
}

.community__join:hover {
    background: var(--hero-primary-hover) !important;
    transform: translateY(-1px);
}

.community__scroller {
    overflow: hidden
}

.community__list {
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
    display: flex;
    gap: 22px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
}

@media (max-width: 768px) {
    #personalized .community__title {
        font-size: 22px;
    }

    #problem-group-wrapper {
        margin: 32px 16px;
    }

    #problems-categories-slider {
        margin: 32px 0;
    }
}

.post {
    flex: 0 0 auto;
    scroll-snap-align: start
}

.post__card {
    background: #fff;
    overflow: hidden;
    width: 360px;
}

.reviews-slider .post__card {
    background: #fff;
    overflow: hidden;
    width: 100%;
    height: 187px;
}

.reviews-slider .post-review {
    width: 100%;
    padding: 16px;
    border: 1px solid #DEE8F8;
    margin-bottom: 24px;
}

.post__media img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.post__foot {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #fff;
    border-top: 1px solid #e9eef6;
}

.post__avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px #e5eaf3;
}

.post__user {
    font-weight: 700;
    font-size: 14px;
    color: #072650
}

.community__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
    overflow: visible;
}

.post {
    flex: 0 0 auto;
}

.post__card {
    width: 100%;
}

.post__media {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    background: #000;
    border-radius: 6px;
}

.post__media > img,
.post__media > video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.post__foot {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-top: 1px solid #e9eef6;
    background: #fff;
}

.post__foot img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.reel {
    position: relative;
    width: min(100%, 420px);
    aspect-ratio: 9 / 16;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    max-height: 437px;
}

.reel__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-height: 482px;
}

.reel__btn {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    display: grid;
    place-items: center;
    background: #D9D9D9;
    color: #072650;
    transition: background-color .2s ease, transform 60ms ease;
}

.reel__btn:hover {
    background: #DEE8F8;
}

.reel__btn:active {
    transform: translateY(1px) scale(.98);
}

.reel__btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.ic {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.ic--play {
    display: none;
}

.reel[data-state="paused"] .ic--pause {
    display: none;
}

.reel[data-state="paused"] .ic--play {
    display: block;
}

@media (max-width: 1100px) {
    .community__list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 760px) {
    .community__list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .community__list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .community__title {
        font-size: 36px
    }

    .post__card {
        width: 320px
    }

    .post__media img {
        height: 420px
    }

    .sabv2__grid {
        gap: 8px;
    }

    .product__main-body_content {
        font-weight: 600;
        font-size: 1.375rem !important;
        line-height: 28px;
        color: #072650;
    }
}

@media (max-width: 720px) {
    .community__top {
        grid-template-columns:1fr;
        gap: 10px
    }

    .community__actions {
        justify-content: flex-start
    }

    .post__card {
        width: 280px
    }

    .post__media img {
        height: 380px
    }
}

/*  Badges block  */
.icons-strip {
    background: #fff;
    padding: 64px 0;
}

.icons-strip__inner {
    margin: 0 auto;
}

.hscroll {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
}

.hscroll > * {
    scroll-snap-align: center;
}

.hscroll::-webkit-scrollbar {
    height: 0
}

.hscroll.is-drag {
    cursor: grabbing;
    user-select: none
}

.hscroll img {
    -webkit-user-drag: none;
    user-select: none
}

/* ====== ДЕСКТОП: обычная сетка, без анимации ====== */
.icons-strip__inner {
    overflow: hidden;
    position: relative;
}

.icons-strip__list {
    display: grid;
    grid-template-columns: repeat(8, minmax(120px, 1fr));
    gap: 50px 70px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: start;
    justify-items: center;
}

/* ====== МОБИЛЕ/ТАБ: превращаем в бесконечную ленту ====== */

.icons-strip__inner {
    /* держим два списка в одну строку */
    display: flex;
}

.icons-strip__inner {
    position: relative;
    overflow: hidden;
}

.icons-strip__track {
    display: flex;
    gap: 35px;
    align-items: center;
    white-space: nowrap;
    will-change: transform;
    list-style: none;
}

.icons-item {
    flex: 0 0 auto;
}

.icons-item img {
    display: block; /* без лишних baseline-отступов */
    height: 40px; /* фиксируем высоту */
    width: auto;
    object-fit: contain;
}

/* пауза на hover — не сбрасывает позицию при rAF */
.icons-strip__inner:hover .icons-strip__track {
    animation-play-state: paused;
}


.icons-item {
    text-align: center;
}

.icon {
    display: block;
    color: #20365f;
}

.icons-item__label {
    font-size: 12px;
    line-height: 1.4;
    color: #334266;
    max-width: 110px;
    margin: 0 auto;
}

/* News section */
.press-split {
    background: #fff;
}

/* News section */
.personalized-faq.how-to {
    margin-top: 64px;
}

.personalized-faq.how-to:not(.faq-block) {
    margin-top: 64px;
}

.personalized-faq.how-to:not(.faq-block) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.personalized-faq.faq-block {
    margin-bottom: 64px;
}

.press-split__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px 64px 24px;
}

.press-split__inner.how-to,
.press-split__inner.how-to .press-side {
    padding: 0 !important;
}

.press-split__inner.how-to .press-side {
    /*padding-right: 266px !important;*/
}

.press-split__inner.how-to .press-side__headline {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 36px;
    line-height: 1;
}

.personalized-faq.faq-block .press-side__headline{
    text-transform: none;
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
}

.personalized-faq .press-split__inner {
    padding: 0;
}

.press-split__overline {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #CB2128;
}

.how-to .press-split__overline {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
}

.press-split__title {
    margin: 0 0 14px;
    font-size: 48px;
    font-weight: 700;
    color: #1f3357;
    text-transform: uppercase;
}

.press-split__grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 24px;
    align-items: start;
}

.press-split__inner.how-to .press-split__grid {
    display: flex;
    gap: 24px;
    justify-content: space-between;
}

.press-split__left {
    padding-top: 32px;
}

.press-split__inner.how-to .press-split__grid .press-split__left {
    width: 50%;
}

.press-split__image {
    width: 100%;
    height: 398px;
}

.press-split__reel {
    width: 464px;
    max-height: 622px;
}

.press-split__video {
    height: 622px;
    max-height: 622px;
}

.personalized-faq.how-to .press-split__reel {
    border-radius: 0;
}

@media (max-width: 768px) {
    #personalized .icons-strip > .container {
        padding: 0 !important;
    }

    .personalized-faq.how-to {
        margin: 32px 16px 0;
    }

    .personalized-faq.how-to.faq-block {
        margin: 32px 16px;
    }

    .personalized-faq.how-to:not(.faq-block) {
        margin-top: 32px;
    }

    .personalized-faq .press-side-faq__excerpt {
        margin: 0 !important;
    }

    .press-side-faq__media.hidden {
        display: block !important;
        text-align: center;
    }

    .press-split__left .press-side-faq__media {
        width: 100%;
        margin: 16px 0;
    }

    .personalized-faq.how-to .press-split__left{
        padding-top: 0;
    }

    .press-split__inner.how-to .press-split__grid {
        flex-direction: column;
    }

    .press-split__inner.how-to .press-split__grid .press-split__left {
        width: 100%;
    }

    #personalized .text-reviews .reviews-pagination{
        margin-bottom: 0px !important;
    }

    #problems-categories-slider .post.swiper-slide {
        width: 128px !important;
    }

    #personalized .wcps-bottom {
        padding: 0 !important;
        margin-top: 16px !important;
    }

    .category_image{
        max-width: 128px !important;
    }

    .press-split__inner.how-to .press-side__headline {
        font-size: 22px;
        line-height: 22px;
    }

    .press-split__reel,
    .press-split__video {
        max-height: 460px;
    }

    #problem-group-wrapper .quiz_title__caption {
        font-size: 16px;
        line-height: 18px;
    }

    .quiz_image_block {
        width: 100% !important;
    }

    .quiz_title {
        font-size: 22px !important;
        line-height: 24px !important;
    }

    .quiz_image {
        display: none;
    }

    .quiz_block {
        max-width: 100% !important;
    }

    .form_controls__caption {
        font-size: 10px !important;
    }

    #personalized .community__top {
        margin-bottom: 16px;
    }

    .press-split__right {
        display: none;
    }

    #personalized .community {
        padding: 0 16px;
    }
}


.press-feature {
    position: relative;
}

.press-feature__link {
    display: block;
    color: inherit;
    text-decoration: none;
    border-radius: 2px;
    overflow: hidden;
    background: #f2f4f8;
}

.press-feature__figure {
    margin: 0;
    aspect-ratio: 16/15;
    overflow: hidden;
}

.press-feature__figure img {
    width: 100%;
    height: 648px;
    object-fit: cover;
    display: block;
}

.press-feature__overlay {
    position: relative;
    margin-top: -180px;
    padding: 18px 18px 18px;
    color: #fff;
    background: linear-gradient(180deg, rgba(8, 16, 34, 0) 0%, rgba(8, 16, 34, .65) 38%, rgba(8, 16, 34, .85) 100%);
}

@media (max-width: 900px) {
    .press-feature__overlay {
        margin-top: -100px;
    }

    .personalized-faq.how-to .press-split__image {
        height: 192px;
        object-fit: cover;
    }

    .personalized-faq .press-side {
        padding: 0 !important;
    }

    .personalized-faq .press-side__headline {
        font-size: 16px !important;
        line-height: 20px;
    }

    .personalized-faq .press-side__headline span:first-child {
        width: 85%;
    }

    .personalized-faq .press-side-faq__excerpt p{
        font-size: 14px !important;
    }
}

.press-feature__headline {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .01em;
}

.press-feature__excerpt {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.6;
    opacity: .95;
    max-width: 900px;
}

.press-feature__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.press-feature__logos img {
    height: 18px;
    width: auto;
    margin-right: 12px;
    opacity: .9
}

.press-feature__more {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase
}

.press-side {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 18px;
    flex-direction: column;
    height: 100%;
    justify-content: space-around;
}

.personalized-faq .press-side {
    list-style: none;
    margin: 0;
    padding: 0 0 0 122px;
    display: flex;
    gap: 18px;
    flex-direction: column;
    height: 100%;
    justify-content: start;
}

.press-side__item {
    background: #fff;
    border-radius: 2px;
}

.press-side__link {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 16px;
    align-items: start;
    color: inherit;
    text-decoration: none;
    height: 200px
}

.press-side__media {
    /*aspect-ratio: 16/9;*/
    overflow: hidden;
    border-radius: 2px;
    background: #f2f4f8;
}

.press-side__media img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.press-side__content {
    padding-top: 0;
    display: flex;
    justify-content: space-between;
    height: 100%;
    flex-direction: column
}

.personalized-faq .press-side__content {
    padding-top: 0;
    display: flex;
    justify-content: start;
    height: 100%;
    flex-direction: column;
    gap: 24px;
}

.press-side__headline {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #27406b;
}

.personalized-faq .press-side__headline {
    margin: 0 0 6px;
    font-size: 24px;
    font-weight: 400;
    text-transform: none;
    color: #1F3357;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.personalized-faq .press-side__headline .press-side__headline__title {
    max-width: 85%;
}

.press-side__excerpt {
    margin: 0;
    font-size: 18px;
    color: #072650;
    font-weight: 300;
    line-height: 150%;
}

.personalized-faq .press-side__btn {
    display: block;
    width: 210px;
    height: 44px;
    background: #193661;
    padding: 8px 16px;
    margin-top: 16px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    line-height: 28px;
}

.personalized-faq .press-side-faq__excerpt p{
    margin: 24px 0;
}
.personalized-faq .press-side-faq__excerpt{
    height: 0;
    margin: 0 24px 0 0;
    font-size: 16px;
    color: #1F3357;
    font-weight: 300;
    line-height: 22px;
    overflow: hidden;
}

.personalized-faq .press-side-faq__excerpt.opened {
    height: unset;
    overflow: visible;
}

.press-side__meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.press-side__logo {
    height: 40px;
    width: auto;
}

.press-side__more {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #27406b
}

.press-feature__link:hover .press-feature__headline,
.press-side__link:hover .press-side__headline {
    text-decoration: underline;
}

@media (max-width: 1100px) {
    .press-split__title {
        font-size: 36px
    }
}

@media (max-width: 880px) {
    .press-split__grid {
        grid-template-columns:1fr;
        gap: 20px;
    }

    .press-side__link {
        grid-template-columns:140px 1fr;
        height: auto
    }
}

.press-side__item.hide-pc {
    display: none;
}

@media (max-width: 560px) {
    .press-side__link {
        grid-template-columns:1fr;
        gap: 10px;
    }

    .press-side__media {
        /*aspect-ratio: 16/9;*/
    }

    .press-feature {
        display: none;
    }

    .press-side__item.hide-pc {
        display: list-item;
    }

    .press-feature__figure img {
        height: auto;
    }

    .press-side__media img {
        height: 193px;
        object-position: top;
    }

    .hide-pc .press-side__media {
        object-position: center;
    }
}

.wcps {
    background: #fff;
}

.wcps-swiper {
    --pad: 24px;
    padding: var(--pad);
}

.wcps-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 0;
    align-items: start;
}

.wcps-media {
    border: 1px solid #e8e8e8;
    overflow: hidden;
}

.wcps-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wcps-title {
    margin: 0 0 6px;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 800;
    color: #072650;
}

.wcps-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 6px 0 14px;
}

.wcps-reviews {
    color: #7b87a6;
    font-size: 14px;
}

.wcps-lead {
    color: #223;
    opacity: .85;
    margin: 6px 0 12px;
}

.wcps-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
    display: grid;
    gap: 8px;
}

.wcps-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #2a3557;
}

.wcps-bullet-ico {
    width: 18px;
    height: 18px;
    background: #d9d2b3;
    color: #fff;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    font-weight: 800;
    font-size: 12px;
    line-height: 1;
}

.wcps-more a {
    font-size: 18px;
    font-weight: 700;
    color: #072650;
    text-decoration: none;
}

.wcps-more a:hover {
    text-decoration: underline;
}

.wcps-buy {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.wcps-price {
    font-size: 22px;
    font-weight: 800;
    color: #233156;
    min-width: 80px;
}

.wcps-qty {
    display: flex;
    align-items: center;
    border: 1px solid #d9dfea;
    border-radius: 4px;
    overflow: hidden;
}

.wcps-qty__btn {
    width: 36px;
    height: 44px;
    border: 0;
    background: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.wcps-qty__input {
    width: 48px;
    height: 38px;
    border: 0;
    text-align: center;
    outline: none;
    font-weight: 700;
    padding-left: 15px;
    font-size: 20px;
}

.wcps-add {
    font-size: 18px;
    background: #2D3654;
    color: #fff;
    padding: 12px 18px;
    height: 44px;
    text-decoration: none;
    font-weight: 700;
}

.wcps-add:hover {
    opacity: .92;
}

.wcps-bottom {
    display: flex;
    width: 50%;
    float: right;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 22px;
}

#personalized .wcps-bottom {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 22px;
}

.community .wcps-bottom {
    margin-top: 44px;
}

.wcps-pagination {
    position: static !important;
}

.wcps-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.wcps .review-overall-rating .review-stars {
    padding-left: 0;
}

.wcps .product__main-row {
    margin: 16px 0;
}

.wcps .accordion-flat__head {
    padding-left: 0;
}

.wcps .accordion-flat__head::before {
    display: none;
}

.wcps .product__main-row .accordion-flat__row {
    margin-bottom: 16px;
}

.accordion-head-wrapper {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

@media (max-width: 1024px) {
    .wcps .wcps-media {
        width: auto;
    }
}

@media (max-width: 980px) {
    .wcps-grid {
        grid-template-columns:1fr;
    }

    .wcps-title {
        font-size: 26px;
    }
}

.wcps-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 22px;
}

.wcps-pagination {
    position: static !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

#personalized .wcps-pagination {
    position: static !important;
    display: flex;
    align-items: center;
    gap: 4px;
}

.wcps-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cfd3df;
    opacity: 1;
    margin: 0;
    padding: 0;
    border: 0;
}

#personalized .wcps-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: unset;
    background: #DEE8F8;
    opacity: 1;
    margin: 0;
    padding: 0;
    border: 0;
}

.wcps-pagination .swiper-pagination-bullet > span {
    display: none;
}

/* внутренний спан не обязателен – оставили на будущее */

#personalized .wcps-pagination .swiper-pagination-bullet-active {
    width: 8px;
    height: 8px;
    background: #1F3357;
}

#personalized .icons-strip > .container {
    width: 100vw;
    max-width: 100vw !important;
    padding: 0 79px;
}

.wcps-pagination .swiper-pagination-bullet-active {
    width: 38px;
    height: 10px;
    border-radius: 999px;
    background: #596487;
}

.wcps-prev, .wcps-next {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-size: 20px;
    display: inline-grid;
}

.wcps {
    max-width: 1280px;
    margin: 0 auto;
}

.wcps-media {
    position: relative;
    width: clamp(260px, 90vmin, 520px);
    aspect-ratio: 1 / 1;
    height: auto;
    max-width: 100%;
    border: none;
    border-radius: 4px;
    overflow: hidden;
    background: transparent;
}

.wcps-media .wcps-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.wcps-prev, .wcps-next {
    justify-content: center;
    align-items: center;
}

.sabv2-card__photo, .sabv2-card__role {
    justify-self: center;
}

.added_to_cart.wc-forward {
    display: none;
}

.sabv2-card__desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 24px 32px 0;
    gap: 8px;
}

.sab-v2 .wcps-bottom {
    display: none;
}

/*.sabv2__inner .wcps-nav, .community .wcps-nav {*/
/*    display: none;*/
/*}*/

@media (max-width: 1300px) {
    .wcps-bottom {
        float: left;
        /*width: 100%;*/
    }

    .dropdown__body-inner {
        z-index: 9999
    }

    .whatsapp {
        z-index: 8888 !important
    }

}

@media (min-width: 769px) {
    .js-mobile-slider:not(.is-enabled) .swiper-wrapper {
        display: grid;
        grid-template-columns:repeat(4, 1fr);
        gap: 24px;
    }

    .js-mobile-slider:not(.is-enabled) .swiper-slide {
        width: auto !important;
    }

    .js-mobile-slider .swiper-pagination {
        display: none;
    }

    .community .js-mobile-slider .swiper-pagination {
        display: flex;
    }

    .sabv2__inner .wcps-nav {
        display: none;
    }
}

.product__main-row.categories, .product__main-row.benefits {
    display: block;
}

.swiper-button-disabled svg path {
    stroke: #fff
}

@media (max-width: 768px) {
    .community .wcps-pagination {
        gap: 5px;
        display: none
    }

    .community .wcps-bottom {
        gap: 8px;
        justify-content: center;
    }

    .sab-v2 .wcps-bottom {
        display: flex;
        margin: 0;
        padding: 42px 16px;
    }

    .js-mobile-slider {
        overflow: hidden;
        width: 100%;
        max-width: 100%;
    }

    .js-mobile-slider .swiper-wrapper {
        height: auto;
    }

    .js-mobile-slider .swiper-slide {
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .js-mobile-slider .swiper-slide .post__media img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .js-mobile-slider .swiper-slide .post__media {
        aspect-ratio: unset;
    }

    .js-mobile-slider .swiper-wrapper {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .js-mobile-slider .swiper-wrapper::-webkit-scrollbar {
        width: 0;
        height: 0;
    }

    .sabv2__grid, .community__list {
        gap: 0;
    }

    .product__main-row.categories, .product__main-row.benefits {
        display: none;
    }
}

/* ====== Footer ====== */
.site-footer {
    background: #072650;
    color: #fff;
}

.site-footer {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.site-footer img,
.site-footer input,
.site-footer button,
.site-footer .footer__formrow,
.site-footer .footer__newsletter {
    max-width: 100%;
}

.footer__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 24px 24px 24px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 28px;
}

.footer__inner > * {
    min-width: 0;
}

.footer__overline {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #F5F5DC;
    margin-bottom: 10px;
}

.footer__title {
    margin: 0 0 6px;
    font-weight: 900;
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: .01em;
}

.footer__text {
    margin: 0 0 12px;
    color: #c8d1e3;
    font-size: 16px;
}

.footer__label {
    display: block;
    font-size: 11px;
    color: #aebad4;
    margin-bottom: 6px;
}

.footer__formrow {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer__input {
    flex: 1 1 auto;
    height: 44px;
    padding: 0 12px;
    border-radius: 6px;
    border: 1px solid #dfe5f2;
    color: #1c2740;
    font-size: 16px;
}

.footer__btn {
    height: 44px;
    padding: 0 16px;
    border: 0;
    cursor: pointer;
    font-size: 18px;
    background: #B8B195;
    color: #fff;
    font-weight: 700;
    letter-spacing: .02em;
}

.footer__btn:hover {
    opacity: .92;
}

.footer__address {
    margin-top: 96px;
}

.footer__addr-title {
    margin: 0 0 8px;
    font-size: 20px;
    color: #F5F5DC;
}

.footer__addr {
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #e7ecf6;
    font-size: 20px;
    font-weight: 400;
    min-width: 456px;
}

.footer__cols {
    display: contents;
}

.footer__col-title {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 700;
    color: #F5F5DC;
}

.footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.footer__links a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
}

.footer__links a:hover {
    text-decoration: underline;
}

.footer__links svg {
    margin-right: 8px;
    vertical-align: -3px;
    position: relative;
    top: 2px;
}

.site-footer .footer__bottom {
    max-width: 1440px;
    margin: 16px auto 0;
    padding: 18px 24px 64px;
    border-top: 1px solid rgba(255, 255, 255, .25);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    background: #072650;
}

.footer__inner .footer__logo {
    height: 56px;
    width: auto;
    display: block;
}

.footer__payments {
    text-align: right;
}

.footer__payments img {
    height: 20px;
    width: auto;
    margin-left: 10px;
    vertical-align: middle;
}

.footer__copy {
    margin-top: 8px;
    font-size: 12px;
    color: #c8d1e3;
}

@media (max-width: 980px) {
    .footer__inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .footer__inner {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .footer__formrow {
        flex-direction: column;
        align-items: stretch;
    }

    .footer__btn {
        width: 100%;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer__payments {
        text-align: left;
    }
}

.footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 150px;
    row-gap: 32px;
}

.footer__cols {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 28px;
    row-gap: 32px;
}

.footer__inner > * {
    min-width: 0;
}

@media (max-width: 980px) {
    .footer__inner {
        grid-template-columns: 1fr;
        column-gap: 0;
    }

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

@media (max-width: 640px) {
    .footer__cols {
        grid-template-columns: 1fr;
    }
}

@supports not (aspect-ratio: 1 / 1) {
    .wcps-media::before {
        content: "";
        display: block;
        padding-top: 56.25%;
    }

    .wcps-media {
        height: auto;
    }

    .wcps-media .wcps-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/*.wcps, .wcps .wcps-swiper { width:100%; max-width:100%; }*/
.solutions-v2 .sv2__controls {
    margin-top: 64px
}

.pdp__inner .wcps-bottom {
    margin-top: 64px;
}

@media (max-width: 1024px) {
    .wcps .wcps-swiper .swiper-wrapper > .swiper-slide {
        width: 100% !important;
        flex: 0 0 100% !important;
    }

    .wcps-bottom {
        width: 100%;
    }

    .community__list {
        gap: 0;
    }

    .prog__choices {
        flex-wrap: nowrap;
    }

    .vscroll {
        height: 330px;
    }

    .footer__inner {
        column-gap: 70px;
    }

    .pdp__inner .wcps-bottom {
        padding: 16px;
        margin: 0;
    }

    .solutions-v2 .sv2__controls {
        margin-top: 32px
    }
}

@media (max-width: 980px) {
    .prog__right {
        justify-content: flex-start;
    }
}

.benefits {
    display: none;
    flex-direction: column;
    gap: 11px;
    margin-top: 20px
}

.benefits .benefit p {
    padding: 0;
    margin: 0;
}

.wcps .swiper-slide .benefit img {
    max-width: 24px !important;
}

@media (max-width: 768px) {
    .benefits {
        display: flex;
    }

    .wcps .wcps-swiper {
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        overflow: hidden;
    }

    .wcps-price {
        display: none;
    }

    .wcps-qty {
        display: none;
    }

    .wcps-buy {
        margin-top: 43px;
    }

    .wcps .wcps-swiper .swiper-wrapper > .swiper-slide {
        width: 100vw !important;
        flex: 0 0 100vw !important;
    }

    .wcps .swiper-slide img,
    .wcps .swiper-slide iframe,
    .wcps .swiper-slide .slide-inner {
        max-width: 100% !important;
        width: 100% !important;
        height: auto;
    }

    .benefit {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .wcps-info {
        padding: 8px 16px;
    }

    .site-footer {
        margin-bottom: 73px;
    }

    .footer__links a {
        font-size: 16px;
    }
}


@media (max-width: 420px) {
    .wcps .wcps-swiper {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 480px) {
    .wcps-media {
        height: clamp(200px, 40vh, 380px);
    }
}

.product__main-body .card-product-order__icons {
    display: none;
}

.learn-more-product {
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    text-transform: uppercase;
    color: #072650;
    text-decoration: none;
    display: none;
}

.wcps-add span {
    display: none;
}

.wcps-add .woocommerce-Price-amount bdi {
    display: flex;
}

.limit-3-lines {
    display: -webkit-box; /* Используем flex-контейнер в виде коробки */
    -webkit-box-orient: vertical; /* Задаём вертикальную ориентацию */
    -webkit-line-clamp: 3; /* Ограничиваем количество строк */
    overflow: hidden; /* Скрываем лишнее */
    text-overflow: ellipsis; /* Добавляем "..." при обрезке */
}

@media (max-width: 500px) {
    .learn-more-product {
        text-align: center;
        width: 100%;
        display: block;
    }

    .wcps-add span {
        display: flex;
        margin-right: 5px;
    }

    .sabv2__inner {
        padding: 0 24px 0 24px;
    }

    .hero {
        padding-bottom: 50px;
        height: calc(100vh - 300px);
        min-height: unset;
    }

    .hero .container--padding-medium {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero .btn {
        font-size: 14px;
    }

    .hero__actions {
        flex-direction: row;
        gap: 0px;
        justify-content: space-between;
    }

    .hero__actions a {
        max-width: 48%;
        padding: 8px 16px;
    }

    .solutions-v2 {
        padding: 32px 0;
    }

    .sv2__title {
        font-size: 24px;
    }

    .sv2__all {
        font-size: 18px;
    }

    .sv2__inner {
        padding: 0 16px;
    }

    .prog__overline {
        font-weight: 400;
    }

    .prog__title {
        font-size: 22px;
    }

    .prog__lead {
        font-size: 14px;
    }

    .prog__label {
        font-size: 14px;
    }

    .prog__choices {
        flex-direction: row;
        gap: 8px;
    }

    .prog__choice {
        max-width: 48%;
        width: 48%;
        min-width: unset;
        font-size: 14px;
        padding: 12px 14px;
    }

    .prog__inner {
        padding: 16px;
    }

    .vcard {
        margin-bottom: 10px;
    }

    .vscroll__track {
        display: block;
    }

    .vscroll {
        height: unset;
        height: 100%;
    }

    section.icons-strip .icons-strip__list {
        gap: 35px;
    }

    .pdp__inner {
        padding: 0 0 16px;
    }

    .wcps-info {
        padding: 8px 16px;
        display: grid;
    }

    .wcps-add {
        width: 100%;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .wcps-bottom {
        padding: 42px 16px 22px;
        float: none;
        width: 100%;
        margin: 42px 0 0;
    }

    .community .wcps-bottom {
        margin: 0
    }

    .logo-strip__inner {
        padding: 0
    }

    .wcps-prev, .wcps-next {
        justify-content: center;
        align-items: center;
    }

    .wcps-more {
        order: 4;
        text-align: center;
        font-size: 18px;
        display: none;
    }

    .sabv2__title {
        font-size: 24px;
    }

    .sabv2__cta {
        text-align: center;
        max-width: 50%;
    }

    .insights-hero {
        min-height: 50vh;
    }

    .insights-hero__inner {
        justify-content: center;
    }

    .insights-hero__overline {
        font-weight: 400;
    }

    .insights-hero__title {
        font-size: 24px;
    }

    .community {
        margin-top: 32px;
    }

    .community__title {
        font-size: 24px;
    }

    .post__card {
        width: 100%;
    }

    .community__inner {
        padding: 0 16px 0 16px;
    }

    .icons-strip {
        padding: 32px 0;
    }

    .press-split__title {
        font-size: 24px;
    }

    .sabv2-card__photo {
        border: none;
        border-radius: unset;
        margin: 0 auto;
    }

    .sabv2-card__photo img {
        border-radius: 50%;
        border: 2px solid rgba(184, 177, 149, 1);
    }

    .sabv2-card__desc {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        max-width: 300px;
        margin: 30px auto 0;
        padding: 0;
        background: transparent;
    }

    .sabv2__inner .wcps-nav, .community .wcps-nav {
        display: grid;
    }

    .footer__addr {
        min-width: unset;
        font-size: 14px;
    }

    .footer__address {
        margin-top: 64px;
    }

    .footer__inner {
        padding-left: 16px;
        padding-right: 16px;
    }

    .footer__links {
        grid-template-columns: 1fr 1fr;
        font-size: 14px;
        gap: 14px;
        column-gap: 25px
    }

    .footer__col-title {
        margin-bottom: 14px;
    }

    .site-footer .footer__bottom {
        padding-bottom: 32px;
        align-items: flex-start;
    }

    .wcps .wcps-media {
        width: clamp(260px, 100vmin, 520px);
    }

    .reel {
        width: 100%;
    }

    .reel__video {
        height: 485px;
    }

    .footer__title {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .footer__text {
        margin-bottom: 16px;
    }

    .wcps-buy {
        justify-content: space-between;
    }

    .wcps-qty__input {
        padding-left: 0;
    }

    .footer__brand img {
        width: 80%;
    }

    .limit-2-lines {
        display: -webkit-box; /* Используем flex-контейнер в виде коробки */
        -webkit-box-orient: vertical; /* Задаём вертикальную ориентацию */
        -webkit-line-clamp: 2; /* Ограничиваем количество строк */
        overflow: hidden; /* Скрываем лишнее */
        text-overflow: ellipsis; /* Добавляем "..." при обрезке */
    }

    @media screen and (max-width: 768px) {
        .whatsapp {
            bottom: 80px !important;
        }
    }
}