@font-face {
    font-family: 'Clash Display';
    src: url('/fonts/clash-display-regular.woff2') format('woff2');
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Clash Display';
    src: url('/fonts/clash-display-semibold.woff2') format('woff2');
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('/fonts/satoshi-regular.woff2') format('woff2');
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'JetBrains Mono';
    src: url('/fonts/jetbrains-mono-cyrillic.woff2') format('woff2');
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: 'JetBrains Mono';
    src: url('/fonts/jetbrains-mono-latin.woff2') format('woff2');
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --font-primary: 'Satoshi', 'Segoe UI', Arial, sans-serif;
    --font-display: 'Clash Display', 'Century Gothic', 'Arial Narrow', Arial, sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;
}

body {
    font-family: var(--font-primary);
    font-size: 14px;
}

.home-hero {
    overflow: hidden;
    background: #0e0e10;
    color: #fff;
}

.home-hero__slider {
    position: relative;
}

.home-hero__slide {
    display: flex;
    flex-direction: column;
    min-height: calc(100dvh - 105px);
    padding: 55px 0 64px;
}

.home-hero__main {
    display: grid;
    grid-template-columns: minmax(0, 708px) minmax(0, 620px);
    justify-content: space-between;
    gap: 32px;
}

.home-hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 1px;
}

.home-hero__title {
    max-width: 710px;
    margin: 0;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(56px, 5.6vw, 88.312px);
    font-weight: 100;
    line-height: 0.96;
    letter-spacing: -0.03em;
}

.home-hero__title span {
    color: #00adef;
}

.home-hero__text {
    max-width: 440px;
    margin-top: 32px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
}

.home-hero__actions {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 44px;
}

.home-hero__button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 50px;
    padding: 0 32px;
    border: 1px solid #00adef;
    border-radius: 50px;
    background: #00adef;
    color: #0e0e10;
    cursor: pointer;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 1.44px;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 0 0 rgba(0, 173, 239, 0);
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.home-hero__button:hover {
    background: #21c4ff;
    box-shadow: 0 10px 30px rgba(0, 173, 239, 0.28);
    transform: translateY(-2px);
}

.home-hero__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 1.44px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.home-hero__link span {
    transition: transform 0.3s ease;
}

.home-hero__link:hover {
    color: #00adef;
}

.home-hero__link:hover span {
    transform: translateX(5px);
}

.home-hero__visual {
    position: relative;
    width: 100%;
    max-width: 620px;
    height: 656px;
    padding-top: 96px;
}

.home-hero__image {
    position: relative;
    width: 100%;
    height: 560px;
    overflow: hidden;
    background: #17171a;
}

.home-hero__image::after {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(14, 14, 16, 0.25), rgba(14, 14, 16, 0.55));
    content: '';
    pointer-events: none;
}

.home-hero__image > img {
    position: absolute;
    top: -21.34%;
    left: 0.06%;
    width: 117.32%;
    max-width: none;
    height: 194.81%;
    object-fit: cover;
}

.home-hero__corner {
    position: absolute;
    z-index: 2;
    width: 22px;
    height: 22px;
    border-color: rgba(255, 255, 255, 0.4);
    border-style: solid;
    pointer-events: none;
}

.home-hero__corner_tl {
    top: 16px;
    left: 16px;
    border-width: 1px 0 0 1px;
}

.home-hero__corner_tr {
    top: 16px;
    right: 16px;
    border-width: 1px 1px 0 0;
}

.home-hero__corner_bl {
    bottom: 16px;
    left: 16px;
    border-width: 0 0 1px 1px;
}

.home-hero__corner_br {
    right: 16px;
    bottom: 16px;
    border-width: 0 1px 1px 0;
}

.home-hero__slider .home-hero__crosshair {
    position: absolute;
    z-index: 3;
    width: 14px !important;
    height: 14px;
}

.home-hero__crosshair_top {
    top: 72px;
    left: -24px;
}

.home-hero__crosshair_bottom {
    top: 666px;
    left: 630px;
}

.home-hero__reference {
    position: absolute;
    z-index: 3;
    bottom: 24px;
    left: 24px;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 400;
    line-height: 15px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

.home-hero__caption {
    margin-top: auto;
    padding-top: 42px;
    color: #fff;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: -0.18px;
}

.home-hero__slider .owl-stage {
    display: flex;
}

.home-hero__slider .owl-item {
    display: flex;
}

.home-hero__slider .owl-dots {
    position: absolute;
    right: 0;
    bottom: 76px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.home-hero__slider .owl-dot {
    width: 32px;
    height: 24px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.home-hero__slider .owl-dot span {
    display: block;
    width: 32px;
    height: 3px;
    margin-left: auto;
    background: rgba(255, 255, 255, 0.25);
    transition: width 0.35s ease, background 0.35s ease;
}

.home-hero__slider .owl-dot.active {
    width: 56px;
}

.home-hero__slider .owl-dot.active span {
    width: 56px;
    background: #00adef;
}

.home-hero__slider.owl-loaded .owl-item .home-hero__content > *,
.home-hero__slider.owl-loaded .owl-item .home-hero__visual {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.home-hero__slider.owl-loaded .owl-item.active .home-hero__content > *,
.home-hero__slider.owl-loaded .owl-item.active .home-hero__visual {
    opacity: 1;
    transform: translateY(0);
}

.home-hero__slider.owl-loaded .owl-item.active .home-hero__text {
    transition-delay: 0.08s;
}

.home-hero__slider.owl-loaded .owl-item.active .home-hero__actions {
    transition-delay: 0.16s;
}

.home-hero__slider.owl-loaded .owl-item.active .home-hero__visual {
    transition-delay: 0.08s;
}

.home-about {
    padding: 160px 0;
    background: #fff;
    color: #1f2933;
    overflow: hidden;
}

.home-about__inner {
    width: 100%;
}

.home-about__heading {
    max-width: 1200px;
    color: #1f2933;
    font-family: var(--font-display);
    font-size: 72.542px;
    font-weight: 600;
    line-height: 73.993px;
    letter-spacing: -1.8135px;
}

.home-about__heading em {
    color: #8b95a1;
    font-style: italic;
}

.home-about__grid {
    display: grid;
    grid-template-columns: minmax(0, 692.5px) minmax(0, 692.5px);
    gap: 64px;
    margin-top: 96px;
}

.home-about__media {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: flex-end;
}

.home-about__media.jsuser-d-reveal {
    transform: translateY(24px) scale(0.97);
}

.home-about__media.jsuser-d-reveal.is-visible {
    transform: translateY(0) scale(1);
}

.home-about__photo {
    position: relative;
    width: 100%;
    height: 560px;
    overflow: hidden;
    background: #e8ecef;
}

.home-about__photo > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-about__label {
    position: absolute;
    z-index: 3;
    top: 24px;
    left: 24px;
    min-width: 172.656px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.95);
}

.home-about__label span {
    display: block;
    color: #8b95a1;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 400;
    line-height: 15px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    white-space: nowrap;
}

.home-about__label strong {
    display: block;
    padding-top: 4px;
    color: #1f2933;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    white-space: nowrap;
}

.home-about__corner {
    position: absolute;
    z-index: 2;
    width: 18px;
    height: 18px;
    border-color: rgba(255, 255, 255, 0.5);
    border-style: solid;
    pointer-events: none;
}

.home-about__corner_tl {
    top: 16px;
    left: 16px;
    border-width: 1px 0 0 1px;
}

.home-about__corner_tr {
    top: 16px;
    right: 16px;
    border-width: 1px 1px 0 0;
}

.home-about__corner_bl {
    bottom: 16px;
    left: 16px;
    border-width: 0 0 1px 1px;
}

.home-about__corner_br {
    right: 16px;
    bottom: 16px;
    border-width: 0 1px 1px 0;
}

.home-about__stat {
    position: absolute;
    right: 0;
    bottom: -176.578px;
    z-index: 4;
    width: 340px;
    padding: 40px;
    background: #0e0e10;
    color: #fff;
    box-shadow: 0 24px 70px rgba(14, 14, 16, 0.28);
}

.home-about__stat-label {
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 400;
    line-height: 15px;
    letter-spacing: 2.6px;
    text-transform: uppercase;
    white-space: nowrap;
}

.home-about__stat-number {
    display: flex;
    align-items: flex-end;
    padding-top: 20px;
}

.home-about__stat-number span {
    color: #fff;
    font-family: var(--font-display);
    font-size: 88px;
    font-weight: 400;
    line-height: 79.2px;
    letter-spacing: -3.52px;
}

.home-about__stat-number em {
    display: block;
    padding-bottom: 12px;
    padding-left: 4px;
    color: #00adef;
    font-family: var(--font-display);
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 48px;
}

.home-about__stat-text {
    max-width: 260px;
    padding-top: 16px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 400;
    line-height: 20.8px;
}

.home-about__content {
    padding-left: 48px;
}

.home-about__lead {
    max-width: 645px;
    color: #1f2933;
    font-size: 19px;
    font-weight: 400;
    line-height: 29.45px;
}

.home-about__text {
    max-width: 645px;
    padding-top: 32px;
    color: #6b7684;
    font-size: 15px;
    font-weight: 400;
    line-height: 26.25px;
}

.home-about__link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-top: 48px;
    color: #1f2933;
}

.home-about__link span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(31, 41, 51, 0.2);
    border-radius: 50%;
    font-size: 16px;
    line-height: 24px;
    transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.home-about__link strong {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 1.68px;
    text-transform: uppercase;
    white-space: nowrap;
}

.home-about__link:hover span {
    border-color: #00adef;
    background: #00adef;
    color: #fff;
    transform: translateY(-2px);
}

.home-about__features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 645px;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.home-about__feature strong {
    display: block;
    color: #1f2933;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    line-height: 33px;
    letter-spacing: -0.22px;
    white-space: nowrap;
}

.home-about__feature span {
    display: block;
    padding-top: 4px;
    color: #8b95a1;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 400;
    line-height: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
}

.home-about__cycle {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 64px;
}

.home-about__cycle span {
    display: block;
    width: 32px;
    height: 1px;
    background: #00adef;
}

.home-about__cycle strong {
    color: #6b7684;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 400;
    line-height: 16.5px;
    letter-spacing: 2.64px;
    text-transform: uppercase;
    white-space: nowrap;
}

.home-categories {
    padding: 160px 0;
    background: #f5f7f8;
    color: #1f2933;
    overflow: hidden;
}

.home-categories__top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
}

.home-categories__head {
    max-width: 1100px;
}

.home-categories__label,
.home-categories__all {
    display: flex;
    align-items: center;
}

.home-categories__label {
    gap: 12px;
}

.home-categories__label span {
    width: 32px;
    height: 1px;
    background: #00adef;
}

.home-categories__label strong {
    color: #6b7684;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 400;
    line-height: 16.5px;
    letter-spacing: 2.64px;
    text-transform: uppercase;
    white-space: nowrap;
}

.home-categories__title {
    max-width: 1100px;
    padding-top: 24px;
    color: #1f2933;
    font-family: var(--font-display);
    font-size: 69.388px;
    font-weight: 600;
    line-height: 70.776px;
    letter-spacing: -1.7347px;
}

.home-categories__title em {
    color: #8b95a1;
    font-style: italic;
}

.home-categories__all {
    gap: 16px;
    padding-bottom: 8px;
    color: #1f2933;
}

.home-categories__all strong {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 1.68px;
    text-transform: uppercase;
    white-space: nowrap;
}

.home-categories__all span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(31, 41, 51, 0.25);
    border-radius: 50%;
    font-size: 16px;
    line-height: 24px;
    transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.home-categories__all:hover span {
    border-color: #00adef;
    background: #00adef;
    color: #fff;
    transform: translateY(-2px);
}

.home-categories__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 24px;
    margin-top: 80px;
}

