@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded');
:root {
    --bg: #050202;
    --bg-soft: rgba(255, 255, 255, 0.1);
    --panel: rgba(20, 17, 17, 0.86);
    --panel-light: rgba(255, 255, 255, 0.14);
    --text: #ffffff;
    --muted: rgba(255, 255, 255, 0.82);
    --red: #ed1f2d;
    --red-dark: #8b1018;
    --line: rgba(255, 255, 255, 0.36);
    --radius-lg: 38px;
    --radius-md: 34px;
    --container: 1200px;
    --page-gutter: 48px;
    --font-size-hero-title: clamp(32px, 4vw, 48px);
    --font-size-section-title: clamp(28px, 2vw, 40px);
    --font-size-section-subtitle: clamp(22px, 1.55vw, 32px);
    --font-size-card-title: clamp(20px, 1.25vw, 28px);
    --font-size-body: clamp(16px, 0.95vw, 20px);
    --font-size-nav: 16px;
    --font-size-eyebrow: 16px;
    --font-size-button: clamp(16px, 1vw, 20px);
    --hero-header-offset: 126px;
    --filter-white:invert(99%) sepia(4%) saturate(16%) hue-rotate(94deg) brightness(104%) contrast(100%);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}
.material-symbols-rounded {
    font-family: 'Material Symbols Rounded';
    font-weight: normal;
    font-style: normal;
    font-size: 20px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}
body {
    position: relative;
    margin: 0;
    min-width: 320px;
    color: var(--text);

  font-family: "Montserrat", sans-serif !important;


    background: #040202;
    overflow-x: hidden;
}

body.menu-lock {
    overflow: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background: url("../img/фон3.webp") center top / cover no-repeat;
    pointer-events: none;
}

body::after {
    content: none;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(var(--container), calc(100% - (var(--page-gutter) * 2)));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 12px 0 0;
}

.header-panel {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    align-items: center;
    min-height: 98px;
    padding: 14px 42px;
    border-radius: var(--radius-lg);
    background: linear-gradient(115deg, rgba(63, 18, 18, 0.62), rgba(10, 9, 9, 0.94) 28%, rgba(10, 9, 9, 0.96) 74%, rgba(63, 18, 18, 0.42));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(12px);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    width: fit-content;
    flex-shrink: 0;
}
.nav-rules{
    padding: 20px 0;
}
.nav-rules span, .nav-rules a, .nav-rules .fa-chevron-right{
    font-size: 13px !important;
}

.logo-mark {
    width: 92px;
    height: 78px;
    display: block;
    overflow: hidden;
}

.logo-mark img {
    width: 112px;
    max-width: none;
    transform: translate(-4px, -7px);
}

.logo-text {
    max-width: 260px;
    color: #fff;
    font-size: 16px;
    line-height: 0.95;
    font-weight: 700;
    text-transform: uppercase;
}

.nav {
    display: flex;
    justify-content: center;
    gap: clamp(26px, 2.4vw, 64px);
    color: rgba(255, 255, 255, 0.88);
    font-size: var(--font-size-nav);
    flex: 1;
    flex-wrap: wrap;
}

.nav-contacts {
    display: none;
}
.footer-icon{
    height: 25px;
    width: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: var(--filter-white);
}
.nav a,
.nav-about__trigger,
.callback-link {
    transition: color 0.2s ease, opacity 0.2s ease;
}

.nav a:hover,
.nav-about:hover .nav-about__trigger,
.nav-about:focus-within .nav-about__trigger,
.callback-link:hover {
    color: var(--red);
}

.nav-about {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-about__trigger {
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    cursor: default;
}

.nav-about__menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    z-index: 25;
    width: max-content;
    min-width: 248px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background: rgba(14, 11, 11, 0.97);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -8px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.nav-about__menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 15px;
}

.nav-about:hover .nav-about__menu,
.nav-about:focus-within .nav-about__menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}




.nav .nav-about__menu a {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}

.nav .nav-about__menu a:hover {
    background: rgba(237, 31, 45, 0.14);
}
.icon-flex{
    display: flex;
    align-items: center;
    gap: 5px;
}
.callback-link {
    cursor: pointer;
    background: transparent !important;
    border: none;
    color: var(--red);
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: transparent;
    padding: 10px;
}

.menu-button span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #fff;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-open .menu-button span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-button span:nth-child(2) {
    opacity: 0;
}

.menu-open .menu-button span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.section {
    padding: clamp(84px, 8vw, 124px) 0;
}

.hero {
    min-height: calc(100dvh - var(--hero-header-offset));
    padding: 14px 0 0;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    position: relative;
}

.hero-grid {
    display: block;
    min-height: calc(100dvh - var(--hero-header-offset));
    position: relative;
    overflow: visible;
    padding-top: clamp(12px, 4vh, 48px);
    padding-right: clamp(340px, 33vw, 470px);
}

.hero-content {
    max-width: 720px;
    padding: 0 0 48px;
    align-self: start;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
}

.eyebrow {
    margin: 0 0 24px;
    color: var(--muted);
    font-size: var(--font-size-eyebrow);
    font-weight: 700;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

.hero-title {
    max-width: 700px;
    margin-bottom: 24px;
    font-size: clamp(42px, 4.8vw, 74px);
    line-height: 0.98;
    font-weight: 300;
}
.req-company-list{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hero-title strong {
    font-weight: 700;
}
.footer-text-400{
    font-size: 16px !important;
    font-weight: 300 !important;
    margin-bottom: 0 !important;
}

.section-title {
    margin-bottom: 10px;
    font-size: var(--font-size-section-title);
    line-height: 1.1;
    font-weight: 700;
}
.soc_order_buttons>:nth-child(1) > img, .soc_order_buttons>:nth-child(2) > img{
    filter: var(--filter-white);
}
.footer-title-500{
    font-weight: 500 !important;
    margin-bottom: 10px !important;
}
.section-subtitle {
    margin-bottom: 20px;
    font-size: var(--font-size-section-subtitle);
    line-height: 1.12;
    font-weight: 700;
}

.card-title {
    margin-bottom: 20px;
    font-size: var(--font-size-card-title);
    line-height: 1.15;
    font-weight: 700;
}

p {
    color: var(--text);
    font-size: var(--font-size-body);
    line-height: 1.22;
}
.header-panel{
    
}
.hero-text {
    max-width: 620px;
    font-weight: 400;
    margin-bottom: 24px;
    line-height: 1.28;
}

.facts {
    display: grid;
    gap: 10px;
    margin: 0 0 26px;
    font-size: clamp(18px, 1.3vw, 24px);
    font-weight: 500;
}

.facts span,
.history-text li {
    position: relative;
    padding-left: 34px;
}
.facts span{
    font-weight: 300;
    font-size: clamp(18px, 1.15vw, 20px);
}

.facts img{
    height: 30px;
    width: 30px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(77%) saturate(2%) hue-rotate(326deg) brightness(106%) contrast(100%);

}
.facts span{
    display: flex;
    gap: 20px;
    align-items: center;
   
}
.facts{
    display: flex;
    flex-direction: column;
}
.button {
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 22px;
    font-size: var(--font-size-button);
    font-weight: 700;
    border: 2px solid transparent;
    cursor: pointer;
}

.button-outline {
    border: 2px solid #fff;
    color: #fff;
    background: rgba(7, 5, 5, 0.1);
}

.button-red {
    width: 100%;
    color: #fff;
    background: var(--red);
}

.hero-visual,
.hero-visual-container {
    position: absolute;
    top: clamp(10px, 2.5vh, 32px);
    right: calc(((100vw - min(var(--container), calc(100vw - (var(--page-gutter) * 2)))) / -2) - 106px);
    bottom: 0;
    left: min(650px, calc(100% - 360px));
    width: auto;
    min-height: 0;
    height: auto;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    overflow: visible;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: auto 100%;
    transform: none;
    transform-origin: bottom center;
    z-index: 1;
}
.button-outline{
    width: max-content;
}
.hero-visual img,
.hero-visual video,
.hero-visual__media,
.hero-visual-container .hero-visual-img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: auto;
    height: calc(100dvh - var(--hero-header-offset) + 42px);
    max-height: calc(100dvh - var(--hero-header-offset) + 42px);
    max-width: none;
    mix-blend-mode: lighten;
    filter: saturate(0.98) contrast(1.03);
    object-fit: contain;
    object-position: right bottom;
    transform: none;
    pointer-events: none;
}

.intro {
    position: relative;
    z-index: 3;
    margin-top: 0;
    padding: 80px 0;
}

.split {
    display: flex;
    justify-content: space-between;
    gap: clamp(56px, 6vw, 140px);
    align-items: start;
    flex-wrap: nowrap;
}

.split > * {
    flex: 1 1 0;
    min-width: 0;
}

.consult-card {
    position: relative;
    z-index: 5;
    max-width: 560px;
    padding: clamp(34px, 3vw, 46px) clamp(42px, 3vw, 56px);
    border-radius: var(--radius-md);
    background: linear-gradient(116deg, rgba(77, 68, 68, 0.5), rgba(66, 57, 57, 0.56) 40%, rgba(235, 52, 68, 0.18) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
}

.consult-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 26px;
    flex-direction: row;

}

.icon-action {

    display: grid;
    place-items: center;
}

.icon-action img {
    width: 46px;
    height: 46px;
    filter: brightness(0) invert(1);
}

.tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}

.products-tabs {
    margin-top: clamp(48px, 5vw, 86px);
}

.products-tabs .tabs {
    margin-bottom: clamp(36px, 3.6vw, 62px);
}
.info_snippet p{
    color: #81c2fd !important;
}
.essent_snippet p{
    color: #e32636 !important;
}
.view_snippet p{
    color: #4dd376 !important;
}
.tab {
    line-height: normal !important;
    min-height: 74px;
    border: 2px solid rgba(255, 255, 255, 0.78);
    border-radius: 28px;
    background: rgba(8, 5, 5, 0.2);
    color: #fff;
    font: inherit;
    font-size: clamp(18px, 1.05vw, 24px);
    font-weight: 700;
    padding: 12px 18px;
    text-align: center;
}

.tab.active {
    color: #111;
    background: #fff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(34px, 2.2vw, 52px);
}

.product-grid-tab[hidden] {
    display: none;
}

.product-card {
    position: relative;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
    border-radius: 42px;
    color: #090909;
    background: #fff;
}

.product-card__surface {
    position: relative;
    display: flex;
    flex: 1;
    flex-direction: column;
    min-height: 100%;
    padding: 34px 34px 28px;
    color: inherit;
    text-decoration: none;
    border-radius: inherit;
}

.product-card__surface:focus-visible {
    outline: 3px solid var(--red);
    outline-offset: 8px;
    border-radius: 24px;
}

.product-card__developer {
    position: absolute;
    top: 28px;
    left: 28px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
}