.home-categories__card {
    position: relative;
    grid-column: span 2;
    height: 440px;
    overflow: hidden;
    background: #0e0e10;
    color: #fff;
    cursor: none;
}

.home-categories__card_big {
    grid-column: span 4;
    height: 620px;
}

.home-categories__card_tall {
    height: 620px;
}

.home-categories__card_wide {
    grid-column: span 3;
}

.home-categories__card img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.home-categories__card_big img {
    top: -30.73%;
    left: -11.17%;
    width: 100%;
    height: 231.75%;
}

.home-categories__card_tall img {
    top: 2.24%;
    left: -97.11%;
    width: 199.14%;
    height: 100%;
}

.home-categories__card:nth-child(4) img {
    top: -55.18%;
    left: 0.14%;
    width: 100%;
    height: 159.12%;
}

.home-categories__card:nth-child(6) img {
    top: -128.64%;
    left: 0.11%;
    width: 100%;
    height: 242.76%;
}

.home-categories__card:hover img {
    transform: scale(1.06);
}

.home-categories__shade {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(14, 14, 16, 0.15) 40%, rgba(14, 14, 16, 0.85) 87.5%);
    pointer-events: none;
}

.home-categories__corner {
    position: absolute;
    z-index: 2;
    width: 16px;
    height: 16px;
    border-color: rgba(255, 255, 255, 0.25);
    border-style: solid;
    pointer-events: none;
}

.home-categories__corner_tl {
    top: 16px;
    left: 16px;
    border-width: 1px 0 0 1px;
}

.home-categories__corner_tr {
    top: 16px;
    right: 16px;
    border-width: 1px 1px 0 0;
}

.home-categories__corner_bl {
    bottom: 16px;
    left: 16px;
    border-width: 0 0 1px 1px;
}

.home-categories__corner_br {
    right: 16px;
    bottom: 16px;
    border-width: 0 1px 1px 0;
}

.home-categories__number {
    position: absolute;
    z-index: 3;
    top: 24px;
    left: 24px;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 400;
    line-height: 16.5px;
    letter-spacing: 2.64px;
}

.home-categories__text {
    position: absolute;
    z-index: 3;
    right: 24px;
    bottom: 24px;
    left: 24px;
}

.home-categories__text strong {
    display: inline;
    color: #fff;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: -0.24px;
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 0 1px;
    transition: background-size 0.35s ease;
}

.home-categories__card:hover .home-categories__text strong {
    background-size: 100% 1px;
}

.home-categories__text span {
    display: block;
    padding-top: 12px;
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 400;
    line-height: 17.6px;
    letter-spacing: 0.66px;
    white-space: nowrap;
}

.jsuser-d-category-cursor {
    position: fixed;
    z-index: 1300;
    top: 0;
    left: 0;
    display: none;
    width: 22px;
    height: 22px;
    border: 1px solid #00adef;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.jsuser-d-category-cursor::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #00adef;
    content: '';
    transform: translate(-50%, -50%);
}

.jsuser-d-category-cursor.is-visible {
    display: block;
}

.home-capabilities {
    position: relative;
    padding: 160px 0;
    overflow: hidden;
    background: #0e0e10;
    color: #fff;
}

.home-capabilities__top,
.home-capabilities__grid {
    position: relative;
    z-index: 2;
}

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

.home-capabilities__label span {
    width: 32px;
    height: 1px;
    background: #00adef;
}

.home-capabilities__label strong {
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 400;
    line-height: 16.5px;
    letter-spacing: 2.64px;
    text-transform: uppercase;
    white-space: nowrap;
}

.home-capabilities__title {
    max-width: 1400px;
    padding-top: 24px;
    color: #fff;
    font-family: var(--font-display);
    font-size: 69.388px;
    font-weight: 600;
    line-height: 70.776px;
    letter-spacing: -1.7347px;
}

.home-capabilities__title em {
    color: #00adef;
    font-style: italic;
}

.home-capabilities__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 96px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.home-capabilities__item {
    min-height: 429.688px;
    padding: 56px 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.home-capabilities__item:first-child {
    padding-left: 0;
    padding-right: 41px;
}

.home-capabilities__item:last-child {
    border-right: 0;
}

.home-capabilities__item:hover {
    background: rgba(255, 255, 255, 0.025);
}

.home-capabilities__number {
    color: #00adef;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 400;
    line-height: 19.5px;
    letter-spacing: 3.12px;
}

.home-capabilities__icon {
    display: block;
    width: 20px;
    height: 20px;
    margin-top: 0;
}

.home-capabilities__name {
    max-width: 322px;
    padding-top: 32px;
    color: #fff;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: -0.36px;
}

.home-capabilities__text {
    max-width: 322px;
    padding-top: 24px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 400;
    line-height: 23.8px;
}

.home-capabilities__more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s ease;
}

.home-capabilities__more span {
    width: 24px;
    height: 1px;
    background: #00adef;
    transition: width 0.3s ease;
}

.home-capabilities__more strong {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 400;
    line-height: 15px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    white-space: nowrap;
}

.home-capabilities__more:hover {
    color: #00adef;
}

.home-capabilities__more:hover span {
    width: 34px;
}

.home-clients {
    padding: 160px 0;
    overflow: hidden;
    background: #fff;
}

.home-clients > .full-container {
    width: 100%;
    max-width: none;
    padding-right: 0;
    padding-left: 0;
}

.home-clients__top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 64px;
}

.home-clients__head {
    max-width: 1000px;
}

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

.home-clients__label span {
    width: 32px;
    height: 1px;
    background: #00adef;
}

.home-clients__label strong {
    color: #6b7684;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 400;
    line-height: 16.5px;
    letter-spacing: 2.64px;
    text-transform: uppercase;
    white-space: nowrap;
}

.home-clients__title {
    max-width: 1000px;
    padding-top: 24px;
    color: #1f2933;
    font-family: var(--font-display);
    font-size: 69.388px;
    font-weight: 600;
    line-height: 70.776px;
    letter-spacing: -1.7347px;
}

.home-clients__title em {
    color: #8b95a1;
    font-style: italic;
}

.home-clients__intro {
    max-width: 380px;
    color: #6b7684;
    font-size: 14px;
    font-weight: 400;
    line-height: 23.8px;
}

.home-clients__marquees {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 80px;
}

.home-clients__line {
    overflow: hidden;
}

.home-clients__track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.home-clients__line_left .home-clients__track {
    animation: homeClientsMoveLeft 42s linear infinite;
}

.home-clients__line_right .home-clients__track {
    animation: homeClientsMoveRight 46s linear infinite;
}

.home-clients__group {
    display: flex;
    flex: 0 0 auto;
}

.home-clients__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 100px;
    margin: 0 8px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    overflow: hidden;
    background: #fff;
}

.home-clients__logo span {
    color: #9aa4ad;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: -0.2px;
    white-space: nowrap;
}

.home-clients__logo img {
    display: block;
    max-width: 178px;
    max-height: 92px;
    object-fit: contain;
}

.home-clients__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 80px;
    padding-top: 65px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.home-clients__note {
    color: #6b7684;
    font-size: 13px;
    font-weight: 400;
    line-height: 19.5px;
}

.home-clients__note strong {
    color: #1f2933;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
}

.home-clients__link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.home-clients__link span {
    color: #1f2933;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 1.68px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.home-clients__link strong {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(31, 41, 51, 0.25);
    border-radius: 50%;
    color: #1f2933;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.home-clients__link:hover span {
    color: #00adef;
}

.home-clients__link:hover strong {
    border-color: #00adef;
    background: #00adef;
    color: #fff;
}