.product-card__developer-logo {
    width: auto;
    height: auto;
    max-width: 50px;
    max-height: 54px;
    object-fit: contain;
}

.product-card__developer-tooltip {
    position: absolute;
    top: 50%;
    left: calc(100% + 12px);
    min-width: 160px;
    max-width: 240px;
    padding: 10px 12px;
    border-radius: 12px;
    color: #fff;
    background: rgba(12, 12, 14, 0.94);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
    opacity: 0;
    pointer-events: none;
    transform: translate(8px, -50%);
    transition: opacity .2s ease, transform .2s ease;
}

.product-card__developer-tooltip::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    border: 7px solid transparent;
    border-right-color: rgba(12, 12, 14, 0.94);
    transform: translateY(-50%);
}

.product-card__developer:hover .product-card__developer-tooltip {
    opacity: 1;
    transform: translate(0, -50%);
}

.product-card__developer-tooltip-label,
.product-card__developer-tooltip-name {
    display: block;
    letter-spacing: 0;
}

.product-card__developer-tooltip-label {
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
}

.product-card__developer-tooltip-name {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}
.product-img__container{
    height: max-content;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.prouct-card__img {
    width: min(200px, 100%);
    height: 200px;
    margin-top: 0 !important;
    object-fit: contain;
    margin-bottom: 30px;

}
.meta{
    font-size: 10px;
    font-weight: 400;
    width: 100%;
    padding-top: 40px;
    margin-bottom: 0 !important;
}
.slider-arrow{
        display: flex;
    align-items: center;
    justify-content: center;
}
.slider-arrow span{
      display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
}
.product-card__link{
    margin-top: 40px;
}
.product-card__link > img{
      filter: brightness(0) saturate(100%) invert(17%) sepia(92%) saturate(4434%) hue-rotate(348deg) brightness(97%) contrast(92%);
      height: 80px;
}
.product-card__link{
padding: 0 !important;
}
.product-card .card-title {
    color: #090909;
    line-height: 1.03;
}
.card-img__link{
    height: 80px;
    width: 80px;
}
.card-img__link{
    filter: brightness(0) saturate(100%) invert(17%) sepia(92%) saturate(4434%) hue-rotate(348deg) brightness(97%) contrast(92%);
}
.product-card p {
    color: #1d1d1d;
    font-size: 16px;
    line-height: 1.2;
}

.product-card__surface {
    margin-top: 0;
    align-self: stretch;
}

.product-card__link {
    margin-top: auto;
    align-self: flex-end;
    color: var(--red);
    font-size: 82px;
    line-height: 1;
    font-weight: 700;
}

.product-card__button {
    width: 100%;
    min-height: 62px;
    margin-top: auto;
    align-self: stretch;
    color: #fff !important;
    font-size: clamp(18px, 1.05vw, 22px) !important;
    line-height: 1.1 !important;
}

.product-grid__empty {
    grid-column: 1 / -1;
    padding: 34px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.08);
}

.product-grid__empty p {
    margin: 0;
    color: #fff;
}

.partner-slider {
    margin-top: 82px;
}
#products{
    background: linear-gradient(116deg, rgb(0 0 0 / 50%), rgb(0 0 0 / 56%) 40%, rgb(0 0 0 / 18%) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(30px);
}
.slider-toolbar,
.history-slider__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.slider-kicker {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.slider-controls {
    display: flex;
    gap: 14px;
}

.slider-arrow {
    width: 58px;
    height: 58px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font: inherit;
    font-size: 26px;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.slider-arrow:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.44);
}

.slider-arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
}

.partner-slider__viewport {
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 0 calc((100vw - min(var(--container), calc(100vw - (var(--page-gutter) * 2)))) / 2);
    cursor: grab;
    touch-action: pan-y;
}

.partner-slider__viewport.is-dragging {
    cursor: grabbing;
}

.partner-slider__track {
    display: flex;
    gap: 36px;
    transition: transform 0.35s ease;
    will-change: transform;
    align-items: stretch;
    justify-content: flex-start;
}

.partner-slider__viewport.is-dragging .partner-slider__track {
    transition: none;
}

.partner-slider__viewport.is-dragging .partner-card {
    user-select: none;
}

.partner-card {
    flex: 0 0 min(800px, calc(100vw - 240px));
    min-height: 460px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 42px;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(237, 31, 45, 0.18), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 239, 239, 0.94));
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
    transition: opacity 0.35s ease, transform 0.35s ease, filter 0.35s ease;
    transform-origin: center center;
}

.partner-card:not(.is-active) {
    opacity: 0.28;
    filter: saturate(0.55) brightness(0.68);
    transform: scale(0.92);
}

.partner-card.is-active {
    opacity: 1;
    filter: none;
    transform: scale(1);
}

.partner-card__logo {
    width: 50%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 22px;
    padding: 0;
    border-radius: 0;
    background: transparent;
}

.partner-card__logo img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 92px;
    object-fit: contain;
}

.partner-card__logo-placeholder {
    color: #141414;
    font-size: clamp(20px, 1.35vw, 28px);
    font-weight: 700;
    line-height: 1.1;
    text-align: left;
}