@keyframes homeClientsMoveLeft {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes homeClientsMoveRight {
    0% {
        transform: translate3d(-50%, 0, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

.home-cta {
    position: relative;
    min-height: 775px;
    padding: 160px 0;
    overflow: hidden;
    background: #0e0e10 url('/images/index/home-cta-bg.jpg') center center / cover no-repeat;
    color: #fff;
}

.home-cta::before {
    position: absolute;
    inset: 0;
    background: rgba(14, 14, 16, 0.75);
    content: '';
}

.home-cta::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #0e0e10 0%, #0e0e10 40%, rgba(14, 14, 16, 0.7) 100%);
    content: '';
}

.home-cta__content {
    position: relative;
    z-index: 2;
    max-width: 950px;
}

.home-cta__label {
    display: flex;
    align-items: center;
    gap: 16px;
}

.home-cta__label span {
    width: 40px;
    height: 1px;
    background: #00adef;
}

.home-cta__label strong {
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 400;
    line-height: 16.5px;
    letter-spacing: 2.86px;
    text-transform: uppercase;
    white-space: nowrap;
}

.home-cta__title {
    max-width: 950px;
    padding-top: 32px;
    color: #fff;
    font-family: var(--font-display);
    font-size: 72.542px;
    font-weight: 600;
    line-height: 73.993px;
    letter-spacing: -1.8135px;
}

.home-cta__title em {
    color: #00adef;
    font-style: italic;
}

.home-cta__text {
    max-width: 560px;
    padding-top: 32px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 16px;
    font-weight: 400;
    line-height: 27.2px;
}

.home-cta__action {
    position: relative;
    display: inline-flex;
    margin-top: 48px;
    padding: 10px;
}

.home-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    height: 50px;
    padding: 0 28px;
    border: 0;
    border-radius: 50px;
    background: #00adef;
    color: #0e0e10;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 1.44px;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.home-cta__button:hover {
    background: #28c5ff;
    box-shadow: 0 16px 38px rgba(0, 173, 239, 0.3);
    transform: translateY(-2px);
}

.home-cta__corner {
    position: absolute;
    width: 14px;
    height: 14px;
    border-color: rgba(255, 255, 255, 0.25);
    border-style: solid;
    pointer-events: none;
}

.home-cta__corner_tl {
    top: 0;
    left: 0;
    border-width: 1px 0 0 1px;
}

.home-cta__corner_tr {
    top: 0;
    right: 0;
    border-width: 1px 1px 0 0;
}

.home-cta__corner_bl {
    bottom: 0;
    left: 0;
    border-width: 0 0 1px 1px;
}

.home-cta__corner_br {
    right: 0;
    bottom: 0;
    border-width: 0 1px 1px 0;
}

.about-hero {
    padding: 96px 0 72px;
    background: #f5f7fa;
}

.about-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 760px) minmax(0, 690px);
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

.about-hero__label,
.about-values__label {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-hero__label span,
.about-values__label span {
    width: 32px;
    height: 1px;
    background: #00adef;
}

.about-hero__label strong,
.about-values__label strong {
    color: #6b7684;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 400;
    line-height: 16.5px;
    letter-spacing: 2.64px;
    text-transform: uppercase;
    white-space: nowrap;
}

.about-hero__title,
.about-values__title {
    max-width: 850px;
    padding-top: 24px;
    color: #1f2933;
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 600;
    line-height: 74px;
    letter-spacing: -1.8px;
}

.about-hero__title em,
.about-values__title em {
    color: #8b95a1;
    font-style: italic;
}

.about-hero__text {
    max-width: 610px;
    padding-top: 30px;
    color: #6b7684;
    font-size: 16px;
    font-weight: 400;
    line-height: 27.2px;
}

.about-hero__media {
    position: relative;
    overflow: hidden;
    padding: 20px;
    background: #fff;
}

.about-hero__media img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 0.78;
    object-fit: cover;
}

.about-hero__corner {
    position: absolute;
    width: 42px;
    height: 42px;
    border: 1px solid #00adef;
    pointer-events: none;
}

.about-hero__corner::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    background:
        linear-gradient(#00adef, #00adef) center / 1px 100% no-repeat,
        linear-gradient(#00adef, #00adef) center / 100% 1px no-repeat;
}

.about-hero__corner_tl {
    top: 0;
    left: 0;
    border-width: 1px 0 0 1px;
}

.about-hero__corner_tl::after {
    top: -7px;
    left: -7px;
}

.about-hero__corner_tr {
    top: 0;
    right: 0;
    border-width: 1px 1px 0 0;
}

.about-hero__corner_tr::after {
    top: -7px;
    right: -7px;
}

.about-hero__corner_bl {
    bottom: 0;
    left: 0;
    border-width: 0 0 1px 1px;
}

.about-hero__corner_bl::after {
    bottom: -7px;
    left: -7px;
}

.about-hero__corner_br {
    right: 0;
    bottom: 0;
    border-width: 0 1px 1px 0;
}

.about-hero__corner_br::after {
    right: -7px;
    bottom: -7px;
}

.about-values {
    padding: 76px 0 92px;
    background: #fff;
}

.about-values__top {
    max-width: 1180px;
}

.about-values__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 46px;
}

.about-values__item {
    min-height: 320px;
    padding: 42px 38px;
    border: 1px solid rgba(31, 41, 51, 0.1);
    background: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.about-values__item:hover {
    border-color: rgba(0, 173, 239, 0.38);
    box-shadow: 0 20px 50px rgba(31, 41, 51, 0.07);
    transform: translateY(-4px);
}

.about-values__number {
    color: #00adef;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 2.16px;
}

.about-values__name {
    padding-top: 84px;
    color: #1f2933;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    line-height: 38px;
    letter-spacing: -0.5px;
}

.about-values__text {
    max-width: 360px;
    padding-top: 18px;
    color: #6b7684;
    font-size: 15px;
    font-weight: 400;
    line-height: 25.5px;
}

.about-production {
    padding: 76px 0;
    background: #0e0e10;
    color: #fff;
}

.about-production__grid {
    display: grid;
    grid-template-columns: minmax(0, 760px) minmax(0, 610px);
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.about-production__image {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.about-production__image img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 0.68;
    object-fit: cover;
}

.about-production__label {
    color: #00adef;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 400;
    line-height: 16.5px;
    letter-spacing: 2.64px;
    text-transform: uppercase;
}

.about-production__title {
    padding-top: 24px;
    color: #fff;
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 600;
    line-height: 60px;
    letter-spacing: -1.2px;
}

.about-production__text {
    max-width: 540px;
    padding-top: 28px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 16px;
    font-weight: 400;
    line-height: 27.2px;
}

.about-production__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 48px;
}

.about-production__stat {
    padding: 26px 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.about-production__stat strong {
    display: flex;
    align-items: flex-start;
    color: #00adef;
    font-family: var(--font-display);
    font-size: 58px;
    font-weight: 600;
    line-height: 58px;
    letter-spacing: -1px;
}

.about-production__plus {
    padding-top: 5px;
    padding-right: 4px;
    font-size: 34px;
    line-height: 34px;
}

.about-production__stat > span {
    display: block;
    padding-top: 10px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}

.about-cta {
    padding: 72px 0 68px;
    background: #f5f7fa;
}

.about-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    padding: 58px 64px;
    background: #fff;
}

.about-cta__title {
    max-width: 620px;
    color: #1f2933;
    font-family: var(--font-display);
    font-size: 46px;
    font-weight: 600;
    line-height: 52px;
    letter-spacing: -0.9px;
}

.about-cta__text {
    max-width: 430px;
    color: #6b7684;
    font-size: 15px;
    font-weight: 400;
    line-height: 25.5px;
}

.about-cta__button {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-width: 194px;
    height: 50px;
    padding: 0 28px;
    border: 0;
    border-radius: 50px;
    background: #00adef;
    color: #fff;
    cursor: pointer;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 1.44px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.about-cta__button:hover {
    background: #009bd6;
    box-shadow: 0 16px 38px rgba(0, 173, 239, 0.24);
    transform: translateY(-2px);
}

.production-hero {
    padding: 96px 0 72px;
    background: #f5f7fa;
}

.production-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 760px) minmax(0, 690px);
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

.production-hero__title {
    max-width: 850px;
    padding-top: 24px;
    color: #1f2933;
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 600;
    line-height: 74px;
    letter-spacing: 0;
}

.production-hero__title em {
    color: #8b95a1;
    font-style: italic;
}

.production-hero__text {
    max-width: 610px;
    padding-top: 30px;
    color: #6b7684;
    font-size: 16px;
    font-weight: 400;
    line-height: 27.2px;
}

.production-hero__media {
    position: relative;
    overflow: hidden;
    padding: 20px;
    background: #fff;
}

.production-hero__media img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 0.78;
    object-fit: cover;
}

.production-hero__corner {
    position: absolute;
    width: 42px;
    height: 42px;
    border: 1px solid #00adef;
    pointer-events: none;
}

.production-hero__corner::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    background:
        linear-gradient(#00adef, #00adef) center / 1px 100% no-repeat,
        linear-gradient(#00adef, #00adef) center / 100% 1px no-repeat;
}

.production-hero__corner_tl {
    top: 0;
    left: 0;
    border-width: 1px 0 0 1px;
}

.production-hero__corner_tl::after {
    top: -7px;
    left: -7px;
}

.production-hero__corner_tr {
    top: 0;
    right: 0;
    border-width: 1px 1px 0 0;
}

.production-hero__corner_tr::after {
    top: -7px;
    right: -7px;
}

.production-hero__corner_bl {
    bottom: 0;
    left: 0;
    border-width: 0 0 1px 1px;
}

.production-hero__corner_bl::after {
    bottom: -7px;
    left: -7px;
}

.production-hero__corner_br {
    right: 0;
    bottom: 0;
    border-width: 0 1px 1px 0;
}

.production-hero__corner_br::after {
    right: -7px;
    bottom: -7px;
}

.production-process {
    padding: 76px 0 92px;
    background: #fff;
}

.production-process__list {
    display: grid;
    gap: 24px;
}

.production-process__item {
    display: grid;
    grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
    align-items: center;
    gap: 54px;
    padding: 34px;
    border: 1px solid rgba(31, 41, 51, 0.1);
    background: #fff;
}

.production-process__item:nth-child(even) .production-process__content {
    order: 2;
}

.production-process__item:nth-child(even) .production-process__image {
    order: 1;
}

.production-process__number,
.production-capabilities__number {
    color: #00adef;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 2.16px;
}

.production-process__title {
    padding-top: 40px;
    color: #1f2933;
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 600;
    line-height: 48px;
    letter-spacing: 0;
}

.production-process__text {
    max-width: 520px;
    padding-top: 20px;
    color: #6b7684;
    font-size: 15px;
    font-weight: 400;
    line-height: 25.5px;
}

.production-process__image {
    overflow: hidden;
    background: #f5f7fa;
}

.production-process__image img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 0.62;
    object-fit: cover;
}

.production-capabilities {
    padding: 76px 0;
    background: #f5f7fa;
}

.production-capabilities__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.production-capabilities__item {
    min-height: 300px;
    padding: 38px 34px;
    border: 1px solid rgba(31, 41, 51, 0.08);
    background: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.production-capabilities__item:hover {
    border-color: rgba(0, 173, 239, 0.38);
    box-shadow: 0 20px 50px rgba(31, 41, 51, 0.07);
    transform: translateY(-4px);
}

.production-capabilities__name {
    padding-top: 74px;
    color: #1f2933;
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 0;
}

.production-capabilities__text {
    max-width: 360px;
    padding-top: 18px;
    color: #6b7684;
    font-size: 15px;
    font-weight: 400;
    line-height: 25.5px;
}

.production-quality {
    padding: 76px 0;
    background: #0e0e10;
    color: #fff;
}

.production-quality__grid {
    display: grid;
    grid-template-columns: minmax(0, 760px) minmax(0, 610px);
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.production-quality__image {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.production-quality__image img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 0.68;
    object-fit: cover;
}

.production-quality__label {
    color: #00adef;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 400;
    line-height: 16.5px;
    letter-spacing: 2.64px;
    text-transform: uppercase;
}

.production-quality__title {
    padding-top: 24px;
    color: #fff;
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 600;
    line-height: 60px;
    letter-spacing: 0;
}

.production-quality__text {
    max-width: 540px;
    padding-top: 28px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 16px;
    font-weight: 400;
    line-height: 27.2px;
}

.production-quality__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 48px;
}

.production-quality__stat {
    padding: 26px 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.production-quality__stat strong {
    display: flex;
    align-items: flex-start;
    color: #00adef;
    font-family: var(--font-display);
    font-size: 58px;
    font-weight: 600;
    line-height: 58px;
    letter-spacing: 0;
}

.production-quality__plus {
    padding-top: 5px;
    padding-right: 4px;
    font-size: 34px;
    line-height: 34px;
}

.production-quality__stat > span {
    display: block;
    padding-top: 10px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}

.production-cta {
    padding: 72px 0 68px;
    background: #f5f7fa;
}

.production-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    padding: 58px 64px;
    background: #fff;
}

.production-cta__title {
    max-width: 620px;
    color: #1f2933;
    font-family: var(--font-display);
    font-size: 46px;
    font-weight: 600;
    line-height: 52px;
    letter-spacing: 0;
}

.production-cta__text {
    max-width: 430px;
    color: #6b7684;
    font-size: 15px;
    font-weight: 400;
    line-height: 25.5px;
}

.production-cta__button {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-width: 194px;
    height: 50px;
    padding: 0 28px;
    border: 0;
    border-radius: 50px;
    background: #00adef;
    color: #fff;
    cursor: pointer;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 1.44px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.production-cta__button:hover {
    background: #009bd6;
    box-shadow: 0 16px 38px rgba(0, 173, 239, 0.24);
    transform: translateY(-2px);
}

.products-hero {
    padding: 92px 0 64px;
    background: #f5f7fa;
}

.products-hero__inner {
    max-width: 1120px;
}

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

.products-hero__label span {
    width: 32px;
    height: 1px;
    background: #00adef;
}

.products-hero__label strong {
    color: #6b7684;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 400;
    line-height: 16.5px;
    letter-spacing: 2.64px;
    text-transform: uppercase;
    white-space: nowrap;
}

.products-hero__title {
    max-width: 1080px;
    padding-top: 24px;
    color: #1f2933;
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 600;
    line-height: 74px;
    letter-spacing: -1.8px;
}

.products-hero__title em {
    color: #8b95a1;
    font-style: italic;
}

.products-catalog {
    padding: 76px 0 92px;
    background: #fff;
    color: #1f2933;
    overflow: hidden;
}

.products-catalog__intro {
    width: 100%;
}

.products-catalog__intro p {
    margin: 0;
    color: #6b7684;
    font-size: 18px;
    font-weight: 400;
    line-height: 30.6px;
}

.products-catalog__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 24px;
    margin-top: 72px;
}

.products-catalog__card {
    position: relative;
    grid-column: span 2;
    height: 430px;
    overflow: hidden;
    background: #0e0e10;
    color: #fff;
    cursor: none;
}

.products-catalog__card_big {
    grid-column: span 4;
    height: 560px;
}

.products-catalog__card_tall {
    height: 560px;
}

.products-catalog__card_wide {
    grid-column: span 4;
}

.products-catalog__card img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.products-catalog__card:hover img {
    transform: scale(1.06);
}

.products-catalog__shade {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(14, 14, 16, 0.08) 36%, rgba(14, 14, 16, 0.86) 88%);
    pointer-events: none;
}

.products-catalog__corner {
    position: absolute;
    z-index: 2;
    width: 16px;
    height: 16px;
    border-color: rgba(255, 255, 255, 0.25);
    border-style: solid;
    pointer-events: none;
}

.products-catalog__corner_tl {
    top: 16px;
    left: 16px;
    border-width: 1px 0 0 1px;
}

.products-catalog__corner_tr {
    top: 16px;
    right: 16px;
    border-width: 1px 1px 0 0;
}

.products-catalog__corner_bl {
    bottom: 16px;
    left: 16px;
    border-width: 0 0 1px 1px;
}

.products-catalog__corner_br {
    right: 16px;
    bottom: 16px;
    border-width: 0 1px 1px 0;
}

.products-catalog__number {
    position: absolute;
    z-index: 3;
    top: 24px;
    left: 24px;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 400;
    line-height: 16.5px;
    letter-spacing: 2.64px;
}

.products-catalog__text {
    position: absolute;
    z-index: 3;
    right: 24px;
    bottom: 24px;
    left: 24px;
}

.products-catalog__text strong {
    display: inline;
    color: #fff;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    line-height: 38px;
    letter-spacing: -0.3px;
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 0 1px;
    transition: background-size 0.35s ease;
}

.products-catalog__card:hover .products-catalog__text strong {
    background-size: 100% 1px;
}

.products-catalog__text span {
    display: block;
    padding-top: 12px;
    color: rgba(255, 255, 255, 0.58);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 400;
    line-height: 17.6px;
    letter-spacing: 0.66px;
}

.product-category-hero {
    padding: 92px 0 72px;
    background: #f5f7fa;
}

.product-category-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 720px) minmax(0, 760px);
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

.product-category-hero__label {
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-category-hero__label span {
    width: 32px;
    height: 1px;
    background: #00adef;
}

.product-category-hero__label strong {
    color: #6b7684;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 400;
    line-height: 16.5px;
    letter-spacing: 2.64px;
    text-transform: uppercase;
    white-space: nowrap;
}

.product-category-hero__title {
    max-width: 760px;
    padding-top: 24px;
    color: #1f2933;
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 600;
    line-height: 74px;
    letter-spacing: -1.8px;
}

.product-category-hero__title em {
    color: #8b95a1;
    font-style: italic;
}

.product-category-hero__text {
    max-width: 610px;
    padding-top: 30px;
    color: #6b7684;
    font-size: 16px;
    font-weight: 400;
    line-height: 27.2px;
}

.product-category-hero__media {
    position: relative;
    overflow: hidden;
    padding: 20px;
    background: #fff;
}

.product-category-hero__media img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 0.68;
    object-fit: cover;
}

.product-category-hero__corner {
    position: absolute;
    width: 42px;
    height: 42px;
    border: 1px solid #00adef;
    pointer-events: none;
}

.product-category-hero__corner_tl {
    top: 0;
    left: 0;
    border-width: 1px 0 0 1px;
}

.product-category-hero__corner_tr {
    top: 0;
    right: 0;
    border-width: 1px 1px 0 0;
}

.product-category-hero__corner_bl {
    bottom: 0;
    left: 0;
    border-width: 0 0 1px 1px;
}

.product-category-hero__corner_br {
    right: 0;
    bottom: 0;
    border-width: 0 1px 1px 0;
}

.product-category-list {
    padding: 76px 0 92px;
    background: #fff;
}

.product-category-list__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.product-category-list__card {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    background: #0e0e10;
    color: #fff;
    cursor: none;
}

.product-category-list__card img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-category-list__card:hover img {
    transform: scale(1.06);
}

.product-category-list__shade {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(14, 14, 16, 0.12) 36%, rgba(14, 14, 16, 0.84) 88%);
}

.product-category-list__number {
    position: absolute;
    z-index: 2;
    top: 24px;
    left: 24px;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 400;
    line-height: 16.5px;
    letter-spacing: 2.64px;
}

.product-category-list__name {
    position: absolute;
    z-index: 2;
    right: 24px;
    bottom: 24px;
    left: 24px;
    color: #fff;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    line-height: 38px;
    letter-spacing: -0.3px;
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 0 1px;
    transition: background-size 0.35s ease;
}

.product-category-list__card:hover .product-category-list__name {
    background-size: 100% 1px;
}

.product-category-cta {
    padding: 72px 0 68px;
    background: #f5f7fa;
}

.product-category-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    padding: 58px 64px;
    background: #fff;
}

.product-category-cta__title {
    max-width: 620px;
    color: #1f2933;
    font-family: var(--font-display);
    font-size: 46px;
    font-weight: 600;
    line-height: 52px;
    letter-spacing: -0.9px;
}

.product-category-cta__text {
    max-width: 430px;
    color: #6b7684;
    font-size: 15px;
    font-weight: 400;
    line-height: 25.5px;
}