.partner-card__content {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.partner-card__title {
    margin: 0 0 16px;
    color: #111;
    font-size: clamp(18px, 1.2vw, 26px);
    line-height: 1.18;
}

.partner-card__text,
.partner-card__text p {
    color: #202020;
    font-size: clamp(16px, 0.98vw, 20px);
    line-height: 1.35;
}

.partner-card__text p:last-child {
    margin-bottom: 0;
}

.partner-card__link {
    margin-top: auto;
    padding-top: 24px;
    color: var(--red);
    font-size: clamp(16px, 0.98vw, 20px);
    font-weight: 700;
    line-height: 1.25;
    word-break: break-word;
}

.partner-slider__empty,
.history-slider__empty {
    margin-top: 44px;
    padding: 34px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
}

.partner-slider__empty p,
.history-slider__empty p {
    margin: 0;
    color: #fff;
}

.section-heading {
    max-width: 1040px;
}

.timeline {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    overflow-x: auto;
    padding: 22px 0 10px;
    margin: 0;
    scrollbar-width: none;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 48px;
    height: 2px;
    background: rgba(255, 255, 255, 0.18);
}

.timeline::-webkit-scrollbar {
    display: none;
}

.timeline span,
.history-timeline__item {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(16, 12, 12, 0.92);
    color: rgba(255, 255, 255, 0.82);
    font: inherit;
    font-size: clamp(16px, 1vw, 22px);
    font-weight: 700;
    white-space: nowrap;
}

.history-timeline__item {
    min-height: 54px;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.history-timeline__item:hover,
.history-timeline__item.is-active {
    color: #111;
    background: #fff;
    border-color: #fff;
    transform: translateY(-2px);
}

.history-slider__body {
    margin-top: 28px;
}

.history-slide {
    padding: clamp(24px, 3vw, 42px);
    border-radius: 38px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(237, 31, 45, 0.14));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.history-grid {
    display: grid;
    grid-template-columns: 440px 1fr;
    gap: clamp(36px, 4vw, 84px);
    align-items: stretch;
}

.history-grid--single {
    grid-template-columns: 1fr;
}

.history-media {
    min-height: 420px;
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
}

.history-doc,
.history-media__video,
.history-media__frame {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    object-fit: cover;
}

.history-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.history-text__content,
.history-text__content p {
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(18px, 1.08vw, 24px);
    line-height: 1.35;
}

.history-text__content p:last-child {
    margin-bottom: 0;
}

.history-text__content ul {
    list-style: none;
    padding: 0;
    margin: 40px 0 0;
    display: grid;
    gap: 20px;
    color: var(--text);
    font-size: clamp(18px, 1.05vw, 24px);
}
.b24-form-control-file-item-name-text{
    color: rgba(255, 255, 255, 0.78);
}
.history-text__content li {
    position: relative;
    padding-left: 34px;
}
.b24-form-control-file-item-name{
    padding-left: 0 !important;
}
.history-text__content li::before {
    content: "✦";
    position: absolute;
    left: 0;
    top: 50%;
    color: #fff;
    font-size: 22px;
    transform: translateY(-50%);
}

.contact-grid {
    display: flex;
    justify-content: space-between;
    gap: clamp(32px, 3.2vw, 64px);
    align-items: start;
}

.contact-details {
    flex: 0 0 clamp(520px, 36vw, 690px);
    min-width: 0;
}
.soc-list{
    padding-top: 20px;
}
.map {
    flex: 1 1 0;
    min-width: 0;
    min-height: 320px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(237, 31, 45, 0.18));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

@media (min-width: 1181px) {
    .contact-details .footer-text-400 {
        white-space: nowrap;
    }
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #fff;
    font-size: clamp(20px, 1.15vw, 26px);
    font-weight: 700;
}

.contact-form {
    display: grid;
    gap: 20px;
    padding: clamp(28px, 3vw, 48px);
    border-radius: 34px;
    background: linear-gradient(116deg, rgba(77, 68, 68, 0.5), rgba(66, 57, 57, 0.56) 40%, rgba(235, 52, 68, 0.18) 100%);
}

.contact-form label {
    display: grid;
    gap: 9px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.28);
    color: #fff;
    padding: 18px 20px;
    font: inherit;
    font-size: 18px;
}

.form-note {
    margin: 0;
    font-size: 15px;
}

.footer {
    padding: 28px 0 0 0;
    color: var(--muted);
}

.footer-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

@media (max-width: 1440px) {
    .hero-visual img, .hero-visual video, .hero-visual__media, .hero-visual-container .hero-visual-img{
        right: -300px;
    }
    .container {
        width: min(var(--container), calc(100% - (var(--page-gutter) * 2)));
    }

    .header-panel {
        min-height: 90px;
        padding: 12px 30px;
    }

    .logo-text {
        font-size: 16px;
    }

    .hero-grid {
        padding-right: clamp(300px, 31vw, 420px);
    }

    .hero-content {
        max-width: 620px;
    }

    .hero-visual-container,
    .hero-visual {
        left: min(590px, calc(100% - 320px));
    }

    .hero-visual,
    .hero-visual-container {
        right: calc(((100vw - min(var(--container), calc(100vw - (var(--page-gutter) * 2)))) / -2) - 54px);
    }

    .hero-visual img,
    .hero-visual-container .hero-visual-img {
        height: calc(100dvh - var(--hero-header-offset) + 34px);
        max-height: calc(100dvh - var(--hero-header-offset) + 34px);
    }
}

@media (max-width: 1180px) {
    .header-panel {
        border-radius: 30px;
        padding: 12px 24px;
        gap: 18px;
    }

    .nav {
        gap: 22px;
        font-size: 15px;
    }

    .hero {
        min-height: auto;
        padding: 12px 0 0;
    }

    .hero-grid {
        min-height: auto;
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
        align-items: start;
        padding-top: 20px;
        padding-right: 0;
    }

    .hero-content {
        max-width: 100%;
        padding: 12px 0 24px;
    }

    .hero-visual,
    .hero-visual-container {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        width: auto;
        min-height: 520px;
        justify-content: flex-end;
        opacity: 0.9;
        background-size: auto 110%;
        transform: none;
    }

    .hero-visual img,
    .hero-visual video,
    .hero-visual__media,
    .hero-visual-container .hero-visual-img {
        width: auto;
        height: min(calc(100dvh - 160px), 560px);
        max-width: none;
        max-height: 560px;
        right: -24px;
        bottom: 0;
        transform: none;
    }

    .split {
        flex-direction: column;
        gap: 32px;
    }

    .consult-card {
        max-width: 100%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .partner-slider__viewport {
        padding: 0 40px;
    }

    .partner-card {
        flex-basis: min(800px, calc(100vw - 160px));
    }
}

@media (max-width: 980px) {
    .header-panel {
        min-height: 80px;
        padding: 12px 18px;
    }

    .logo-text {
        max-width: 160px;
        font-size: 15px;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 18px;
        padding-top: 8px;
    }

    .hero-content {
        max-width: 100%;
        padding: 6px 0 0;
    }

    .hero-title {
        max-width: 100%;
        font-size: clamp(38px, 7vw, 62px);
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-visual,
    .hero-visual-container {
        min-height: 420px;
        justify-content: center;
        background-size: auto 106%;
        transform: none;
    }

    .hero-visual img,
    .hero-visual video,
    .hero-visual__media,
    .hero-visual-container .hero-visual-img {
        width: auto;
        height: min(62vw, 520px);
        max-width: 100%;
        right: 50%;
        bottom: 0;
        transform: translateX(50%);
    }

    .tabs {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        margin: 40px 0 36px;
        padding-bottom: 8px;
        scrollbar-width: none;
    }

    .tabs::-webkit-scrollbar {
        display: none;
    }

    .tab {
        flex: 0 0 260px;
        min-height: 68px;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .history-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .partner-slider__viewport {
        padding: 0 28px;
    }

    .partner-card {
        flex-basis: calc(100vw - 120px);
    }

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

    .map {
        min-height: 260px;
    }
}

@media (max-width: 860px) {
    .site-header {
        padding-top: 12px;
    }

    .header-panel {
        min-height: 78px;
        border-radius: 22px;
        padding: 12px 16px;
    }

    .logo-mark {
        width: 70px;
        height: 60px;
    }

    .logo-mark img {
        width: 90px;
    }

    .logo-text {
        max-width: 170px;
        font-size: 16px;
    }

    .menu-button {
        display: block;
    }

    .callback-link {
        display: none;
    }

    .nav {
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 14px);
        display: none;
        flex-direction: column;
        gap: 9px;
        padding: 18px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 28px;
        background: linear-gradient(135deg, rgba(34, 24, 24, 0.84), rgba(14, 11, 11, 0.92));
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .nav.open {
        display: flex;
    }

    .nav a {
        display: flex;
        min-height: 46px;
        align-items: center;
        padding: 0 14px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.04);
        font-size: 16px;
        font-weight: 600;
    }

    .nav-about {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
    }

    .nav-about__trigger {
        min-height: 46px;
        display: flex;
        align-items: center;
        padding: 0 14px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.04);
        color: #fff;
        font-size: 16px;
        font-weight: 600;
    }

    .nav-about__menu {
        position: static;
        width: 100%;
        min-width: 0;
        display: flex;
        gap: 6px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-about__trigger {
        display: none;
    }

    .nav-about__menu::before {
        display: none;
    }

    .nav .nav-about__menu a {
        min-height: 46px;
        font-size: 16px;
        font-weight: 600;
    }

    .nav-contacts {
        display: grid;
        gap: 8px;
        margin-top: 4px;
        padding: 10px 4px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .nav-contacts__links {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 6px 14px;
    }

    .nav .nav-contacts__links a {
        min-height: 0;
        display: grid;
        grid-template-columns: 18px minmax(0, 1fr);
        gap: 7px;
        align-items: center;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        color: #fff;
        font-size: clamp(12px, 3.4vw, 15px);
        font-weight: 400;
        line-height: 1.2;
    }

    .nav-contacts__links img {
        width: 18px;
        height: 18px;
        object-fit: contain;
        filter: var(--filter-white);
    }

    .nav-contacts__socials {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 7px;
        padding-top: 0;
    }

    .nav .nav-contacts__socials a {
        min-height: 30px;
        width: 30px;
        display: grid;
        place-items: center;
        padding: 0;
        border: 0;
        border-radius: 9px;
        background: transparent;
    }

    .nav-contacts__socials img {
        width: 30px;
        height: 30px;
        object-fit: contain;
    }

    .menu-open .header-panel {
        background: linear-gradient(135deg, rgba(30, 18, 18, 0.92), rgba(12, 10, 10, 0.96));
    }

    .menu-open .menu-button {
        background: rgba(255, 255, 255, 0.08);
    }

    .site-header.menu-open::after {
        content: "";
        position: fixed;
        inset: 0;
        z-index: -1;
        background: rgba(4, 2, 2, 0.35);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .hero {
        min-height: auto;
        padding-top: 4px;
    }

    .hero-content {
        padding-bottom: 0;
    }

    .hero-grid,
    .split {
        gap: 28px;
    }

    .tabs {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin: 40px 0 32px;
    }

    .product-grid,
    .history-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        min-height: 0;
    }

    .partner-card {
        flex-basis: calc(100vw - 72px);
        min-height: 0;
    }

    .slider-toolbar,
    .history-slider__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .slider-controls {
        width: 100%;
        justify-content: flex-end;
    }

    .hero-visual,
    .hero-visual-container {
        min-height: 340px;
        transform: none;
        background-size: contain;
        background-position: center bottom;
    }

    .hero-visual img,
    .hero-visual video,
    .hero-visual__media,
    .hero-visual-container .hero-visual-img {
        position: relative;
        right: auto;
        bottom: auto;
        height: 100%;
        max-height: 360px;
        transform: none;
        margin: 0 auto;
    }

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

    .product-card {
        border-radius: 30px;
    }

    .product-card__surface {
        padding: 24px 24px 22px;
    }

    .product-card__developer {
        top: 22px;
        left: 22px;
        max-width: 34%;
    }

    .product-card__developer-logo {
        max-width: 100%;
        max-height: 48px;
    }

    .product-card__developer-tooltip {
        top: calc(100% + 10px);
        left: 0;
        max-width: min(240px, calc(100vw - 68px));
        transform: translateY(8px);
    }

    .product-card__developer-tooltip::before {
        top: auto;
        right: auto;
        bottom: 100%;
        left: 16px;
        border-color: transparent;
        border-bottom-color: rgba(12, 12, 14, 0.94);
        transform: none;
    }

    .product-card__developer:hover .product-card__developer-tooltip {
        transform: translateY(0);
    }

    .prouct-card__img {
        margin-bottom: 22px;
        border-radius: 20px;
    }

    .partner-slider__viewport {
        padding: 0 20px;
    }
}

@media (max-width: 560px) {
    :root {
        --page-gutter: 20px;
    }

    .section {
        padding: 58px 0;
    }

    .hero-title {
        font-size: 38px;
        margin-bottom: 18px;
    }

    p {
        font-size: 16px;
        line-height: 1.35;
    }

    .facts {
        gap: 8px;
        margin-bottom: 20px;
        font-size: 16px;
    }

    .facts span,
    .history-text__content li {
        padding-left: 38px;
    }

    .facts span::before,
    .history-text__content li::before {
        font-size: 24px;
    }

    .button {
        width: 100%;
        min-height: 60px;
        padding: 14px 18px;
        border-radius: 18px;
    }

    .hero-visual,
    .hero-visual-container {
        min-height: 260px;
        height: auto;
    }

    .hero-visual img,
    .hero-visual video,
    .hero-visual__media,
    .hero-visual-container .hero-visual-img {
        height: 100%;
        max-height: 260px;
    }

    .tab {
        flex-basis: 220px;
        min-height: 62px;
        font-size: 16px;
    }

    .partner-card,
    .history-slide {
        border-radius: 26px;
    }

    .partner-card {
        padding: 22px;
        flex-basis: calc(100vw - 40px);
    }

    .partner-card__logo {
        min-height: 88px;
        margin-bottom: 22px;
    }

    .slider-arrow {
        width: 50px;
        height: 50px;
        border-radius: 18px;
    }

    .history-media {
        min-height: 260px;
        border-radius: 24px;
    }

    .history-timeline__item {
        min-height: 48px;
        padding: 10px 16px;
        font-size: 15px;
    }

    .consult-card,
    .contact-form {
        border-radius: 20px;
    }

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

/* Product Detail Page */
.wrap-prod {
    width: 100%;
}

.section_product {
    width: 100%;
}

.left_block_product {
    display: none;
}

.prod_detail {
    width: 100%;
}

.prod_detail_header {
    padding: 30px 0 36px;
}

.prod_detail_header .wraptop {
    display: flex;
    align-items: flex-start;
    gap: 48px;
}

.prod_detail_header .description_title {
    margin-bottom: 0;
}

.wraptop > .description_title {
    display: none;
}
.footer-soc-item__list{
    display: flex;
    gap: 10px;
    align-items: center;
}
.footer-soc-item__list{
    margin-bottom: 10px;
}
.footer-icon-soc{
        height: 35px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.not-found__code{
    text-align: center;
}
.not-found__title{
    text-align: center;
}
.not-found__text{
    text-align: center;
    width: 100%;
}
.wraptop .prod_header_image {
    flex: 0 0 520px;
    min-width: 520px;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 36px;
}
.not-found-inner{
    width: 100%;
    display: flex;
    justify-content: center;
}
.wraptop .prod_header_image img,
.prod_header_image img {
    max-width: 100%;
    max-height: 500px;
    margin-right: 0;
    object-fit: contain;
}

.wraptop .entry-summary {
    flex: 1;
    min-width: 0;
}

.prod_header_description {
    height: 100%;
}

.description_tags_block {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.stick_head_title_wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.prod_header_description .stick_head_title {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

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

.sticker > div {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 6px 12px;
    border-radius: 999px;
}

.sticker > div p {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.sticker .hit {
    background: rgba(237, 31, 45, 0.12);
    color: #ed1f2d;
}

.sticker .sale {
    background: rgba(255, 205, 0, 0.18);
    color: #7d5200;
}

.sticker .timer,
.sticker .timer1,
.timerp {
    gap: 8px;
    background: rgba(237, 31, 45, 0.12);
    color: #ed1f2d;
}

.timerp img,
.sticker .timer img,
.sticker .timer1 img {
    width: 16px;
    height: 16px;
}

.countdown-holder {
    font-weight: 700;
}

.btn_soc_print_wrap {
    display: flex;
    align-items: center;
    gap: 18px;
}

.btn_soc_print_wrap i,
.btn_soc i {
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    transition: color 0.2s ease;
    cursor: pointer;
}

.btn_soc {
    position: relative;
}

.btn_soc:hover i,
.btn_soc_print_wrap i:hover {
    color: var(--red);
}

.btn_soc .soc_block {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    min-width: 180px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(20, 17, 17, 0.96);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 5;
}

.btn_soc:hover .soc_block {
    opacity: 1;
    visibility: visible;
}

.description_price_block {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    align-items: start;
}

.wrap_excerpt {
    min-width: 0;
}

.wrap_excerpt .description_title {
    margin-bottom: 22px;
    text-align: left;
    font-size: clamp(34px, 3.2vw, 52px);
    line-height: 1;
}

.prod_excerpt {
    margin-bottom: 28px;
}

.prod_excerpt p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.65;
}
.file-item > a{
    display: flex;
    align-items: center;
    gap: 20px;
}

.prod_excerpt a,
.tusks a {
    margin-top: 10px;
    display: inline-flex;
}
.tab-content-whats-new .new-item{
    justify-content: flex-start !important;
}
.prod_excerpt a span,
.tusks a span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 3px;
}

.prod_excerpt a:hover span,
.tusks a:hover span {
    color: var(--red);
}

.tusks {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.tusks h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.tasks-list-1 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tusk {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.tusk i {
    color: var(--red);
    font-size: 16px;
    margin-top: 4px;
}

.tusk span,
.task-name {
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.5;
}

.tags_way {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.brand-detail,
.brand-detail-info,
.brand-detail-info__preview {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.brand-detail-info__image {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.brand-detail-info__image a {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
}

.brand-detail-info__image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.line-block__item {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
}

.chip__label,
.line-block__item_drop p {
    margin: 0;
    color: #fff;
    font-size: 14px;
}

.line-block__item:hover .line-block__item_drop {
    opacity: 1;
    visibility: visible;
}

.line-block__item_drop {
    position: absolute;
    left: 0;
    top: calc(100% + 10px);
    min-width: 220px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(20, 17, 17, 0.96);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 5;
}

.line-block__item_drop a + a {
    margin-top: 8px;
    display: block;
}

.wrap_price_block_btn {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0 0 22px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
}

.product_sale .item-sales .text {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.product_sale .item-sales .text img {
    width: 28px;
    height: 28px;
}

.product_sale .item-sales .text h2 {
    margin: 0;
    font-size: 18px;
    line-height: 1.3;
}

.price_block_btn,
.prod_header_description .price_block_btn {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.price p {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px 14px;
}

.normal_price {
    color: #fff;
    font-size: clamp(28px, 2.4vw, 40px);
    font-weight: 700;
    line-height: 1;
}

.discout_price {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffd35f;
    font-size: 16px;
    font-weight: 700;
}

.old_price {
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    text-decoration: line-through;
}

.small {
    font-size: 0.7em;
}

.btns-product {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.butn {
    min-height: 58px;
    padding: 14px 22px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    background: #ed1f2d;
    color: #fff;
    font: inherit;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.butn:hover {
    background: #ff3543;
    transform: translateY(-1px);
}

.btns-product .butn.has-ripple,
.btns-product .butn:last-child {
    width: 58px;
    padding: 0;
    background: transparent;
    color: var(--red);
    border-color: var(--red);
}

.soc_order {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.soc_order p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.5;
}

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

.soc_order_buttons a,
.price_block_btn .soc_order .soc_order_buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    padding: 8px;
    border-radius: 18px;
    background: #25d366;
    border: 1px solid #25d366;
}

.soc_order_buttons .btn_tg {
    background: #1f9dd8;
    border-color: #1f9dd8;
}
.prod_detail_description .more-tabs-dropdown .tab::after {
    display: none;
}
.soc_order_buttons .btn_max {
    background: linear-gradient(45deg, #00B2FF, #006AFF, #6C00FF, #FF00E5) !important;;
    border: none !important;
}
.vendor-img{
    width: 40%;
    padding: 20px 0;
}

.soc_order_buttons img,
.price_block_btn .soc_order .soc_order_buttons a img {
    width: 30px;
    height: 30px;
    margin-right: 0 !important;
}

.free_test {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.free_elem {
    position: relative;
}

.free_elem > a {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
}

.free_elem > a img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.free_elem > a span {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.prod_detail_description {
    padding: 20px 0 80px;
}

.product__detail-nav {
    margin-bottom: 34px;
}

.product__detail-nav .wrapper {
    width: 100%;
}

.product__detail-nav-content,
.product__buttons-section,
.tab-container-wrapper {
    width: 100%;
}

.prod_detail_description .tab-container,
.tab-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.prod_detail_description .tabs {
    display: flex;
    gap: clamp(16px, 1.5vw, 28px);
    flex: 1 1 auto;
    min-width: 0;
    flex-wrap: nowrap;
    align-items: center;
    white-space: nowrap;
}

.prod_detail_description .tab,
.prod_detail_description .switch-text {
    position: relative;
    min-height: auto;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 15px;
    font-weight: 500;
    background: transparent;
    border: none;
    flex-basis: auto;
}

.prod_detail_description .tab::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -17px;
    width: 100%;
    height: 2px;
    background: transparent;
    transition: background 0.2s ease;
}

.prod_detail_description .tab.active,
.prod_detail_description .tab:hover {
    color: #fff;
}

.prod_detail_description .tab.active::after,
.prod_detail_description .tab:hover::after {
    background: var(--red);
}

.more-tabs-wrapper {
    position: relative;
    flex-shrink: 0;
}

.more-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.74);
}

.more-tab .arrow {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}

.more-tabs-wrapper.open .arrow {
    transform: rotate(-135deg);
}

.more-tabs-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
    min-width: 220px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(20, 17, 17, 0.98);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
    display: none;
    flex-direction: column;
    gap: 10px;
    z-index: 6;
}

.more-tabs-wrapper.open .more-tabs-dropdown {
    display: flex;
}

.more-tabs-dropdown .tab {
    padding: 0;
}

.prod_detail_description .more-tabs-dropdown .tab:hover::after {
    display: none;
}


.prod_detail_description .tab-pane > h2,
.prod_detail_description .product-tasks > h2,
.prod_detail_description .product-possibilities > h2,
.prod_detail_description .product-benefits > h2,
.prod_detail_description .product-requirements > h2,
.prod_detail_description .product-sostav > h2,
.prod_detail_description .tab-content-whats-new h2:first-child {
    margin: 20px 0;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
}

.product-tasks > h2,
.product-benefits > h2,
.product-possibilities > h2,
.product-requirements > h2,
.product-sostav > h2 {
    margin: 20px 0;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
}
.task-item-zadacha>img{
    height: 46px;
    width: 46px;
}
.task-item-zadacha {
    display: flex;
    align-items: center;
    gap: 10px;
}
.tasks-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 36px;
    margin-bottom: 40px;
}

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

.task-item > img,
.task-image {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.benefits-list,
.benefist-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
}

.benefit-image {
    width: 100%;
    height: auto;
    margin-bottom: 12px;
    border-radius: 14px;
}

.benefit-swiper {
    width: 100%;
    height: 220px;
    margin-bottom: 12px;
    overflow: hidden;
    position: relative;
    border-radius: 14px;
    background: rgb(237, 237, 237);
}

.benefit-swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.benefit-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-swiper .swiper-button-next,
.benefit-swiper .swiper-button-prev {
    color: #000;
}

.benefit-name {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 700;
}

.benefit-description,
.benefit-text {
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    line-height: 1.55;
}

.possibility-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.possibility-card {
    min-width: 0;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
}

.possibility-swiper,
.possibility-image {
    width: 100%;
    max-width: 500px;
    height: 220px;
    margin: 0 auto 15px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    background: rgb(237, 237, 237);
}

.possibility-swiper .swiper-slide,
.possibility-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.possibility-swiper a,
.possibility-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.possibility-zoom-link {
    cursor: zoom-in;
}

.possibility-swiper img,
.possibility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.possibility-image--placeholder img {
    width: auto;
    height: auto;
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.possibility-swiper .swiper-button-next,
.possibility-swiper .swiper-button-prev {
    color: #000;
}

.possibility-image-modal .modal-content {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    background: rgba(8, 5, 5, 0.98);
    color: #fff;
    overflow: hidden;
}
    
.possibility-image-modal .modal-header {
    gap: 14px;
    border-bottom-color: rgba(255, 255, 255, 0.14);
    padding: 18px !important;
}
.modal-content{
    border-radius: clamp(24px, 2.4vw, 38px) !important;
}
.modal-header .btn-close{
    margin: 0 !important;
}
.modal-header{
    justify-content: space-between;
}
.possibility-image-modal .btn-close {
    position: relative;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
    opacity: 1;
    filter: none;
}

.possibility-image-modal .btn-close::before,
.possibility-image-modal .btn-close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 18px;
    border-radius: 2px;
    background: #fff;
}

.possibility-image-modal .btn-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.possibility-image-modal .btn-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.possibility-image-modal .btn-close:hover {
    border-color: var(--red);
    background: var(--red);
}

#lightbox .lb-data .lb-close {
    position: relative;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(20, 17, 17, 0.86) !important;
    opacity: 1;
    backdrop-filter: blur(12px);
}

#lightbox .lb-data .lb-close::before,
#lightbox .lb-data .lb-close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 18px;
    border-radius: 2px;
    background: #fff;
}

#lightbox .lb-data .lb-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

#lightbox .lb-data .lb-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

#lightbox .lb-data .lb-close:hover {
    border-color: var(--red);
    background: var(--red) !important;
}

.benefit-content{
    display: flex;
    flex-direction: column;
}
.possibility-image-modal .modal-body {
    position: relative;
    min-height: min(72dvh, 760px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(12px, 2vw, 24px) clamp(58px, 6vw, 84px);
    background: rgba(255, 255, 255, 0.04);
}
.tab_dev p, .tab_dev li{
        font-size: 15px;
    line-height: 1.55;
}
.tab-pane p{
    font-size: 15px !important;
    line-height: 1.55 !important;
}
.possibility-image-modal__nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    background: rgba(8, 5, 5, 0.78);
    color: #fff;
    transform: translateY(-50%);
}

.possibility-image-modal__nav[hidden] {
    display: none;
}

.possibility-image-modal__nav::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    border-top: 2px solid currentColor;
    border-left: 2px solid currentColor;
}

.possibility-image-modal__nav:hover {
    border-color: var(--red);
    background: var(--red);
}

.possibility-image-modal__nav--prev {
    left: clamp(8px, 1.5vw, 20px);
}

.possibility-image-modal__nav--prev::before {
    transform: translate(-35%, -50%) rotate(-45deg);
}

.possibility-image-modal__nav--next {
    right: clamp(8px, 1.5vw, 20px);
}

.possibility-image-modal__nav--next::before {
    transform: translate(-65%, -50%) rotate(135deg);
}

.possibility-image-modal__img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: min(72dvh, 760px);
    object-fit: contain;
}

@media (max-width: 767px) {
    .possibility-image-modal .modal-dialog {
        margin: 10px;
    }

    .possibility-image-modal .modal-header {
        padding: 12px 14px;
    }

    .possibility-image-modal .modal-title {
        min-width: 0;
        font-size: 16px;
        line-height: 1.25;
        overflow-wrap: anywhere;
    }

    .possibility-image-modal .modal-body {
        min-height: min(68dvh, 620px);
        padding: 12px 50px;
    }

    .possibility-image-modal__nav {
        width: 40px;
        height: 40px;
    }

    .possibility-image-modal__nav::before {
        width: 12px;
        height: 12px;
    }

    .possibility-image-modal__img {
        max-height: min(68dvh, 620px);
    }
}

.new-swiper .swiper-button-next,
.new-swiper .swiper-button-prev {
    color: #000;
}

.new-image-lightbox-link {
    cursor: zoom-in;
}

.new-swiper .swiper-button-next::after,
.new-swiper .swiper-button-prev::after {
    font-size: 22px;
}


.possibility-desc.short{
    font-size: 14px;
    line-height: 1.55 !important
}
.possibility-desc{
   font-size: 14px;
    line-height: 1.55 !important
}
.tab-content-whats-new {
    padding: 0;
}

.new-items-wrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.new-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 0;
    min-height: 120px;
    padding: 22px;
    box-sizing: border-box;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.new-item:has(.new-item__content:only-child) {
    justify-content: center;
    min-height: 130px;
}

.new-img-group {
    margin-bottom: 16px;
}

.new-swiper,
.new-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    border-radius: 14px;
    background: rgb(237, 237, 237);
}

.new-swiper .swiper-slide,
.new-swiper a,
.new-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.new-swiper img,
.new-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-swiper .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.65;
}

.new-swiper .swiper-pagination-bullet-active {
    background: var(--red);
    opacity: 1;
}

.new-item__content h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 18px;
    line-height: 1.25;
}

.new-item__content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    line-height: 1.55;
}

.events_in_product {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px 40px;
}

.event-wrap,
.event-item {
    min-width: 0;
}
.woocommerce-breadcrumb{
    padding-top: 20px;
}
.woocommerce-breadcrumb span, .woocommerce-breadcrumb a,.woocommerce-breadcrumb .fa-angle-right{
    font-size: 13px !important;
}
.event-item a {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.events_item_image {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: 18px;
    background: rgb(237, 237, 237);
}

.events_item_image .img {
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    transition: transform 0.25s ease;
}

.events_item_image .events-item-image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(237, 237, 237);
}

.events_item_image .events-item-image--placeholder img {
    width: auto;
    height: auto;
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.event-item a:hover .events_item_image .img {
    transform: scale(1.03);
}

.events_item_about .about_text {
    margin: 0 0 10px;
    color: #fff;
    font-size: 18px;
    line-height: 1.12;
}
.font_14{
    font-size: 14px !important;
}

.blog-list__item-text-bottom-part {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    line-height: 1.35;
}

.blog-list__item-text-bottom-part__separator {
    color: rgba(255, 255, 255, 0.35);
}

.blog-list__item-period-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.possibility-desc-wrapper {
    position: relative;
}

.possibility-desc.short {
    overflow: hidden;
    max-height: 8.5em;
}

.read-more-btn {
    margin-top: 8px;
    padding: 0;
    border: none;
    background: none;
    color: #ff7b86;
    cursor: pointer;
}

.file-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.file-group-title {
    padding: 20px 0;
}

.file-item {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
}

.file-title {
    color: #fff;
    font-weight: 600;
}

.requirements-list {
    display: flex;
    flex-direction: column;
    gap: 20px;

    width: 100%;
}
.contacts{
        background: linear-gradient(116deg, rgb(0 0 0 / 50%), rgb(0 0 0 / 56%) 40%, rgb(0 0 0 / 18%) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(30px);

}
.product_system {
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
}

.requirement-content {
    display: flex;
    align-items: center;
    gap: 20px 32px;
    justify-content: space-between;
    width: 100%;
}

.requirement-content .first_column {
    margin: 0;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 500;
}

.requirement-content .second_column {
    min-width: 0;
    font-size: 16px;
    line-height: 1.55;
}

.requirement-content .second_column > :first-child {
    margin-top: 0;
}

.requirement-content .second_column > :last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .product_system {
        padding: 18px;
        border-radius: 18px;
    }

    .requirement-content {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .requirement-content .first_column {
        font-size: 20px;
    }
}

.entry-summary table,
.entry-content table {
    width: 100%;
    border-collapse: collapse;
}

.entry-summary table th,
.entry-summary table td,
.entry-content table th,
.entry-content table td {
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    vertical-align: top;
}

@media (max-width: 1180px) {
    .prod_detail_header .wraptop {
        flex-direction: column;
    }

    .wraptop .prod_header_image {
        width: 100%;
        min-width: 0;
        min-height: 320px;
    }

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

    .benefits-list,
    .benefist-list,
    .possibility-list,
    .new-items-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .prod_detail_header {
        padding: 28px 0 0 0;
    }

    .wrap_excerpt .description_title {
        font-size: 32px;
    }

    .wraptop .prod_header_image {
        min-height: 260px;
        padding: 24px;
    }

    .prod_detail_description .tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 6px;
        scrollbar-width: none;
    }

    .prod_detail_description .tabs::-webkit-scrollbar {
        display: none;
    }

    .tasks-list,
    .benefits-list,
    .benefist-list,
    .possibility-list,
    .new-items-wrapper,
    .events_in_product {
        grid-template-columns: 1fr;
    }

    .btns-product {
        flex-direction: column;
    }

    .btns-product .butn.has-ripple,
    .btns-product .butn:last-child {
        width: 100%;
        min-height: 54px;
    }
}

@media (max-width: 560px) {
    .wraptop > .description_title {
        display: block;
        margin-bottom: 18px;
    }

    .wrap_excerpt .description_title {
        display: none;
    }

    .wraptop .prod_header_image {
        display: none;
    }

    .wrap_price_block_btn {
        margin-bottom: 20px;
        padding: 0;
        border-radius: 0;
    }

    .normal_price {
        font-size: 30px;
    }

    .more-tabs-wrapper {
        display: none;
    }
}

/* Responsive hardening */
html,
body {
    max-width: 100%;
}

.main,
.section,
.wrap-prod,
.prod_detail,
.prod_detail_description,
.products-tabs,
.tab-container-wrapper,
.contact-grid,
.footer {
    min-width: 0;
    max-width: 100%;
}

.map,
.map iframe {
    width: 100% !important;
    max-width: 100%;
}

.map iframe {
    display: block;
    min-height: 320px;
    border: 0;
    border-radius: inherit;
}

@media (max-width: 1180px) {
    :root {
        --page-gutter: 32px;
        --font-size-section-title: clamp(30px, 4vw, 42px);
        --font-size-section-subtitle: clamp(22px, 3vw, 30px);
        --font-size-card-title: clamp(20px, 2.4vw, 26px);
        --font-size-body: 17px;
    }

    .hero,
    .hero-grid {
        overflow: hidden;
    }

    .hero-visual,
    .hero-visual-container {
        max-width: 100%;
        overflow: hidden;
    }

    .hero-visual-container .hero-visual-img {
        max-width: 100%;
        object-fit: contain;
    }

    .contact-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
    }

    .map {
        width: 100%;
        min-height: 360px;
    }
}

@media (max-width: 980px) {
    .tabs,
    .prod_detail_description .tabs {
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
    }

    .products-tabs {
        margin-top: 40px;
    }

    .products-tabs .tabs {
        margin-bottom: 32px;
    }

    .tabs .tab,
    .prod_detail_description .tabs .tab {
        flex: 0 0 auto;
        width: min(260px, 72vw);
    }

    .partner-slider__viewport {
        width: 100%;
        margin-left: 0;
        padding-inline: 0;
        overflow: hidden;
    }

    .partner-slider__track {
        gap: 20px;
        min-width: 0;
    }

    .partner-card {
        flex-basis: min(640px, 100%);
        max-width: 100%;
    }

    .footer {
        padding-bottom: 0;
    }
}

@media (max-width: 860px) {
    :root {
        --page-gutter: 24px;
        --font-size-body: 16px;
        --font-size-button: 16px;
    }

    .header-panel {
        width: 100%;
        gap: 12px;
    }

    .logo img {
        max-width: 150px;
        height: auto !important;
        margin-bottom: 0 !important;
    }

    .hero-grid {
        padding-right: 0;
    }

    .hero-visual,
    .hero-visual-container {
        min-height: clamp(240px, 54vw, 360px);
    }

    .hero-visual-container .hero-visual-img {
        width: 100%;
        height: 100%;
    }

    .consult-actions,
    .btns-product,
    .soc_order_buttons {
        flex-wrap: wrap;
    }

    .contact-list,
    .req-company-list {
        gap: 10px;
    }

    .icon-flex {
        align-items: flex-start;
        overflow-wrap: anywhere;
    }

 

    .map,
    .map iframe {
        min-height: 300px;
    }
}

@media (max-width: 560px) {
    :root {
        --page-gutter: 16px;
        --font-size-section-title: 30px;
        --font-size-section-subtitle: 22px;
        --font-size-card-title: 20px;
    }

    .container {
        width: calc(100% - (var(--page-gutter) * 2));
    }

    .section {
        padding: 48px 0;
    }

    .site-header {
        padding-top: 8px;
    }

    .header-panel {
        min-height: 66px;
        padding: 10px 12px;
        border-radius: 18px;
    }

    .hero-title {
        font-size: clamp(34px, 11vw, 42px);
        line-height: 1;
    }

    .section-title,
    .description_title,
    .product-possibilities > h2,
    .product-benefits > h2,
    .product-requirements > h2,
    .product-sostav > h2 {
        line-height: 1.08;
        width: 100%;
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .product-card,
    .consult-card,
    .history-slide,
    .new-item,
    .possibility-card {
        border-radius: 22px;
        padding: 20px;
    }

    .product-card {
        padding: 0;
    }

    .product-card__surface {
        padding: 20px;
    }

    .tabs {
        gap: 10px;
    }

    .tabs .tab,
    .prod_detail_description .tabs .tab {
        width: min(220px, 78vw);
        min-height: 56px;
        border-radius: 18px;
        font-size: 15px;
        padding: 10px 14px;
    }

    .partner-card {
        flex-basis: 100%;
        max-width: 100%;
        padding: 20px;
    }

    .slider-controls {
        justify-content: flex-start;
    }

    .contact-grid {
        gap: 28px;
    }

    .footer-title-500 {
        font-size: 18px !important;
    }

    .footer-text-400 {
        font-size: 15px !important;
        line-height: 1.4;
    }

    .footer-icon {
        width: 22px;
        height: 22px;
        flex: 0 0 22px;
    }

    .map,
    .map iframe {
        min-height: 260px;
        border-radius: 20px;
    }

    .footer-row {
        gap: 12px;
    }
}

@media (max-width: 1180px) and (min-width: 981px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
        gap: 32px;
    }

    .hero-visual,
    .hero-visual-container {
        width: 100%;
        max-width: 360px;
        min-height: 420px;
        justify-self: end;
        align-self: end;
        overflow: visible;
    }

    .hero-visual img,
    .hero-visual video,
    .hero-visual__media,
    .hero-visual-container .hero-visual-img {
        position: absolute;
        right: 0;
        bottom: 0;
        width: min(360px, 100%);
        height: auto;
        max-width: 100%;
        max-height: 420px;
        object-fit: contain;
        transform: none;
    }
}

@media (max-width: 980px) {
    .hero {
        min-height: auto;
    }

    .hero-grid {
        min-height: auto;
        padding-bottom: clamp(40px, 8vw, 72px);
    }

    .hero-visual,
    .hero-visual-container {
        display: none;
    }
}

@media (max-width: 1180px) and (min-width: 981px) {
    .prod_detail_header {
        padding: 32px 0 0 0;
    }

    .prod_detail_header .wraptop {
        flex-direction: row;
        align-items: center;
        gap: 32px;
    }

    .wraptop .prod_header_image {
        flex: 0 0 min(42%, 420px);
        min-width: 0;
        min-height: 380px;
        padding: 22px;
        border-radius: 30px;
    }

    .wraptop .prod_header_image img,
    .prod_header_image img {
        max-height: 300px;
    }

    .wrap_excerpt .description_title {
        font-size: clamp(34px, 4vw, 44px);
        line-height: 1.05;
    }

    .description_tags_block,
    .price_block_btn,
    .prod_header_description .price_block_btn {
        gap: 16px;
    }
}

@media (max-width: 980px) {
    .prod_detail_header {
        padding: 24px 0 0 0;
    }

    .prod_detail_header .wraptop {
        gap: 20px;
    }

    .wraptop > .description_title {
        display: block;
        margin: 0;
        font-size: clamp(30px, 5vw, 42px);
        line-height: 1.08;
    }

    .wrap_excerpt .description_title {
        display: none;
    }

    .wraptop .prod_header_image {
        width: 100%;
        flex: none;
        min-height: clamp(220px, 42vw, 320px);
        padding: 18px;
        margin: 0;
        border-radius: 28px;
    }

    .wraptop .prod_header_image img,
    .prod_header_image img {
        max-height: clamp(180px, 34vw, 260px);
    }

    .description_tags_block,
    .price_block_btn,
    .prod_header_description .price_block_btn {
        gap: 16px;
    }

    .stick_head_title_wrap {
        justify-content: flex-end;
    }
}

@media (max-width: 860px) and (min-width: 561px) {
    .btns-product {
        flex-direction: row;
        justify-content: center;
    }

    .btns-product .butn.has-ripple {
        width: 58px;
        min-height: 58px;
    }
}

@media (max-width: 560px) {
    .wraptop .prod_header_image {
        display: flex;
        flex: none;
        min-height: 190px;
        padding: 12px;
        border-radius: 22px;
    }

    .wraptop .prod_header_image img,
    .prod_header_image img {
        max-height: 250px;
    }

    .btns-product {
        align-items: stretch;
    }

    .soc_order_buttons {
        justify-content: center;
    }

    .prod_detail_description .tabs .tab,
    .tabs .tab {
        width: auto;
        min-width: 142px;
    }
}

.prod_detail_description .tab-container {
    align-items: flex-end;
    justify-content: flex-start;
}

.prod_detail_description .tabs {
    flex: 1 1 auto;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
}

.prod_detail_description .tabs .tab {
    min-height: auto;
    padding: 10px 0;
    border-radius: 0;
    text-align: left;
}

@media (max-width: 980px) {
    .prod_detail_description .tab-container {
        justify-content: flex-start;
        gap: 18px;
    }

    .prod_detail_description .tabs {
        max-width: calc(100% - 82px);
        overflow: visible;
        flex-wrap: nowrap;
        scrollbar-width: auto;
        margin: 0;
        padding: 0;
    }

    .prod_detail_description .tabs .tab {
        width: auto;
        min-width: 0;
        min-height: auto;
        padding: 10px 0;
        border-radius: 0;
        flex: 0 0 auto;
    }

    .prod_detail_description .more-tabs-wrapper {
        margin-left: 0;
    }

    .btns-product {
        flex-direction: row;
        align-items: center;
    }

    .btns-product > .butn:not(.has-ripple) {
        flex: 1 1 auto;
        min-width: 0;
        white-space: nowrap;
    }

    .btns-product .butn.has-ripple {
        flex: 0 0 58px;
        width: 58px;
        min-height: 58px;
    }

    .btns-product .soc_order_buttons {
        flex: 1 0 100%;
    }
}

.scroll-top-btn {
    position: fixed;
    right: clamp(16px, 3vw, 48px);
    bottom: calc(clamp(16px, 3vw, 44px) + 94px);
    z-index: 80;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 66px;
    width: 66px;
    min-height: 66px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    background: rgba(20, 17, 17, 0.86);
    color: #fff;
    font-size: 0;
    font-weight: 700;
    text-decoration: none;
    backdrop-filter: blur(12px);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(14px);
    transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.scroll-top-btn::before {
    content: "";
    width: clamp(14px, 1.4vw, 20px);
    height: clamp(14px, 1.4vw, 20px);
    border-left: 4px solid currentColor;
    border-top: 4px solid currentColor;
    transform: translateY(4px) rotate(45deg);
}

.scroll-top-btn.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    transform: translateY(-2px);
}

.b24-widget-button-wrapper.b24-widget-button-position-bottom-right,
.b24-widget-button-position-bottom-right {
    right: clamp(16px, 3vw, 48px) !important;
    bottom: clamp(16px, 3vw, 44px) !important;
}

.b24-widget-button-block,
.b24-widget-button-inner-block {
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

@media (max-width: 560px) {
    .scroll-top-btn {
        right: 16px;
        bottom: 110px;
    }

    .b24-widget-button-wrapper.b24-widget-button-position-bottom-right,
    .b24-widget-button-position-bottom-right {
        right: 16px !important;
        bottom: 16px !important;
    }

    .scroll-top-btn::before {
        width: 14px;
        height: 14px;
        border-left: 3px solid currentColor;
        border-top: 3px solid currentColor;
        transform: translateY(3px) rotate(45deg);
    }
}

body.policy-modal-open {
    overflow: hidden;
}

.policy-modal {
    position: fixed;
    inset: 0;
    z-index: 99999999999;
    display: grid;
    place-items: center;
    padding: clamp(14px, 3vw, 40px);
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(8px);
}

.policy-modal[hidden] {
    display: none;
}

.policy-modal__dialog {
    width: min(960px, 100%);
    height: min(860px, calc(100dvh - clamp(28px, 6vw, 80px)));
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 28px;
    background: #080505;
    box-shadow: 0 28px 88px rgba(0, 0, 0, 0.48);
}

.policy-modal__head {
    min-height: 76px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.policy-modal__head h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.15;
}

.policy-modal__close {
    position: relative;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
}

.policy-modal__close::before,
.policy-modal__close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 2px;
    background: currentColor;
}

.policy-modal__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.policy-modal__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.policy-modal__close:hover {
    border-color: var(--red);
    background: var(--red);
}

.policy-modal__content {
    min-height: 0;
    overflow: auto;
    padding: 16px;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.6;
}

.policy-modal__content h1,
.policy-modal__content h2,
.policy-modal__content h3,
.policy-modal__content h4 {
    color: #fff;
    line-height: 1.22;
}

.policy-modal__content h1:first-child,
.policy-modal__content h2:first-child,
.policy-modal__content p:first-child {
    margin-top: 0;
}

.policy-modal__content p,
.policy-modal__content li {
    font-size: 16px;
}

.policy-modal__content a {
    color: #fff;
}

.policy-modal__content table {
    width: 100%;
    border-collapse: collapse;
}

.policy-modal__content th,
.policy-modal__content td {
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    vertical-align: top;
}

.career-page {
    min-height: calc(100dvh - var(--hero-header-offset));
    padding: clamp(42px, 6vw, 96px) 0;
    color: #fff;
  
}
.b24-form-control-file .b24-form-control::after, .b24-form-control-file .b24-form-control::before{
    background-color: #fff !important;
}
.b24-form-control-file .b24-form-control{
    color: #fff !important;
    border: 1px solid #fff !important;
    opacity: 1 !important;
}
.career-page .container {
    max-width: var(--container);
}

.career-page__head {

    margin-bottom: clamp(28px, 4vw, 54px);
}

.career-page__head .section-title {
    margin-bottom: 14px;
    color: #fff;
}

.career-page__head p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(15px, 1vw, 18px);
    line-height: 1.5;
}

.career-list {
    display: grid;
    gap: clamp(18px, 2.4vw, 32px);
}

.career-filter {
    width: max-content;
    max-width: 100%;
    display: flex;
    gap: 8px;
    margin: 0 0 clamp(18px, 2.6vw, 32px);
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
}

.career-filter__btn {
    min-height: 42px;
    padding: 8px 18px;
    border: 1px solid transparent;
    border-radius: 13px;
    background: transparent;
    color: rgba(255, 255, 255, 0.74);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.career-filter__btn:hover,
.career-filter__btn.is-active {
    border-color: var(--red);
    background: var(--red);
    color: #fff;
}

.career-card {
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(160px, 240px) auto;
    align-items: center;
    gap: 16px;
    padding: clamp(18px, 2.2vw, 28px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(14px);
}

.career-card.is-hidden {
    display: none;
}

.career-card__main h2 {
    max-width: 100%;
    margin: 0 0 6px;
    color: #fff;
    font-size: clamp(18px, 1.25vw, 22px);
    font-weight: 600;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.career-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 16px;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(15px, 1vw, 18px);
    line-height: 1.25;
}

.career-card__experience {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.career-card__experience svg {
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    color: var(--red);
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.career-card__badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 5px 12px;
    border: 1px solid rgba(237, 31, 45, 0.24);
    border-radius: 999px;
    color: var(--red);
    font-size: 14px;
    font-weight: 600;
}

.career-card__salary {
    text-align: center;
}

.career-card__salary strong {
    text-align: right;
    display: block;
    color: #fff;
    font-size: clamp(18px, 1.25vw, 22px);
    font-weight: 600;
    line-height: 1.1;
}

.career-card__salary span {
    display: block;
    text-align: right;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.58);
    font-size: clamp(13px, 0.9vw, 15px);
    font-weight: 500;
    line-height: 1.15;
}

.career-card__actions {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 16px;
}

.career-btn {
    max-width: 100%;
    box-sizing: border-box;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    color: #fff !important;
    justify-content: center;
    padding: 10px 24px;
    border: 2px solid #fff;
    border-radius: 18px;
    font-size: clamp(15px, 1vw, 18px);
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s ease;
}
.career-btn--red{
    border: 2px solid var(--red);
}
.b24-form-control-file-item-name{
    flex:  none !important;
}
.b24-form-control-file-item{
    border: none !important;
}
.b24-form-control-file{
    border: none !important;
    padding: 0 !important;
}
.b24-form-control-file-item-remove:after, .b24-form-control-file-item-remove:before{
    background-color: #fff !important;
}
.career-btn--red:hover{
    border: 2px solid #fff;
}

.career-btn:hover {
    /* transform: translateY(-1px); */
    color: var(--red) !important;
    background-color: #fff !important;

}

.career-btn--red {
    color: #fff;
    background: var(--red);
}

.career-btn--outline {
    color: var(--red);
    background: transparent;
}

.career-btn--outline:hover {
    color: #fff;
    background: var(--red);
}

.career-empty {
    padding: clamp(24px, 4vw, 44px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
}

.career-empty h2 {
    margin: 0 0 8px;
    color: #fff;
}

.career-empty p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
}

body.career-modal-open {
    overflow: hidden;
}

.career-modal {
    position: fixed;
    inset: 0;
    z-index: 99999999999;
    display: grid;
    place-items: center;
    padding: clamp(14px, 3vw, 40px);
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(8px);
}

.career-modal[hidden] {
    display: none;
}

.career-modal__dialog {
    width: min(940px, 100%);
    max-height: min(860px, calc(100dvh - clamp(28px, 6vw, 80px)));
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 28px;
    background: #080505;
    color: #fff;
    box-shadow: 0 28px 88px rgba(0, 0, 0, 0.48);
}

.career-modal__head,
.career-modal__footer {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px clamp(18px, 3vw, 30px);
    border-color: rgba(255, 255, 255, 0.14);
}

.career-modal__head {
    min-height: 76px;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.career-modal__footer {
    justify-content: flex-end;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.career-modal__head h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.15;
}

.career-modal__close {
    position: relative;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
}

.career-modal__close::before,
.career-modal__close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 2px;
    background: currentColor;
}

.career-modal__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.career-modal__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.career-modal__close:hover {
    border-color: var(--red);
    background: var(--red);
}

.career-modal__content {
    min-height: 0;
    overflow: auto;
    padding: clamp(18px, 3vw, 36px);
    color: rgba(255, 255, 255, 0.86);
    font-size: 16px;
    line-height: 1.65;
}

.career-modal__content h1,
.career-modal__content h2,
.career-modal__content h3,
.career-modal__content h4 {
    color: #fff;
}

.career-modal__content a {
    color: #fff;
}

@media (max-width: 1180px) {
    .career-card {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .career-card__salary {
        text-align: right;
    }

    .career-card__actions {
        grid-column: 1 / -1;
        justify-content: flex-end;
    }
}

@media (max-width: 767px) {
    .career-page {
        padding: 34px 0 52px;
    }

    .career-page .container {
        width: calc(100% - 32px);
    }

    .career-filter {
        width: 100%;
    }

    .career-filter__btn {
        flex: 1 1 0;
        min-width: 0;
        padding: 8px 10px;
        font-size: 14px;
    }

    .career-card {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 18px;
        border-radius: 16px;
    }

    .career-card__salary {
        text-align: left;
    }

    .career-card__actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .career-card__salary strong{
        text-align: left;
    }
    .career-card__salary span{
        text-align: left;
    }
    .career-btn {
        width: 100%;
        min-height: 48px;
        border-radius: 10px;
    }

    .career-modal {
        padding: 10px;
    }

    .career-modal__dialog {
        max-height: calc(100dvh - 20px);
        border-radius: 22px;
    }

    .career-modal__head {
        min-height: 68px;
        gap: 12px;
        padding: 12px 14px 12px 18px;
    }

    .career-modal__close {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
    }

    .career-modal__content,
    .career-modal__footer {
        padding: 18px;
    }
}

@media (max-width: 560px) {
    .policy-modal {
        padding: 10px;
    }

    .policy-modal__dialog {
        height: calc(100dvh - 20px);
        border-radius: 22px;
    }

    .policy-modal__head {
        min-height: 68px;
        gap: 12px;
        padding: 12px 14px 12px 18px;
    }

    .policy-modal__close {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
    }

    .policy-modal__content {
        padding: 18px;
    }
}

/* Bitrix24 popup forms */
.b24-window-popup .b24-form,
.b24-window-widget .b24-form {
    --b24-primary-color: #ed1f2d !important;
    --b24-primary-hover-color: #ff3543 !important;
    --b24-primary-text-color: #fff !important;
    --b24-text-color: #fff !important;
    --b24-background-color: transparent !important;
    --b24-field-border-color: rgba(255, 255, 255, 0.18) !important;
    --b24-field-background-color: rgba(255, 255, 255, 0.1) !important;
    --b24-field-focus-background-color: rgba(255, 255, 255, 0.16) !important;
    --b24-popup-background-color: transparent !important;
    --b24-font-family-default: "Montserrat", sans-serif !important;
    --b24-font-family: "Montserrat", sans-serif !important;
}

.b24-window-overlay {
    background: rgba(4, 2, 2, 0.72) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.b24-window-popup .b24-window-popup-wrapper,
.b24-window-widget {
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: clamp(24px, 2.4vw, 38px) !important;
    background:
        radial-gradient(circle at top right, rgba(237, 31, 45, 0.25), transparent 42%),
        linear-gradient(135deg, rgba(28, 20, 20, 0.88), rgba(8, 5, 5, 0.8)) !important;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.52), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}

.b24-window-popup .b24-window-popup-wrapper {
    width: min(560px, calc(100% - 24px)) !important;
}

.b24-window-popup .b24-window-popup-head,
.b24-window-popup .b24-window-header {
    min-height: 72px !important;
    margin: 0 !important;
    padding: 18px 76px 18px 28px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    background: rgba(255, 255, 255, 0.04) !important;
}

.b24-window-popup .b24-window-popup-title,
.b24-window-popup .b24-window-header-title {
    color: #fff !important;
    font: 700 clamp(20px, 1.6vw, 28px)/1.2 "Montserrat", sans-serif !important;
    letter-spacing: 0 !important;
}

.b24-window-popup .b24-window-popup-body,
.b24-window-widget .b24-window-widget-body {
    color: #fff !important;
}

.b24-window-popup .b24-form-wrapper,
.b24-window-widget .b24-form-wrapper {
    max-width: none !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.b24-window-popup .b24-form-header,
.b24-window-widget .b24-form-header {
    padding: 24px 28px 8px !important;
    border-bottom: 0 !important;
    text-align: left !important;
}

.b24-window-popup .b24-form-header-title,
.b24-window-widget .b24-form-header-title {
    color: #fff !important;
    font: 700 clamp(22px, 1.8vw, 30px)/1.2 "Montserrat", sans-serif !important;
    letter-spacing: 0 !important;
}

.b24-window-popup .b24-form-header-description,
.b24-window-widget .b24-form-header-description,
.b24-window-popup .b24-form-control-desc,
.b24-window-widget .b24-form-control-desc,
.b24-window-popup .b24-form-control-comment,
.b24-window-widget .b24-form-control-comment {
    color: rgba(255, 255, 255, 0.78) !important;
}

.b24-window-popup .b24-form-content,
.b24-window-widget .b24-form-content {
    padding: 18px 28px 28px !important;
}

.b24-window-popup .b24-form-field,
.b24-window-widget .b24-form-field {
    margin-bottom: 14px !important;
}

.b24-window-popup .b24-form-control-string .b24-form-control,
.b24-window-popup .b24-form-control-list .b24-form-control,
.b24-window-popup .b24-form-control-text .b24-form-control,
.b24-window-popup .b24-form-control-select .field-item,
.b24-window-widget .b24-form-control-string .b24-form-control,
.b24-window-widget .b24-form-control-list .b24-form-control,
.b24-window-widget .b24-form-control-text .b24-form-control,
.b24-window-widget .b24-form-control-select .field-item {
    min-height: 58px !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
    color: #fff !important;
    letter-spacing: 0 !important;
}

.b24-window-popup .b24-form-control-string .b24-form-control:focus:not([readonly]),
.b24-window-popup .b24-form-control-list .b24-form-control:focus:not([readonly]),
.b24-window-popup .b24-form-control-text .b24-form-control:focus:not([readonly]),
.b24-window-widget .b24-form-control-string .b24-form-control:focus:not([readonly]),
.b24-window-widget .b24-form-control-list .b24-form-control:focus:not([readonly]),
.b24-window-widget .b24-form-control-text .b24-form-control:focus:not([readonly]) {
    border-color: rgba(237, 31, 45, 0.9) !important;
    background: rgba(255, 255, 255, 0.16) !important;
    box-shadow: 0 0 0 3px rgba(237, 31, 45, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.b24-window-popup .b24-form-control-label,
.b24-window-popup .b24-form-control-select-label,
.b24-window-widget .b24-form-control-label,
.b24-window-widget .b24-form-control-select-label {
    color: rgba(255, 255, 255, 0.68) !important;
    letter-spacing: 0 !important;
}

.b24-window-popup .b24-form-btn,
.b24-window-widget .b24-form-btn {
    min-height: 58px !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    border-radius: 18px !important;
    background: #ed1f2d !important;
    box-shadow: 0 16px 42px rgba(237, 31, 45, 0.28) !important;
    color: #fff !important;
    font: 700 16px/1.2 "Montserrat", sans-serif !important;
    letter-spacing: 0 !important;
}

.b24-window-popup .b24-form-btn:hover,
.b24-window-widget .b24-form-btn:hover {
    background: #ff3543 !important;
}

.b24-window-popup .b24-form-field-agreement .b24-form-control-desc,
.b24-window-widget .b24-form-field-agreement .b24-form-control-desc {
    font-size: 12px !important;
    line-height: 1.35 !important;
    opacity: 1 !important;
}

.b24-window-popup .b24-form-field-agreement a.b24-form-field-agreement-link,
.b24-window-widget .b24-form-field-agreement a.b24-form-field-agreement-link {
    color: #ff5964 !important;
    font-size: inherit !important;
    line-height: inherit !important;
}

.b24-window-popup .b24-form-control-checkbox .b24-form-control,
.b24-window-widget .b24-form-control-checkbox .b24-form-control {
    border-color: rgba(255, 255, 255, 0.38) !important;
    border-radius: 8px !important;
    background-color: rgba(255, 255, 255, 0.12) !important;
}

.b24-window-popup .b24-form-control-checkbox .b24-form-control.b24-form-control-checked,
.b24-window-widget .b24-form-control-checkbox .b24-form-control.b24-form-control-checked {
    border-color: #ed1f2d !important;
    background-color: #ed1f2d !important;
}

.b24-window-popup .b24-window-close,
.b24-window-widget .b24-window-close {
    top: 16px !important;
    right: 18px !important;
    width: 42px !important;
    height: 42px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.08) !important;
    opacity: 1 !important;
}

.b24-window-popup .b24-window-close:hover,
.b24-window-widget .b24-window-close:hover {
    background: #ed1f2d !important;
}

.b24-window-popup .b24-window-close::before,
.b24-window-popup .b24-window-close::after,
.b24-window-widget .b24-window-close::before,
.b24-window-widget .b24-window-close::after {
    width: 2px !important;
    height: 18px !important;
    background: #fff !important;
}

.b24-window-panel.b24-window-panel-pos-right {
    top: 50% !important;
    right: auto !important;
    bottom: auto !important;
    left: 50% !important;
    width: min(620px, calc(100% - 24px)) !important;
    height: min(760px, calc(100dvh - 32px)) !important;
    max-height: calc(100dvh - 32px) !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: clamp(24px, 2.4vw, 38px) !important;
    background:
        radial-gradient(circle at top right, rgba(237, 31, 45, 0.25), transparent 42%),
        linear-gradient(135deg, rgba(28, 20, 20, 0.88), rgba(8, 5, 5, 0.8)) !important;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.52), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    transform: translate(-50%, -50%) !important;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}

.b24-window-panel.b24-window-panel-pos-right .b24-form {
    --b24-primary-color: #ed1f2d !important;
    --b24-primary-hover-color: #ff3543 !important;
    --b24-primary-text-color: #fff !important;
    --b24-text-color: #fff !important;
    --b24-background-color: transparent !important;
    --b24-field-border-color: rgba(255, 255, 255, 0.18) !important;
    --b24-field-background-color: rgba(255, 255, 255, 0.1) !important;
    --b24-field-focus-background-color: rgba(255, 255, 255, 0.16) !important;
    --b24-popup-background-color: transparent !important;
    --b24-font-family-default: "Montserrat", sans-serif !important;
    --b24-font-family: "Montserrat", sans-serif !important;
    background: transparent !important;
    color: #fff !important;
}

.b24-window-panel.b24-window-panel-pos-right .b24-window-scrollable {
    width: 100% !important;
    height: 100% !important;
    max-height: calc(100dvh - 32px) !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    background:
        radial-gradient(circle at top right, rgba(237, 31, 45, 0.25), transparent 42%),
        linear-gradient(135deg, rgba(28, 20, 20, 0.88), rgba(8, 5, 5, 0.8)) !important;
}

.b24-window-panel.b24-window-panel-pos-right .b24-form-wrapper {
    display: block !important;
    width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.b24-window-panel.b24-window-panel-pos-right .b24-form-header {
    padding: 24px 28px 8px !important;
    border-bottom: 0 !important;
    text-align: left !important;
}

.b24-window-panel.b24-window-panel-pos-right .b24-form-header-title {
    color: #fff !important;
    font: 700 clamp(22px, 1.8vw, 30px)/1.2 "Montserrat", sans-serif !important;
    letter-spacing: 0 !important;
}

.b24-window-panel.b24-window-panel-pos-right .b24-form-content {
    padding: 18px 28px 28px !important;
}

.b24-window-panel.b24-window-panel-pos-right .b24-form-field {
    margin-bottom: 14px !important;
}

.b24-window-panel.b24-window-panel-pos-right .b24-form-control-string .b24-form-control,
.b24-window-panel.b24-window-panel-pos-right .b24-form-control-list .b24-form-control,
.b24-window-panel.b24-window-panel-pos-right .b24-form-control-text .b24-form-control,
.b24-window-panel.b24-window-panel-pos-right .b24-form-control-select .field-item {
    min-height: 58px !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
    color: #fff !important;
    letter-spacing: 0 !important;
}

.b24-window-panel.b24-window-panel-pos-right .b24-form-control-string .b24-form-control:focus:not([readonly]),
.b24-window-panel.b24-window-panel-pos-right .b24-form-control-list .b24-form-control:focus:not([readonly]),
.b24-window-panel.b24-window-panel-pos-right .b24-form-control-text .b24-form-control:focus:not([readonly]) {
    border-color: rgba(237, 31, 45, 0.9) !important;
    background: rgba(255, 255, 255, 0.16) !important;
    box-shadow: 0 0 0 3px rgba(237, 31, 45, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.b24-window-panel.b24-window-panel-pos-right .b24-form-control-label,
.b24-window-panel.b24-window-panel-pos-right .b24-form-control-select-label,
.b24-window-panel.b24-window-panel-pos-right .b24-form-control-desc,
.b24-window-panel.b24-window-panel-pos-right .b24-form-control-comment {
    color: rgba(255, 255, 255, 0.78) !important;
    letter-spacing: 0 !important;
}

.b24-window-panel.b24-window-panel-pos-right .b24-form-btn {
    min-height: 58px !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    border-radius: 18px !important;
    background: #ed1f2d !important;
    box-shadow: 0 16px 42px rgba(237, 31, 45, 0.28) !important;
    color: #fff !important;
    font: 700 16px/1.2 "Montserrat", sans-serif !important;
    letter-spacing: 0 !important;
}

.b24-window-panel.b24-window-panel-pos-right .b24-form-btn:hover {
    background: #ff3543 !important;
}

.b24-window-panel.b24-window-panel-pos-right .b24-form-field-agreement .b24-form-control-desc {
    font-size: 12px !important;
    line-height: 1.35 !important;
    opacity: 1 !important;
}

.b24-window-panel.b24-window-panel-pos-right .b24-form-field-agreement a.b24-form-field-agreement-link {
    color: #ff5964 !important;
    font-size: inherit !important;
    line-height: inherit !important;
}

.b24-window-panel.b24-window-panel-pos-right .b24-form-control-checkbox .b24-form-control {
    border-color: rgba(255, 255, 255, 0.38) !important;
    border-radius: 8px !important;
    background-color: rgba(255, 255, 255, 0.12) !important;
}

.b24-window-panel.b24-window-panel-pos-right .b24-form-control-checkbox .b24-form-control.b24-form-control-checked {
    border-color: #ed1f2d !important;
    background-color: #ed1f2d !important;
}

.b24-window-panel.b24-window-panel-pos-right .b24-window-close {
    top: 16px !important;
    right: 18px !important;
    width: 42px !important;
    height: 42px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.08) !important;
    outline: 0 !important;
    opacity: 1 !important;
}

.b24-window-panel.b24-window-panel-pos-right .b24-window-close:hover {
    background: #ed1f2d !important;
}

.b24-window-panel.b24-window-panel-pos-right .b24-window-close::before,
.b24-window-panel.b24-window-panel-pos-right .b24-window-close::after {
    width: 2px !important;
    height: 18px !important;
    background: #fff !important;
}

@media (max-width: 560px) {
    .b24-window-popup .b24-window-popup-wrapper {
        width: calc(100% - 20px) !important;
        border-radius: 24px !important;
    }

    .b24-window-popup .b24-window-popup-head,
    .b24-window-popup .b24-window-header {
        min-height: 64px !important;
        padding: 14px 62px 14px 18px !important;
    }

    .b24-window-popup .b24-form-header,
    .b24-window-widget .b24-form-header {
        padding: 20px 18px 6px !important;
    }

    .b24-window-popup .b24-form-content,
    .b24-window-widget .b24-form-content {
        padding: 14px 18px 20px !important;
    }

    .b24-window-popup .b24-window-close,
    .b24-window-widget .b24-window-close {
        top: 11px !important;
        right: 12px !important;
        width: 40px !important;
        height: 40px !important;
    }

    .b24-window-panel.b24-window-panel-pos-right {
        width: calc(100% - 20px) !important;
        height: calc(100dvh - 20px) !important;
        max-height: calc(100dvh - 20px) !important;
        border-radius: 24px !important;
    }

    .b24-window-panel.b24-window-panel-pos-right .b24-window-scrollable {
        height: 100% !important;
        max-height: calc(100dvh - 20px) !important;
    }

    .b24-window-panel.b24-window-panel-pos-right .b24-form-header {
        padding: 20px 18px 6px !important;
    }

    .b24-window-panel.b24-window-panel-pos-right .b24-form-content {
        padding: 14px 18px 20px !important;
    }

    .b24-window-panel.b24-window-panel-pos-right .b24-window-close {
        top: 11px !important;
        right: 12px !important;
        width: 40px !important;
        height: 40px !important;
    }
}

.not-found {
    min-height: calc(100dvh - var(--hero-header-offset));
    display: flex;
    align-items: center;
    padding-top: clamp(52px, 7vw, 96px);
}

.not-found__panel {
    position: relative;
    overflow: hidden;
    max-width: 860px;
    padding: clamp(28px, 5vw, 72px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: clamp(26px, 3vw, 42px);
    background:
        radial-gradient(circle at top right, rgba(237, 31, 45, 0.24), transparent 40%),
        linear-gradient(124deg, rgba(33, 23, 23, 0.74), rgba(8, 5, 5, 0.82));
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
}

.not-found__code {
    margin: 0 0 12px;
    color: var(--red);
    font-size: clamp(64px, 12vw, 168px);
    line-height: 0.88;
    font-weight: 800;
}

.not-found__title {
    margin: 0 0 16px;
    font-size: clamp(32px, 4.5vw, 64px);
    line-height: 1.06;
    font-weight: 700;
}

.not-found__text {

    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(16px, 1.3vw, 22px);
}
.new-item__content li{
    font-size: 14px !important;
line-height: 1.55 !important;
}
.not-found__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: clamp(24px, 3vw, 38px);
}
.possibility-desc-wrapper{
    font-size: 14px !important;
    line-height: 1.55 !important;
}
.possibility-desc-wrapper li{
    font-size: 14px !important;
    line-height: 1.55 !important;
}
.possibility-desc-wrapper p{
    font-size: 14px !important;
    line-height: 1.55 !important;
}

@media (max-width: 560px) {
    .not-found {
        min-height: auto;
        align-items: flex-start;
        padding-top: 48px;
    }

    .not-found__panel {
        padding: 28px 20px;
        border-radius: 24px;
    }

    .not-found__actions {
        flex-direction: column;
    }
}