.product-category-cta__button {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-width: 194px;
    height: 50px;
    padding: 0 28px;
    border: 0;
    border-radius: 50px;
    background: #00adef;
    color: #fff;
    cursor: pointer;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 1.44px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.product-category-cta__button:hover {
    background: #009bd6;
    box-shadow: 0 16px 38px rgba(0, 173, 239, 0.24);
    transform: translateY(-2px);
}

.site-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding-bottom: 36px;
    color: #6b7684;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 400;
    line-height: 16.5px;
    letter-spacing: 1.54px;
    text-transform: uppercase;
}

.site-breadcrumbs a {
    transition: color 0.3s ease;
}

.site-breadcrumbs a:hover {
    color: #00adef;
}

.site-breadcrumbs strong {
    color: #1f2933;
    font-weight: 400;
}

.product-subcategory-hero {
    padding: 36px 0 72px;
    background: #f5f7fa;
}

.product-subcategory-hero__breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding-bottom: 36px;
    color: #6b7684;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 400;
    line-height: 16.5px;
    letter-spacing: 1.54px;
    text-transform: uppercase;
}

.product-subcategory-hero__breadcrumbs a {
    transition: color 0.3s ease;
}

.product-subcategory-hero__breadcrumbs a:hover {
    color: #00adef;
}

.product-subcategory-hero__breadcrumbs strong {
    color: #1f2933;
    font-weight: 400;
}

.product-subcategory-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 720px) minmax(0, 760px);
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

.product-subcategory-hero__label {
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-subcategory-hero__label span {
    width: 32px;
    height: 1px;
    background: #00adef;
}

.product-subcategory-hero__label strong {
    color: #6b7684;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 400;
    line-height: 16.5px;
    letter-spacing: 2.64px;
    text-transform: uppercase;
    white-space: nowrap;
}

.product-subcategory-hero__title {
    max-width: 760px;
    padding-top: 24px;
    color: #1f2933;
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 600;
    line-height: 74px;
    letter-spacing: -1.8px;
}

.product-subcategory-hero__title em {
    color: #8b95a1;
    font-style: italic;
}

.product-subcategory-hero__text {
    max-width: 610px;
    padding-top: 30px;
    color: #6b7684;
    font-size: 16px;
    font-weight: 400;
    line-height: 27.2px;
}

.product-subcategory-hero__media {
    position: relative;
    overflow: hidden;
    padding: 20px;
    background: #fff;
}

.product-subcategory-hero__media img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 0.68;
    object-fit: cover;
}

.product-subcategory-hero__corner {
    position: absolute;
    width: 42px;
    height: 42px;
    border: 1px solid #00adef;
    pointer-events: none;
}

.product-subcategory-hero__corner_tl {
    top: 0;
    left: 0;
    border-width: 1px 0 0 1px;
}

.product-subcategory-hero__corner_tr {
    top: 0;
    right: 0;
    border-width: 1px 1px 0 0;
}

.product-subcategory-hero__corner_bl {
    bottom: 0;
    left: 0;
    border-width: 0 0 1px 1px;
}

.product-subcategory-hero__corner_br {
    right: 0;
    bottom: 0;
    border-width: 0 1px 1px 0;
}

.product-subcategory-content {
    padding: 76px 0 92px;
    background: #fff;
}

.product-subcategory-content__inner {
    width: 100%;
}

.product-subcategory-content__title {
    color: #1f2933;
    font-family: var(--font-display);
    font-size: 46px;
    font-weight: 600;
    line-height: 52px;
    letter-spacing: -0.9px;
}

.product-subcategory-content__text {
    padding-top: 28px;
    color: #6b7684;
    font-size: 17px;
    font-weight: 400;
    line-height: 28.9px;
}

.product-subcategory-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 64px;
}

.product-subcategory-gallery__item {
    position: relative;
    display: block;
    overflow: hidden;
    height: 230px;
    background: #0e0e10;
}

.product-subcategory-gallery__item::after {
    content: "";
    position: absolute;
    top: 18px;
    right: 18px;
    bottom: 18px;
    left: 18px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-subcategory-gallery__item img {
    display: block;
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.product-subcategory-gallery__item:hover img {
    opacity: 0.82;
    transform: scale(1.06);
}

.product-subcategory-gallery__item:hover::after {
    opacity: 1;
}

body.is-gallery-open {
    overflow: hidden;
}

.jsuser-d-gallery-lightbox {
    position: fixed;
    z-index: 1250;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    align-items: center;
    justify-content: center;
    padding: 48px;
    background: rgba(14, 14, 16, 0.92);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.jsuser-d-gallery-lightbox.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.jsuser-d-gallery-lightbox__image {
    display: block;
    max-width: min(1120px, 86vw);
    max-height: 82dvh;
    object-fit: contain;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.jsuser-d-gallery-lightbox__close,
.jsuser-d-gallery-lightbox__prev,
.jsuser-d-gallery-lightbox__next {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    cursor: pointer;
    font-family: var(--font-mono);
    transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.jsuser-d-gallery-lightbox__close:hover,
.jsuser-d-gallery-lightbox__prev:hover,
.jsuser-d-gallery-lightbox__next:hover {
    border-color: #00adef;
    background: #00adef;
    color: #0e0e10;
}

.jsuser-d-gallery-lightbox__close {
    top: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
}

.jsuser-d-gallery-lightbox__close::before,
.jsuser-d-gallery-lightbox__close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 1px;
    background: currentColor;
}

.jsuser-d-gallery-lightbox__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.jsuser-d-gallery-lightbox__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.jsuser-d-gallery-lightbox__prev,
.jsuser-d-gallery-lightbox__next {
    top: 50%;
    width: 54px;
    height: 54px;
    font-size: 24px;
    line-height: 52px;
    transform: translateY(-50%);
}

.jsuser-d-gallery-lightbox__prev {
    left: 28px;
}

.jsuser-d-gallery-lightbox__next {
    right: 28px;
}

.text-page {
    padding: 36px 0 80px;
    background: #fff;
}

.text-page__breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding-bottom: 36px;
    color: #6b7684;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 400;
    line-height: 16.5px;
    letter-spacing: 1.54px;
    text-transform: uppercase;
}

.text-page__breadcrumbs a {
    transition: color 0.3s ease;
}

.text-page__breadcrumbs a:hover {
    color: #00adef;
}

.text-page__breadcrumbs strong {
    color: #1f2933;
    font-weight: 400;
}

.text-page__inner {
    width: 100%;
}

.text-page__title {
    color: #1f2933;
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 600;
    line-height: 74px;
    letter-spacing: -1.8px;
}

.text-page__content {
    padding-top: 48px;
    color: #6b7684;
    font-size: 18px;
    font-weight: 400;
    line-height: 30.6px;
}

.text-page__content div + div {
    padding-top: 24px;
}

.clients-hero {
    padding: 92px 0 64px;
    background: #f5f7fa;
}

.clients-hero__inner {
    max-width: 1120px;
}

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

.clients-hero__label span {
    width: 32px;
    height: 1px;
    background: #00adef;
}

.clients-hero__label strong {
    color: #6b7684;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 400;
    line-height: 16.5px;
    letter-spacing: 2.64px;
    text-transform: uppercase;
    white-space: nowrap;
}

.clients-hero__title {
    max-width: 1080px;
    padding-top: 24px;
    color: #1f2933;
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 600;
    line-height: 74px;
    letter-spacing: -1.8px;
}

.clients-hero__title em {
    color: #8b95a1;
    font-style: italic;
}

.clients-hero__text {
    max-width: 650px;
    padding-top: 30px;
    color: #6b7684;
    font-size: 16px;
    font-weight: 400;
    line-height: 27.2px;
}

.clients-page {
    padding: 76px 0 92px;
    background: #fff;
    color: #1f2933;
}

.clients-page__top {
    display: grid;
    grid-template-columns: minmax(0, 760px) minmax(0, 520px);
    align-items: end;
    justify-content: space-between;
    gap: 70px;
}

.clients-page__intro {
    color: #1f2933;
    font-family: var(--font-display);
    font-size: 46px;
    font-weight: 600;
    line-height: 52px;
    letter-spacing: -0.9px;
}

.clients-page__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.clients-page__stat {
    padding: 28px 30px;
    border: 1px solid rgba(31, 41, 51, 0.1);
    background: #f5f7fa;
}

.clients-page__stat strong {
    display: flex;
    align-items: flex-start;
    color: #00adef;
    font-family: var(--font-display);
    font-size: 58px;
    font-weight: 600;
    line-height: 58px;
    letter-spacing: -1px;
}

.clients-page__plus {
    padding-top: 5px;
    padding-right: 4px;
    font-size: 34px;
    line-height: 34px;
}

.clients-page__stat > span {
    display: block;
    padding-top: 10px;
    color: #6b7684;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}

.clients-page__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 76px;
}

.clients-page__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 168px;
    padding: 34px;
    border: 1px solid rgba(31, 41, 51, 0.1);
    background: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.clients-page__logo:hover {
    border-color: rgba(0, 173, 239, 0.38);
    box-shadow: 0 18px 46px rgba(31, 41, 51, 0.07);
    transform: translateY(-3px);
}

.clients-page__logo img {
    display: block;
    max-width: 180px;
    max-height: 82px;
    object-fit: contain;
}

.clients-page__logo span {
    max-width: 190px;
    overflow: hidden;
    color: #9aa4ad;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    line-height: 28px;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.clients-page__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    margin-top: 66px;
    padding-top: 42px;
    border-top: 1px solid rgba(31, 41, 51, 0.1);
}

.clients-page__note {
    max-width: 640px;
    color: #6b7684;
    font-size: 16px;
    font-weight: 400;
    line-height: 27.2px;
}

.clients-page__button {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-width: 194px;
    height: 50px;
    padding: 0 28px;
    border: 0;
    border-radius: 50px;
    background: #00adef;
    color: #fff;
    cursor: pointer;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 1.44px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.clients-page__button:hover {
    background: #009bd6;
    box-shadow: 0 16px 38px rgba(0, 173, 239, 0.24);
    transform: translateY(-2px);
}

.contacts-hero {
    padding: 92px 0 64px;
    background: #f5f7fa;
}

.contacts-hero__inner {
    max-width: 1120px;
}

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

.contacts-hero__label span {
    width: 32px;
    height: 1px;
    background: #00adef;
}

.contacts-hero__label strong {
    color: #6b7684;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 400;
    line-height: 16.5px;
    letter-spacing: 2.64px;
    text-transform: uppercase;
    white-space: nowrap;
}

.contacts-hero__title {
    max-width: 1080px;
    padding-top: 24px;
    color: #1f2933;
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 600;
    line-height: 74px;
    letter-spacing: -1.8px;
}

.contacts-hero__title em {
    color: #8b95a1;
    font-style: italic;
}

.contacts-hero__text {
    max-width: 620px;
    padding-top: 30px;
    color: #6b7684;
    font-size: 16px;
    font-weight: 400;
    line-height: 27.2px;
}

.contacts-page {
    padding: 72px 0 92px;
    background: #fff;
}

.contacts-page__grid {
    display: grid;
    grid-template-columns: minmax(0, 520px) minmax(0, 760px);
    justify-content: space-between;
    gap: 70px;
}

.contacts-page__info {
    display: grid;
    gap: 16px;
}

.contacts-page__card {
    padding: 34px 36px;
    border: 1px solid rgba(31, 41, 51, 0.1);
    background: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.contacts-page__card:hover {
    border-color: rgba(0, 173, 239, 0.35);
    box-shadow: 0 18px 46px rgba(31, 41, 51, 0.07);
    transform: translateY(-3px);
}

.contacts-page__card-label {
    color: #00adef;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 400;
    line-height: 15px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

.contacts-page__card-value {
    display: block;
    padding-top: 16px;
    color: #1f2933;
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 500;
    line-height: 34px;
    letter-spacing: -0.4px;
}

a.contacts-page__card-value {
    transition: color 0.3s ease;
}

a.contacts-page__card-value:hover {
    color: #00adef;
}

.contacts-page__quick {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 8px;
}

.contacts-page__quick a:last-child:nth-child(odd) {
    grid-column: 1 / -1;
}

.contacts-page__quick a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 18px;
    border: 1px solid rgba(31, 41, 51, 0.12);
    border-radius: 50px;
    color: #1f2933;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 400;
    line-height: 15px;
    letter-spacing: 1.7px;
    text-align: center;
    text-transform: uppercase;
    transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.contacts-page__quick a:hover {
    border-color: #00adef;
    background: #00adef;
    color: #fff;
}

.contacts-page__form-box {
    padding: 56px;
    background: #0e0e10;
    color: #fff;
}

.contacts-page__form-title {
    color: #fff;
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 600;
    line-height: 48px;
    letter-spacing: -0.8px;
}

.contacts-page__form {
    margin-top: 34px;
}

.contacts-page__fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.contacts-page__field {
    display: block;
}

.contacts-page__field:last-child {
    grid-column: 1 / -1;
}

.contacts-page__field span {
    display: block;
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 400;
    line-height: 15px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.contacts-page__field input,
.contacts-page__field textarea {
    width: 100%;
    margin-top: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.contacts-page__field input {
    height: 56px;
    padding: 0 18px;
}

.contacts-page__field textarea {
    min-height: 142px;
    padding: 17px 18px;
    resize: vertical;
}

.contacts-page__field input:focus,
.contacts-page__field textarea:focus {
    border-color: #00adef;
    background: rgba(255, 255, 255, 0.07);
}

.contacts-page__agree {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    line-height: 20px;
}

.contacts-page__agree input {
    margin-top: 3px;
}

.contacts-page__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    height: 50px;
    margin-top: 32px;
    padding: 0 28px;
    border: 0;
    border-radius: 50px;
    background: #00adef;
    color: #0e0e10;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 1.44px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.contacts-page__submit:hover {
    background: #28c5ff;
    box-shadow: 0 16px 38px rgba(0, 173, 239, 0.24);
    transform: translateY(-2px);
}

.contacts-page__location {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 72px;
}

.contacts-page__location_single {
    grid-template-columns: 1fr;
}

.contacts-page__map,
.contacts-page__location-photo {
    height: 460px;
    overflow: hidden;
    border: 1px solid rgba(31, 41, 51, 0.1);
    background: #f5f7fa;
}

.contacts-page__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1);
}

.contacts-page__location-photo-item {
    display: block;
    width: 100%;
    height: 100%;
    cursor: zoom-in;
}

.contacts-page__location-photo-item_hidden {
    display: none;
}

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

.jsuser-d-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.jsuser-d-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.site-header {
    position: relative;
    z-index: 1000;
    height: 105px;
}

.site-header__bar {
    width: 100%;
    height: 105px;
    background: #fff;
}

.site-header.is-fixed .site-header__bar {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    box-shadow: 0 8px 30px rgba(31, 41, 51, 0.08);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 105px;
}

.site-header__logo,
.site-header__mobile-logo {
    display: block;
    flex: 0 0 auto;
}

.site-header__logo {
    width: clamp(115px, 9.85vw, 142.84px);
    height: clamp(32px, 2.76vw, 40px);
}

.site-header__logo img,
.site-header__mobile-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-header__nav {
    display: flex;
    align-items: center;
    gap: clamp(10px, 1.38vw, 20px);
    font-family: var(--font-mono);
    font-size: clamp(11px, 1.1vw, 16px);
    font-weight: 400;
    line-height: 1.03;
    letter-spacing: clamp(0.8px, 0.13vw, 1.98px);
    text-transform: uppercase;
}

.site-header__nav a {
    color: rgba(0, 0, 0, 0.7);
    white-space: nowrap;
    transition: color 0.2s ease;
}

.site-header__nav a:hover {
    color: #00adef;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: clamp(6px, 0.69vw, 10px);
    flex: 0 0 auto;
}

.site-header__language-wrap {
    position: relative;
    flex: 0 0 auto;
}

.site-header__language {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: clamp(54px, 4.07vw, 59px);
    height: 40px;
    padding: 0 5px 0 9px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 40px;
    color: #1f2933;
    font-family: 'Century Gothic', Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 0.6px;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.site-header__language:hover {
    background: rgba(0, 173, 239, 0.08);
    border-color: #00adef;
    color: #00adef;
}

.site-header__language img {
    display: block;
    width: 13px;
    height: 13px;
    transition: transform 0.2s ease;
}

.site-header__language-wrap.is-open .site-header__language img {
    transform: rotate(180deg);
}

.site-header__language-menu {
    position: absolute;
    z-index: 10;
    top: calc(100% + 8px);
    left: 0;
    visibility: hidden;
    min-width: 59px;
    padding: 6px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(31, 41, 51, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-5px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.site-header__language-wrap.is-open .site-header__language-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.site-header__language-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    border-radius: 12px;
    color: #1f2933;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    transition: color 0.2s ease, background 0.2s ease;
}

.site-header__language-menu a:hover {
    background: rgba(0, 173, 239, 0.1);
    color: #00adef;
}

.site-header__request {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: clamp(145px, 10.7vw, 155px);
    height: 41px;
    padding: 0 clamp(10px, 0.9vw, 13px);
    border: 0;
    border-radius: 41px;
    background: #00adef;
    background-clip: padding-box;
    color: #fff;
    cursor: pointer;
    font-family: var(--font-mono);
    font-size: clamp(9px, 0.76vw, 11px);
    font-weight: 500;
    line-height: 16.5px;
    letter-spacing: clamp(0.8px, 0.11vw, 1.54px);
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    box-shadow: 0 0 0 rgba(0, 173, 239, 0);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header__request:hover {
    background: #009bd6;
    box-shadow: 0 8px 24px rgba(0, 173, 239, 0.28);
}

.site-header__burger,
.site-header__mobile {
    display: none;
}

.site-footer {
    padding: 72px 0 64px;
    background: #0e0e10;
    color: #fff;
}

.site-footer#footer {
    height: auto;
    margin-top: 0;
}

#page {
    padding-bottom: 0;
}

.site-footer__main {
    display: grid;
    grid-template-columns: minmax(220px, 328px) minmax(150px, 260px) minmax(130px, 180px) minmax(150px, 210px) minmax(220px, 1fr);
    gap: clamp(16px, 1.8vw, 28px);
    min-height: 340px;
    padding-bottom: 96px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__brand {
    max-width: 388px;
}

.site-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.site-footer__logo span {
    color: #fff;
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    line-height: 60px;
    letter-spacing: -0.8px;
}

.site-footer__logo strong {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00adef;
}

.site-footer__text {
    max-width: 360px;
    padding-top: 24px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 400;
    line-height: 23.8px;
}

.site-footer__title {
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 400;
    line-height: 15px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    white-space: nowrap;
}

.site-footer__links,
.site-footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 24px;
}

.site-footer__links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.site-footer__links a:hover {
    color: #00adef;
    transform: translateX(4px);
}

.site-footer__contacts {
    min-width: 220px;
}

.site-footer__contact {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0.08px;
    transition: color 0.3s ease;
}

.site-footer__contact:first-child {
    align-items: flex-start;
}

.site-footer__contact img,
.site-footer__contact-icon {
    display: block;
    flex: 0 0 auto;
    width: 15px;
    height: 15px;
    margin-top: 3px;
}

.site-footer__contact-icon {
    fill: #00CEFC;
}

a.site-footer__contact:hover {
    color: #00adef;
}

.site-footer__bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding-top: 32px;
}

.site-footer__copy,
.site-footer__studio {
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 400;
    line-height: 15px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.site-footer__studio {
    transition: color 0.3s ease;
}

.site-footer__studio a,
.site-footer__studio span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: inherit;
}

.site-footer__studio img {
    display: block;
    width: 60px;
    height: auto;
}

.site-footer__studio:hover {
    color: #00adef;
}

.quick-contacts {
    position: fixed;
    z-index: 1000;
    right: 24px;
    bottom: 104px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quick-contacts__item,
.scroll-up {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(31, 41, 51, 0.12);
    border-radius: 50%;
    background: #fff;
    color: #1f2933;
    box-shadow: 0 18px 46px rgba(31, 41, 51, 0.11);
    transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease, transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.quick-contacts__icon,
.scroll-up__icon {
    display: block;
    width: 22px;
    height: 22px;
}

.quick-contacts__icon {
    fill: currentColor;
}

.scroll-up__icon {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.quick-contacts__item:hover,
.scroll-up:hover {
    border-color: #00adef;
    background: #00adef;
    color: #fff;
    transform: translateY(-2px);
}

.scroll-up {
    position: fixed;
    z-index: 1000;
    right: 24px;
    bottom: 34px;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
}

.scroll-up.is-visible {
    opacity: 1;
    visibility: visible;
}

.cookie-consent {
    position: fixed;
    z-index: 1100;
    left: 24px;
    right: 104px;
    bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    max-width: 860px;
    padding: 18px 20px;
    border: 1px solid rgba(31, 41, 51, 0.12);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 22px 60px rgba(31, 41, 51, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.cookie-consent.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cookie-consent__text {
    color: #4b5563;
    font-size: 14px;
    line-height: 22px;
}

.cookie-consent__actions {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 12px;
}

.cookie-consent__link {
    color: #1f2933;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.cookie-consent__link:hover {
    color: #00adef;
}

.cookie-consent__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid #00adef;
    border-radius: 4px;
    background: #00adef;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.cookie-consent__button:hover {
    border-color: #1f2933;
    background: #1f2933;
}

body.is-form-open {
    overflow: hidden;
}

.request-modal {
    position: fixed;
    z-index: 1200;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    visibility: hidden;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100dvh;
    padding: 20px;
    overflow-y: auto;
    background: rgba(31, 41, 51, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.request-modal.is-open {
    display: flex;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.request-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 620px;
    max-height: calc(100dvh - 40px);
    padding: 52px 48px 48px;
    overflow-y: auto;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(31, 41, 51, 0.2);
    transform: translateY(24px);
    transition: transform 0.25s ease;
}

.request-modal.is-open .request-modal__dialog {
    transform: translateY(0);
}

.request-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #f1f4f6;
    cursor: pointer;
    transition: background 0.25s ease;
}

.request-modal__close:hover {
    background: rgba(0, 173, 239, 0.12);
}

.request-modal__close::before,
.request-modal__close::after {
    position: absolute;
    top: 19px;
    left: 11px;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: #1f2933;
    content: '';
}

.request-modal__close::before {
    transform: rotate(45deg);
}

.request-modal__close::after {
    transform: rotate(-45deg);
}

.request-modal__title {
    color: #1f2933;
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 600;
    line-height: 1.1;
}

.request-modal__form {
    margin-top: 34px;
}

.request-modal__fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.request-modal__field {
    display: block;
}

.request-modal__field span {
    display: block;
    margin-bottom: 9px;
    color: rgba(31, 41, 51, 0.65);
    font-family: var(--font-mono);
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.request-modal__field input {
    width: 100%;
    height: 52px;
    padding: 0 18px;
    border: 1px solid rgba(31, 41, 51, 0.14);
    border-radius: 12px;
    background: #fff;
    color: #1f2933;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.request-modal__field input:focus {
    border-color: #00adef;
    box-shadow: 0 0 0 3px rgba(0, 173, 239, 0.1);
}

.request-modal__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 52px;
    margin-top: 24px;
    padding: 0 24px;
    border: 0;
    border-radius: 52px;
    background: #00adef;
    color: #fff;
    cursor: pointer;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    line-height: 17px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    box-shadow: 0 0 0 rgba(0, 173, 239, 0);
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.request-modal__submit:hover {
    background: #009bd6;
    box-shadow: 0 8px 24px rgba(0, 173, 239, 0.28);
    transform: translateY(-1px);
}
