:root {
    --bg: #f5f5f5;
    --ink: #4a5866;
    --ink-dark: #1d2f3f;
    --muted: #949da6;
    --line: rgba(148, 157, 166, 0.3);
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: Lato, sans-serif;
    scroll-behavior: smooth;
}
body {
    overflow-x: hidden;
}

body.is-locked {
    overflow: hidden;
}

.header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}
.header__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #4a5866;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.header__burger.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.header__burger.is-open span:nth-child(2) {
    opacity: 0;
}
.header__burger.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
.header__mobile-menu {
    display: none;
}

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

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

.layout-container {
    width: min(1440px, calc(100% - 48px));
    margin: 0 auto;
}

.button {
    border-radius: 1000px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.28s ease, background-color 0.28s ease;
}

.button:hover {
    transform: translateY(-2px);
}
.header__demo-button svg {
    width: 18px;
    height: 17px;
}
.button--dark {
    background: var(--ink);
    color: #fff;
    padding: 16px 46px;
    min-width: 234px;

    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0.01em;
}

.button--primary {
    width: 100%;
    background: #314251;
    color: #7facd9;
    border: 0;
    padding: 20px 34px;
    margin-top: 24px;
    cursor: pointer;
}

.button--dark img,
.button--primary img {
    width: 24px;
}

.header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 30;
    background: transparent;
    border-bottom: none;
}

.header::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.75);
    border-bottom: 1px solid var(--line);
    pointer-events: none;
}

.header__inner {
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.header__navigation {
    display: flex;
    position: static;
    align-items: center;
    gap: 38px;
    font-size: 14px;
}

.header__navigation > .header__item {
    position: static;
}

.header__navigation-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 0;
    background: transparent;
    padding: 0;
    font-family: inherit;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0.01em;
    color: #4a5866;
    cursor: pointer;
    transition: color 0.25s ease;
}

.header__navigation-link:hover,
.header__item.is-open > .header__navigation-link {
    color: #1d2f3f;
}
.header__navigation-link img {
    width: 11px;
    height: 15px;
    transition: transform 0.25s ease;
}

.header__mobile-link {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 16px 0;
    color: inherit;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    background: transparent;
    border: 0;
}

.header__item.is-open > .header__navigation-link img {
    transform: rotate(180deg);
}

.header__item {
    position: relative;
}

.header__dropdown {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    z-index: 40;
    transform: translateX(-50%) translateY(8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 18px 48px rgba(29, 47, 63, 0.12);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}
.header__dropdown {
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.header__navigation > .header__item > .header__dropdown {
    position: fixed;
    top: 90px;
    left: 50%;
    width: 830px;
    max-width: calc(100vw - 48px);
    transform: translateX(-50%) translateY(8px);
}

.header__item.is-open > .header__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.header.is-instant .header__dropdown {
    transition: none !important;
}
.header__dropdown[hidden] {
    display: block;
}

.header__dropdown--solutions {
    display: grid;
    grid-template-columns: repeat(3, 254px);
    gap: 16px;
    padding: 20px;
}
.header__dropdown--tech {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: min(820px, 90vw);
    padding: 20px;
}
.header__card.header__card--half {
    width: 100%; !important;
    height: 232px;
}
.header__dropdown--resources {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 360px);
    gap: 40px;
    width: min(920px, 92vw);
    padding: 28px 28px 28px 36px;
    align-items: stretch;
}
.header__resources-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-content: start;
    padding-top: 8px;
}
.header__resources-title {
    margin: 0 0 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #949da6;
}
.header__resources-col {
    display: grid;
    gap: 14px;
    align-content: start;
}
.header__resources-col a {
    color: #1d2f3f;
    font-size: 16px;
    line-height: 130%;
    transition: color 0.25s ease;
}
.header__resources-col a:hover {
    color: #4a5866;
}
.header__resources-feature {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    min-height: 220px;
}
.header__resources-feature-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.header__resources-feature-body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 220px;
    padding: 22px;
    color: #1d2f3f;
}
.header__resources-feature-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.header__resources-feature-label img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}
.header__resources-feature-text {
    margin: 0;
    max-width: 18em;
    font-size: 22px;
    font-weight: 700;
    line-height: 120%;
}


.header__card {
    position: relative;
    display: block;
    width: 254px;
    height: 232px;
    overflow: hidden;
    border-radius: 16px;
}

.header__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.header__card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(29, 47, 63, 0.4);
    transition: background-color 0.35s ease;
    pointer-events: none;
}
.header__card:hover::after {
    background: rgba(29, 47, 63, 0);
}



.header__card:hover img {
    transform: scale(1.04);
}
.header__card span {
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 1;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.header__dropdown--list {
    min-width: 240px;
    padding: 12px 0;
    display: grid;
}
.header__dropdown--list a {
    padding: 14px 24px;
    color: #4a5866;
    transition: color 0.25s ease, background-color 0.25s ease;
}
.header__dropdown--list a:hover {
    color: #1d2f3f;
    background: #f5f5f5;
}
.header__dropdown--company {
    display: grid;
    justify-content: space-between;
    grid-template-columns: 240px 280px;
    gap: 20px;
    padding: 20px;
    left: 0;
}

.header__company-links {
    display: grid;
    align-content: start;
    width: 300px;
}
.header__company-links > a,
.header__company-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 0;
    border: 0;
    border-bottom: 1px solid rgba(148, 157, 166, 0.3);
    background: transparent;
    font: inherit;
    font-size: 16px;
    color: #4a5866;
    text-align: left;
    cursor: pointer;
    transition: color 0.25s ease;
}
.header__company-links > a:hover,
.header__company-toggle:hover,
.header__company-toggle.is-open {
    color: #1d2f3f;
}
.header__company-sub {
    display: none;
    padding: 0 0 12px 12px;
}
.header__company-toggle.is-open + .header__company-sub {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}
.header__company-sub a {
    color: #4a5866;
    font-size: 15px;
    transition: color 0.25s ease;
}
.header__company-sub a:hover {
    color: #1d2f3f;
}
.header__company-media {
    display: block;
    overflow: hidden;
    border-radius: 16px;
    min-height: 240px;
}
.header__company-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.header__item--lang {
    position: relative;
}
.header__dropdown--lang {
    right: 0;
    left: auto;
    min-width: 160px;
    padding: 10px 0;
    transform: translateY(8px);
    display: grid;
}
.header__item.is-open > .header__dropdown--lang {
    transform: translateX(0) translateY(0);
}

.header__dropdown::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
}

.header__dropdown--lang button,
.header__dropdown--lang a {
    display: block;
    border: 0;
    background: transparent;
    padding: 10px 20px;
    text-align: left;
    font: inherit;
    font-size: 15px;
    color: #4a5866;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.25s ease, background-color 0.25s ease;
}
.header__dropdown--lang button:hover,
.header__dropdown--lang button.is-active,
.header__dropdown--lang a:hover,
.header__dropdown--lang a.is-active {
    color: #1d2f3f;
    font-weight: 700;
}


.header__actions {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header__language-switcher span {
    display: flex;
    align-items: center;
    gap: 2px;
}
.header__language-switcher {
    border: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 0;

    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0.01em;
    color: #707377;
}

.header__language-switcher img:first-child {
    width: 20px;
}

.header__language-switcher img:last-child {
    width: 12px;
}

.hero {
    padding-top: 160px;
}

.hero__content {
    text-align: center;
}

.hero__media {
    position: relative;
    margin-top: 44px;
    width: 100%;
    height: calc(100vh - 120px);
    overflow: hidden;
    background: #2a2f33;
}

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

.hero__cta-wrap {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    padding-bottom: clamp(32px, 14%, 120px);
    pointer-events: none;
}

.hero__cta-inner {
    display: flex;
    justify-content: flex-end;
}

.hero__cta {
    pointer-events: auto;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 24px;
    background: rgba(97, 109, 121, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0.01em;
    transition: transform 0.28s ease, background-color 0.28s ease;
}

.hero__cta:hover {
    transform: scale(1.04);
    background: rgba(97, 109, 121, 0.55);
}

.hero__cta-label {
    max-width: 9em;
}

.hero__cta-icon {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    margin-top: -1.2em;
}

@media (max-width: 1200px) {
    .hero__media {
        height: 660px;
    }

    .hero__cta-wrap {
        padding-bottom: 48px;
    }

    .hero__cta {
        width: 160px;
        height: 160px;
        font-size: 16px;
    }
}

.hero__title,
.trusted__title,
.inside__title,
.why__title,
.skin-code__title,
.platform__title,
.awards__title,
.news__title,
.cta__title,
.lead__title {
    margin: 0;
    font-weight: 600;
    font-size: 48px;
    line-height: 120%;
    letter-spacing: 0.01em;
    text-align: center;
    text-transform: uppercase;
    color: #4a5866;
}

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

.hero__title {
    font-size: clamp(46px, 7vw, 80px);
    line-height: 120%;
    font-weight: 600;
    text-transform: none;
}

.hero__topline {
    margin: 20px 0 12px;
    font-size: 18px;
    color: var(--ink-dark);
    letter-spacing: 0.01em;

    font-weight: 400;
    line-height: 120%;
    text-transform: uppercase;
}

.hero__subline {
    margin: 0;

    font-weight: 400;
    font-style: italic;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0.01em;
    color: #7b858f;
}

.trusted {
    padding: 56px 0 60px;
}
.inside,

.skin-code,
.platform,
.awards,
.news,
.cta,
.lead {
    padding: 60px 0;
}

.trusted__title-region {
    display: flex;
    justify-content: center;
    margin-top: 22px;
}

.trusted__title-region img {
    transform: translateY(-40px);
    height: auto;
}

.trusted__label {
    text-align: center;
    color: var(--muted);
    margin: 0 0 40px;
    font-weight: 600;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.trusted__title-oval {
    position: relative;
    display: inline-block;
    padding: 0;

    font-weight: 400;
    font-size: 80px;
    line-height: 120%;
    letter-spacing: 0.01em;
    text-align: center;
    text-transform: uppercase;
    color: #4A5866;
    margin: 0 55px 0 51px;
}

.trusted__title-oval::before {
    content: "";
    position: absolute;
    z-index: 0;

    left: 50%;
    top: 50%;

    width: calc(100% + 28px);
    height: calc(100% + 12px);

    border: 1px solid #4A5866;
    border-radius: 50%;

    transform: translate(-50%, -50%) rotate(-8deg);

    pointer-events: none;
}

.trusted__title-oval-text {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 0;
    line-height: 1;
    background-color: #E9E9EA;
    color: #4A5866;
    font-family: "Cormorant Garamond", serif;
    transform: translateY(-10px);
}

.trusted__description {
    color: var(--muted);
    text-align: center;
    max-width: 560px;
    margin: 0 auto 40px;

    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: 0.02em;
}

.trusted__metrics {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 52px;
}

.trusted__metric-card {
    display: flex;
    align-items: center;
    gap: 30px;
}

.trusted__metric-icon {
    width: 128px;
    height: 128px;
    border: 1.6px solid var(--ink);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.trusted__metric-icon img {
    width: 66px;
}

.trusted__metric-value {
    margin: 0 0 12px;
    font-weight: 600;
    font-size: 60px;
    line-height: 120%;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #4a5866;
    display: flex;
    gap: 14px;
}

.trusted__metric-title {
    margin: 0 0 10px;

    font-weight: 600;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #616d79;
}

.trusted__metric-description {
    margin: 0;
    color: var(--muted);

    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0.02em;
}

.trusted__divider {
    margin-top: 60px;
    text-align: center;
    color: var(--muted);
    text-transform: uppercase;
    position: relative;

    font-weight: 600;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0.02em;
}

.trusted__divider::before,
.trusted__divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: calc(50% - 210px);
    height: 1px;
    background: #d9d9d9;
}

.trusted__divider::before {
    left: 0;
}

.trusted__divider::after {
    right: 0;
}

.trusted__marquee {
    overflow: hidden;
    margin-top: 40px;
    opacity: 0.65;
    display: flex;
}

.trusted__marquee-track {
    display: flex;
    align-items: center;
    gap: 22px;
    min-width: 100%;
    animation: trusted-marquee 24s linear infinite;
}

.trusted__marquee-track img {
    height: 75px;
    object-fit: contain;
}

@keyframes trusted-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}











.inside__heading {
    text-align: center;
}

.inside__subtitle span {
    display: flex;
    height: 12px;
}

.inside__subtitle,
.inside__description {
    color: var(--muted);
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: 0.02em;
    text-align: center;
    margin: 20px 0 0;
}

.inside__tabs {
    position: relative;
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 60px 0;
}

.inside__tabs-bubble {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: var(--bubble-width, 0px);
    height: var(--bubble-height, 66px);
    border-radius: 1000px;
    background: #e2e3e5;
    opacity: 0;
    pointer-events: none;
    transform-origin: center center;
    transform: translate3d(var(--bubble-x, 0px), var(--bubble-y, 0px), 0) scale(var(--bubble-sx, 1), var(--bubble-sy, 1));
    transition: transform 0.55s cubic-bezier(0.34, 1.4, 0.64, 1),
    width 0.55s cubic-bezier(0.34, 1.4, 0.64, 1),
    height 0.55s cubic-bezier(0.34, 1.4, 0.64, 1),
    opacity 0.25s ease;
}

.inside__tabs.is-ready .inside__tabs-bubble {
    opacity: 1;
}
.inside__tabs-bubble.is-static {
    transition: none;
}
.inside__tabs-bubble.is-moving {
    --bubble-sx: 1.05;
    --bubble-sy: 0.9;
}

.inside__tab-button {
    width: min(360px, 32vw);
    border-radius: 1000px;
    height: 66px;
    border: 1px solid transparent;
    background: #fff;
    text-transform: uppercase;
    font-family: Lato, sans-serif;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease;
    color: #4a5866;
}

.inside__tab-button:hover {
    background: #ebecee;
}

.inside__tab-button > span {
    position: relative;
    z-index: 2;
}
.inside__tab-button:hover:not(.is-active) {
    background: #ebecee;
}
.inside__tab-button.is-active {
    color: var(--ink-dark);
}

.inside__layout {
    display: grid;
    grid-template-columns: 1fr 235px;
    gap: 40px;
    align-items: start;
}

.inside__shell {
    --inside-scale: 1;
    position: relative;
    aspect-ratio: 1240 / 690;
    border-radius: 24px;
    overflow: hidden;
    contain: layout;
    backface-visibility: hidden;
    touch-action: pan-y;
}

.inside__backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    overflow: hidden;
    background-image: radial-gradient(circle at 50% 123%, #ededed 28%, #dddddd 75%, #d1d1d1 87.5%, #c7c7c7 100%);
}

.inside__backdrop::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100vw;
    height: 100%;
    min-width: 100%;
    transform: translate3d(-50%, -50%, 0) scale(calc(1 / var(--inside-scale)));
    transform-origin: center center;
    background-image: url("../images/inside/homehero-bg.webp");
    background-size: auto 100%;
    background-position: center center;
    background-repeat: no-repeat;
    will-change: transform;
}

.inside__content {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 1240px;
    height: 690px;
    transform: translate3d(-50%, -50%, 0) scale(var(--inside-scale));
    transform-origin: center center;
}

.inside__group {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.inside__group.is-active {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}

.inside__slide {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    transition: opacity 0.7s cubic-bezier(0.33, 1, 0.68, 1);
    will-change: opacity;
}

.inside__slide.is-active {
    z-index: 1;
    opacity: 1;
}

.inside__slide-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.inside__pin {
    position: absolute;
    left: var(--pin-x);
    top: var(--pin-y);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 7px 13px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
    font-family: Poppins, Manrope, sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: normal;
    white-space: nowrap;
    color: rgba(0, 0, 0, 0.6);
    cursor: pointer;
    transform: translateZ(0);
    transition:
            background-color 0.45s cubic-bezier(0.33, 1, 0.68, 1),
            color 0.45s cubic-bezier(0.33, 1, 0.68, 1),
            border-color 0.45s cubic-bezier(0.33, 1, 0.68, 1),
            box-shadow 0.45s cubic-bezier(0.33, 1, 0.68, 1),
            transform 0.45s cubic-bezier(0.33, 1, 0.68, 1);
}

.inside__pin:hover,
.inside__pin.is-active {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.55);
    color: #000;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

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

.inside__panel {
    border-left: 4px solid rgba(148, 157, 166, 0.4);
    padding-left: 40px;
}

.inside__panel-body--tab {
    display: none;
}

.inside__panel-body--tab.is-active {
    display: block;
}

.inside__panel-number {
    margin: 0 0 10px;
    font-size: 60px;
    line-height: 120%;
    font-family: "Cormorant Garamond", serif;
    color: var(--ink);
}

.inside__panel-title {
    margin: 0 0 32px;
    font-size: 22px;
    line-height: 130%;
    text-transform: uppercase;

    font-weight: 400;
    letter-spacing: 0.02em;
    color: #1d2f3f;
}
.inside__panel-line {
    border-radius: 1000px;
    width: 60px;
    height: 1px;
    background: #4a5866;
    margin-bottom: 32px;
}

.inside__feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
    margin-bottom: 32px;
}

.inside__feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
}

.inside__feature-list img {
    width: 18px;
}

.inside__feature-list li.is-extra {
    display: none;
}
.inside__panel-body.is-expanded .inside__feature-list li.is-extra {
    display: flex;
}

.inside__feature-more {
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    color: var(--muted);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}
.inside__panel-body.is-expanded .inside__feature-more {
    display: none;
}

.inside__controls {
    display: grid;
    grid-template-columns: 1fr 235px;
    gap: 40px;
    margin-top: 22px;
}

.inside__controls-bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

.inside__caption {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #616d79;
}

.inside__caption img {
    width: 6px;
}

.inside__slider-nav {
    display: flex;
    gap: 20px;
}

.inside__slider-button {
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 1000px;
    background: #e2e3e5;
    cursor: pointer;
    transition: 0.25s ease;
}

.inside__slider-button:hover {
    transform: translateY(-2px);
}

.inside__slider-button img {
    width: 42px;
    height: 42px;
}



.why {
    overflow: visible;
    padding-bottom: 60px;
}
.why__content {
    padding: 60px 0;
}

.why__layout {
    display: grid;
    grid-template-columns: 345px 1fr;
    gap: 52px;
    align-items: start;
    overflow: visible;
}

.why__title {
    font-size: clamp(32px, 5vw, 48px);
    text-transform: capitalize;
    margin-bottom: 40px;
}

.why__subtitle {
    text-transform: uppercase;
    color: #314251;
    margin: 0 0 20px;
}

.why__description {
    margin: 0;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: 0.01em;
    color: #1d2f3f;
    max-width: 285px;
}

.why__media {
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-right: calc(50% - 50vw);
    padding: 60px 0;
}

.why__media-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: why-hover-scroll 30s linear infinite;
    will-change: transform;
}

.why__media::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
            to right,
            var(--bg) 0%,
            color-mix(in srgb, var(--bg) 70%, transparent) 40%,
            transparent 100%
    );
}

.why__media:hover .why__media-track {
    animation-play-state: running;
}

.why__media-track img {
    width: 176px;
    height: 314px;
    border-radius: 1000px;
    object-fit: cover;
    flex: 0 0 auto;
    transition: transform 0.4s ease;
    transform-origin: center center;
}

.why__media-track img:hover {
    transform: scale(1.15);
    z-index: 1;
    position: relative;
}
@keyframes why-hover-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 20px));
    }
}


.quote__body {
    background: #ededed;
    border-radius: 20px;
    padding: 20px 40px;
    max-width: 760px;
    margin-bottom: 60px;
}

.quote__label {
    margin: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #bd8c51;
}

.quote__text--decorated {
    position: relative;
    padding: 0 24px;
}

.quote__text--decorated::before,
.quote__text--decorated::after {
    content: '';
    display: inline-block;

    width: 16px;
    height: 14px;

    background-color: #BD8C51;

    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;

    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;

    vertical-align: middle;
}

.quote__text--decorated::before {
    position: absolute;
    top: 0;
    left: 0;

    -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='16' height='14' viewBox='0 0 16 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.19422 8.97918C4.90311 8.97918 5.45446 9.19579 5.84828 9.62899C6.28149 10.0622 6.49809 10.6136 6.49809 11.2831C6.49809 12.8583 5.5923 13.646 3.78071 13.646C2.59924 13.646 1.67375 13.2128 1.00425 12.3464C0.33475 11.4406 0 10.1607 0 8.5066C0 6.9313 0.354441 5.47415 1.06332 4.13515C1.77221 2.75677 2.81584 1.39808 4.19422 0.0590763C4.23361 0.0196921 4.29268 0 4.37144 0C4.48959 0 4.58805 0.059074 4.66681 0.177222C4.74558 0.29537 4.74558 0.393826 4.66681 0.47259C2.73708 2.44171 1.77221 4.76527 1.77221 7.44327C1.77221 8.54598 1.96912 9.35332 2.36294 9.86529C2.71738 9.27455 3.32781 8.97918 4.19422 8.97918ZM12.878 8.97918C13.5869 8.97918 14.1383 9.19579 14.5321 9.62899C14.9653 10.0622 15.1819 10.6136 15.1819 11.2831C15.1819 12.8583 14.2761 13.646 12.4645 13.646C11.2831 13.646 10.3576 13.2128 9.68807 12.3464C9.01857 11.4406 8.68382 10.1607 8.68382 8.5066C8.68382 6.9313 9.03826 5.47415 9.74714 4.13515C10.456 2.75677 11.4997 1.39808 12.878 0.0590763C12.9174 0.0196921 12.9765 0 13.0553 0C13.1734 0 13.2719 0.059074 13.3506 0.177222C13.4294 0.29537 13.4294 0.393826 13.3506 0.47259C11.4209 2.44171 10.456 4.76527 10.456 7.44327C10.456 8.54598 10.6529 9.35332 11.0468 9.86529C11.4012 9.27455 12.0116 8.97918 12.878 8.97918Z'/%3E%3C/svg%3E");

    mask-image: url("data:image/svg+xml,%3Csvg width='16' height='14' viewBox='0 0 16 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.19422 8.97918C4.90311 8.97918 5.45446 9.19579 5.84828 9.62899C6.28149 10.0622 6.49809 10.6136 6.49809 11.2831C6.49809 12.8583 5.5923 13.646 3.78071 13.646C2.59924 13.646 1.67375 13.2128 1.00425 12.3464C0.33475 11.4406 0 10.1607 0 8.5066C0 6.9313 0.354441 5.47415 1.06332 4.13515C1.77221 2.75677 2.81584 1.39808 4.19422 0.0590763C4.23361 0.0196921 4.29268 0 4.37144 0C4.48959 0 4.58805 0.059074 4.66681 0.177222C4.74558 0.29537 4.74558 0.393826 4.66681 0.47259C2.73708 2.44171 1.77221 4.76527 1.77221 7.44327C1.77221 8.54598 1.96912 9.35332 2.36294 9.86529C2.71738 9.27455 3.32781 8.97918 4.19422 8.97918ZM12.878 8.97918C13.5869 8.97918 14.1383 9.19579 14.5321 9.62899C14.9653 10.0622 15.1819 10.6136 15.1819 11.2831C15.1819 12.8583 14.2761 13.646 12.4645 13.646C11.2831 13.646 10.3576 13.2128 9.68807 12.3464C9.01857 11.4406 8.68382 10.1607 8.68382 8.5066C8.68382 6.9313 9.03826 5.47415 9.74714 4.13515C10.456 2.75677 11.4997 1.39808 12.878 0.0590763C12.9174 0.0196921 12.9765 0 13.0553 0C13.1734 0 13.2719 0.059074 13.3506 0.177222C13.4294 0.29537 13.4294 0.393826 13.3506 0.47259C11.4209 2.44171 10.456 4.76527 10.456 7.44327C10.456 8.54598 10.6529 9.35332 11.0468 9.86529C11.4012 9.27455 12.0116 8.97918 12.878 8.97918Z'/%3E%3C/svg%3E");
}

.quote__text--decorated::after {
    margin-bottom: 10px;

    -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='16' height='14' viewBox='0 0 16 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.71738 0C3.89886 0 4.82434 0.452897 5.49384 1.35869C6.16334 2.22511 6.49809 3.48534 6.49809 5.1394C6.49809 6.71469 6.14365 8.19153 5.43477 9.56992C4.72589 10.9089 3.68225 12.2479 2.30387 13.5869C2.26449 13.6263 2.20541 13.646 2.12665 13.646C2.0085 13.646 1.91005 13.5869 1.83128 13.4688C1.75252 13.3506 1.75252 13.2522 1.83128 13.1734C3.76102 11.2043 4.72589 8.88073 4.72589 6.20273C4.72589 5.10002 4.52897 4.29268 4.13515 3.78071C3.78071 4.37144 3.17028 4.66681 2.30387 4.66681C1.59499 4.66681 1.02394 4.45021 0.590736 4.017C0.196912 3.5838 0 3.03244 0 2.36294C0 0.787647 0.905795 0 2.71738 0ZM11.4012 0C12.5827 0 13.5082 0.452897 14.1777 1.35869C14.8472 2.22511 15.1819 3.48534 15.1819 5.1394C15.1819 6.71469 14.8275 8.19153 14.1186 9.56992C13.4097 10.9089 12.3661 12.2479 10.9877 13.5869C10.9483 13.6263 10.8892 13.646 10.8105 13.646C10.6923 13.646 10.5939 13.5869 10.5151 13.4688C10.4363 13.3506 10.4363 13.2522 10.5151 13.1734C12.4448 11.2043 13.4097 8.88073 13.4097 6.20273C13.4097 5.10002 13.2128 4.29268 12.819 3.78071C12.4645 4.37144 11.8541 4.66681 10.9877 4.66681C10.2788 4.66681 9.70776 4.45021 9.27455 4.017C8.88073 3.5838 8.68382 3.03244 8.68382 2.36294C8.68382 0.787647 9.58961 0 11.4012 0Z'/%3E%3C/svg%3E");

    mask-image: url("data:image/svg+xml,%3Csvg width='16' height='14' viewBox='0 0 16 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.71738 0C3.89886 0 4.82434 0.452897 5.49384 1.35869C6.16334 2.22511 6.49809 3.48534 6.49809 5.1394C6.49809 6.71469 6.14365 8.19153 5.43477 9.56992C4.72589 10.9089 3.68225 12.2479 2.30387 13.5869C2.26449 13.6263 2.20541 13.646 2.12665 13.646C2.0085 13.646 1.91005 13.5869 1.83128 13.4688C1.75252 13.3506 1.75252 13.2522 1.83128 13.1734C3.76102 11.2043 4.72589 8.88073 4.72589 6.20273C4.72589 5.10002 4.52897 4.29268 4.13515 3.78071C3.78071 4.37144 3.17028 4.66681 2.30387 4.66681C1.59499 4.66681 1.02394 4.45021 0.590736 4.017C0.196912 3.5838 0 3.03244 0 2.36294C0 0.787647 0.905795 0 2.71738 0ZM11.4012 0C12.5827 0 13.5082 0.452897 14.1777 1.35869C14.8472 2.22511 15.1819 3.48534 15.1819 5.1394C15.1819 6.71469 14.8275 8.19153 14.1186 9.56992C13.4097 10.9089 12.3661 12.2479 10.9877 13.5869C10.9483 13.6263 10.8892 13.646 10.8105 13.646C10.6923 13.646 10.5939 13.5869 10.5151 13.4688C10.4363 13.3506 10.4363 13.2522 10.5151 13.1734C12.4448 11.2043 13.4097 8.88073 13.4097 6.20273C13.4097 5.10002 13.2128 4.29268 12.819 3.78071C12.4645 4.37144 11.8541 4.66681 10.9877 4.66681C10.2788 4.66681 9.70776 4.45021 9.27455 4.017C8.88073 3.5838 8.68382 3.03244 8.68382 2.36294C8.68382 0.787647 9.58961 0 11.4012 0Z'/%3E%3C/svg%3E");
}

.quote__text {
    color: var(--ink-dark);
    margin: 40px 56px;
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0.02em;
    max-width: 500px;
}

.quote__author-inner {
    margin: 0 80px;
}
.quote__author--line {
    width: 120px;
    height: 2px;
    background: #bd8c51;
    margin-bottom: 12px;
}

.quote__author {
    font-weight: 400;
    font-size: 22px;
    line-height: 120%;
    letter-spacing: 0.01em;
    color: #1d2f3f;
    margin: 0 0 6px;
}

.quote__author-role {
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 0.01em;
    color: #7b858f;
    margin: 0;
}



/* ── skin-code ── */

.skin-code__layout {
    display: grid;
    grid-template-columns: 352px 435px 282px;
    justify-content: space-between;
    align-items: start;
}

/* Left column */

.skin-code__title {
    margin: 0 0 20px;
    max-width: 352px;
}

.skin-code__intro {
    padding-top: 20px;
    border-top: 1px solid #1e3141;
    max-width: 352px;
}

.skin-code__description {
    margin: 0;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0.01em;
    color: #4a5866;
}

.skin-code__more-link {
    margin-top: 120px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 234px;
    height: 56px;
    padding: 16px 46px;
    border: 1px solid var(--ink);
    border-radius: 1000px;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0.01em;
    color: #4a5866;
    transition: transform 0.28s ease;
}

.skin-code__more-link:hover svg path {
    stroke: #fff;
}
.skin-code__more-link:hover {
    transform: translateY(-2px);
    background: var(--ink);
    color: #fff;
}

.skin-code__more-link svg path{
    stroke: var(--ink);
}
.skin-code__more-link svg {
    width: 17px;
    flex-shrink: 0;
}

/* Middle column */

.skin-code__middle-title {
    margin: 0 0 14px;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #4a5866;
}

.skin-code__dimensions {
    position: relative;
    padding-top: 22px;
}

.skin-code__middle-divider {
    position: absolute;
    top: 0;
    left: 273px;
    width: 2px;
    height: 100%;
    background: #d8dbde;
    pointer-events: none;
}

.skin-code__dimension-row {
    display: grid;
    grid-template-columns: 71px 1fr;
    gap: 40px;
    align-items: start;
}

.skin-code__dimension-row + .skin-code__dimension-row {
    margin-top: 40px;
}

.skin-code__dimension-icon {
    width: 71px;
    height: 71px;
    border: 1px solid #7FACD9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.skin-code__dimension-icon img {
    width: 36px;
    height: 36px;
}

.skin-code__dimension-track {
    position: relative;
    min-height: 56px;
    padding-top: 7px;
}

.skin-code__dimension-letter {
    position: absolute;
    top: 17px;
    font-weight: 400;
    font-size: 22px;
    line-height: 120%;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #4a5866;
}

.skin-code__dimension-letter--left {
    left: 0;
}

.skin-code__dimension-letter--right {
    right: 0;
}

.skin-code__dimension-value {
    position: absolute;
    bottom: 9px;
    left: calc(10px + var(--bar-start) + var(--bar-width) / 2);
    transform: translateX(-50%);
    margin: 0;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0.01em;
    color: #4a5866;
    white-space: nowrap;
}

.skin-code__bar-line {
    position: relative;
    width: 265px;
    max-width: 100%;
    margin: 25px 30px 0;
    height: 2px;
    background: #d8dbde;
    border-radius: 1px;
}

.skin-code__bar-fill {
    position: absolute;
    left: var(--bar-start);
    top: 0;
    width: var(--bar-width);
    height: 2px;
    background: var(--ink);
}

.skin-code__bar-dot {
    position: absolute;
    left: var(--bar-dot);
    top: -4.5px;
    width: 11px;
    height: 11px;
    background: var(--ink-dark);
    border-radius: 50%;
}

.skin-code__dimension-label {
    position: absolute;
    top: 42px;
    font-weight: 400;
    font-size: 12px;
    line-height: 120%;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #949da6;
}

.skin-code__dimension-label--left {
    left: 30px;
}

.skin-code__dimension-label--right {
    right: 0;
    text-align: right;
}

/* Right column */

.skin-code__right {
    text-align: center;
}

.skin-code__profile-label {
    margin: 0 0 40px;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #4a5866;
    text-align: left;
}

.skin-code__profile-head {
    margin-bottom: 40px;
}

.skin-code__profile-code {
    margin: 0 0 8px;
    font-weight: 600;
    font-size: 92px;
    line-height: 1;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #4a5866;
}

.skin-code__profile-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px 10px;
    margin: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 0.01em;
    color: #4a5866;
}

.skin-code__profile-tags span {
    display: inline-flex;
    align-items: center;
}

.skin-code__profile-tags span:not(:last-child)::after {
    content: "";
    width: 2px;
    height: 2px;
    margin-left: 10px;
    border-radius: 50%;
    background: #4a5866;
}

.skin-code__profile-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.skin-code__profile-wheel {
    width: 184px;
    margin: 0 auto 22px;
}

.skin-code__profile-caption {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0.01em;
    text-align: center;
    text-transform: uppercase;
    color: #4a5866;
}

.skin-code__profile-text {
    margin: 40px 0 0;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0.01em;
    color: #4a5866;
    text-align: left;
}

/* ── skin-code responsive ── */

@media (max-width: 1200px) {
    .skin-code__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .skin-code__title,
    .skin-code__intro {
        max-width: none;
    }

    .skin-code__more-link {
        margin-top: 40px;
    }

    .skin-code__middle-divider {
        display: none;
    }

    .skin-code__right {
        max-width: 360px;
        margin: 0 auto;
    }

    .skin-code__profile-label,
    .skin-code__profile-text {
        text-align: center;
    }
}

@media (max-width: 760px) {
    .skin-code__dimension-row {
        grid-template-columns: 60px 1fr;
        gap: 20px;
    }

    .skin-code__dimension-row + .skin-code__dimension-row {
        margin-top: 32px;
    }

    .skin-code__dimension-icon {
        width: 60px;
        height: 60px;
    }

    .skin-code__dimension-icon img {
        width: 28px;
        height: 28px;
    }

    .skin-code__bar-line {
        width: calc(100% - 30px);
        margin-left: 15px;
        margin-right: 15px;
    }

    .skin-code__dimension-label--left {
        left: 15px;
    }

    .skin-code__description {
        font-size: 16px;
    }

    .skin-code__profile-code {
        font-size: clamp(56px, 18vw, 92px);
    }

    .skin-code__profile-wheel {
        width: 160px;
    }
}





.video-block {
    height: 700px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-transform: uppercase;
}

.awards {
    padding: 60px 0 60px;
}
.awards__heading {
    text-align: center;
}

.awards__title {
    font-size: clamp(32px, 5vw, 48px);
}

.awards__subtitle {
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 12px;
}

.awards__grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.awards__card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 160px 1fr;
    min-height: 160px;
}

.awards__card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-right: 1px solid var(--line);
    padding: 8px;
}

.awards__card-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 34px 10px;
}

.awards__card-title {
    margin: 0;
    font-weight: 700;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #4a5866;
}

.awards__card-text {
    margin: 0;
    color: var(--muted);
}

.awards__cert-line {
    text-align: center;
    font-size: 46px;
    color: var(--muted);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.awards__cert-title {
    font-weight: 600;
    font-size: 22px;
    line-height: 120%;
    letter-spacing: 0.01em;
    text-align: center;
    text-transform: uppercase;
    color: #4a5866;
    margin-bottom: 20px;
}
.awards__cert-suptitle {
    font-weight: 600;
    font-size: 22px;
    line-height: 120%;
    letter-spacing: 0.01em;
    text-align: center;
    color: #4a5866;
    margin-bottom: 8px;
}

.awards__cert-desc {
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0.01em;
    color: #4a5866;
    text-align: center;
}

.awards__cert-line img {
    width: 10px;
}

.news__title {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 40px;
}

.news__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.news__thumb {
    height: 270px;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}

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

.news__date {
    color: var(--muted);
    margin: 12px 0;
    display: block;

    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: 0.01em;
}

.news__text {
    margin: 0;
    color: #616d79;

    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: 0.01em;
}

.cta__inner {
    text-align: center;
}

.cta__title {
    font-size: clamp(32px, 5vw, 48px);
}

.cta__description {
    max-width: 600px;
    margin: 20px auto 40px;
    color: #616d79;

    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: 0.01em;
    text-align: center;
}

.lead__layout {
    display: grid;
    grid-template-columns: 1fr 540px;
    gap: 40px;
}

.lead__title {
    font-size: clamp(32px, 5vw, 48px);
}

.lead__description {
    color: #616d79;
    max-width: 360px;
    margin-top: 20px;
    margin-bottom: 60px;
}

.lead__round-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lead__round-button {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 1px solid #314251;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #7facd9;
    text-transform: uppercase;
}

.lead__round-button img {
    width: 24px;
}

.lead__meta {
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 12px 0;
}

.lead__form-title {
    margin: 0;
    font-weight: 600;
    font-size: 22px;
    line-height: 120%;
    letter-spacing: 0.01em;
    color: #4a5866;
}

.lead__form-description {
    color: #616d79;
    margin: 20px 0 60px;
}

.lead__form-button {
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0.01em;
    color: #7facd9;
}

.lead__form-label {
    display: block;
    color: rgba(97, 109, 121, 0.5);
    text-transform: uppercase;
    margin-top: 20px;
}

.lead__form-label input {
    border: 0;
    border-bottom: 1px solid rgba(148, 157, 166, 0.4);
    background: transparent;
    width: 100%;
    padding: 12px 0;
    color: var(--ink);
    font-size: 16px;
}






.lead__form {
    width: 100%;
    max-width: 540px;
}

.lead__form-title {
    margin: 0;
    font-weight: 600;
    font-size: 22px;
    line-height: 120%;
    letter-spacing: 0.01em;
    color: #4a5866;
}

.lead__form-description {
    margin: 20px 0 60px;
    color: #616d79;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: 0.01em;
}

.lead__form .wpcf7 {
    margin: 0;
}

.lead__form .wpcf7-form {
    margin: 0;
}

.lead__form .wpcf7-form > p {
    margin: 0 0 20px;
}

.lead__form .wpcf7-form > p:last-of-type {
    margin-bottom: 0;
}

.lead__form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.lead__form .wpcf7-form-control.wpcf7-text,
.lead__form .wpcf7-form-control.wpcf7-email,
.lead__form .lead__form-field {
    display: block;
    width: 100%;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(148, 157, 166, 0.4);
    background: transparent;
    outline: none;
    box-shadow: none;
    padding: 0 0 12px;
    color: #4a5866;
    font-family: Lato, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: 0.01em;
}

.lead__form .wpcf7-form-control.wpcf7-text:focus,
.lead__form .wpcf7-form-control.wpcf7-email:focus,
.lead__form .lead__form-field:focus {
    border-bottom-color: #4a5866;
}

.lead__form .wpcf7-form-control::placeholder,
.lead__form .lead__form-field::placeholder {
    color: rgba(97, 109, 121, 0.4);
    opacity: 1;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: 0.01em;
}

.lead__form .wpcf7-form-control::-webkit-input-placeholder {
    color: rgba(97, 109, 121, 0.4);
    text-transform: uppercase;
}

.lead__form .wpcf7-form-control::-moz-placeholder {
    color: rgba(97, 109, 121, 0.4);
    opacity: 1;
    text-transform: uppercase;
}

.lead__form .wpcf7-form-control:-ms-input-placeholder {
    color: rgba(97, 109, 121, 0.4);
    text-transform: uppercase;
}

.lead__form .wpcf7-submit,
.lead__form .button--primary.lead__form-button {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    border: 0;
    border-radius: 1000px;
    background: #314251;
    padding: 20px 46px;
    cursor: pointer;
    font-family: Lato, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0.01em;
    color: #7facd9;
    transition: transform 0.28s ease, background-color 0.28s ease, opacity 0.28s ease;
}

.lead__form .wpcf7-submit:hover,
.lead__form .button--primary.lead__form-button:hover {
    transform: translateY(-2px);
    opacity: 0.92;
}

.lead__form .wpcf7-submit img,
.lead__form .lead__form-button img {
    width: 24px;
    height: 24px;
    display: block;
    flex-shrink: 0;
}

.lead__form-privacy {
    margin: 20px 0 0;
    color: #949da6;
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0.01em;
}

.lead__form-privacy img {
    width: 23px;
    height: 23px;
    flex-shrink: 0;
}

.lead__form .wpcf7-not-valid-tip {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.3;
    color: #c0392b;
}

.lead__form .wpcf7-response-output {
    margin: 16px 0 0;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.4;
}

.lead__form .wpcf7 form.sent .wpcf7-response-output {
    border-color: rgba(74, 88, 102, 0.3);
    color: #4a5866;
}

.lead__form .wpcf7 form.invalid .wpcf7-response-output,
.lead__form .wpcf7 form.failed .wpcf7-response-output {
    border-color: rgba(192, 57, 43, 0.35);
    color: #c0392b;
}

.lead__form .wpcf7-spinner {
    margin-left: 10px;
}



.footer {
    position: relative;
    margin-top: 80px;
    min-height: 612px;
    border-top: 1px solid var(--line);
    overflow: hidden;
}

.footer__background,
.footer__overlay {
    position: absolute;
    inset: 0;
}

.footer__background {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer__overlay {
    background: linear-gradient(rgba(245, 245, 245, 0.6), rgba(245, 245, 245, 0.84));
}

.footer__top,
.footer__bottom {
    position: relative;
    z-index: 2;
}

.footer__brand-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: 0.01em;
    color: #797979;
    margin: 36px 0 0;
}

.footer__top {
    padding-top: 100px;
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 50px;
}

.footer__brand-logo {
    width: 326px;
}

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

.footer__column-title {
    margin: 0 0 12px;
    text-transform: uppercase;

    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: 0.01em;
    color: #4a5866;
}

.footer__column a {
    display: block;
    color: var(--muted);
    margin-bottom: 6px;

    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: 0.01em;
}

.footer__bottom > * {
    margin: 0;
}
.footer__bottom-link {
    display: flex;
    gap: 22px;
    text-transform: uppercase;
}
.footer__socials-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.footer__socials-title {
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: 0.01em;
    text-align: center;
    text-transform: uppercase;
    color: #4a5866;
}


.footer__bottom {
    margin-top: 88px;
    border-top: 1px solid #ccc;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;

    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: 0.01em;
    color: #797979;
}

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

.footer__socials img {
    width: 29px;
}




.platform__heading {
    text-align: center;
}

.platform__title {
    font-size: clamp(32px, 5vw, 48px);
}

.platform__description {
    color: var(--muted);
    margin: 10px auto 0;
    max-width: 500px;
    font-size: 18px;
    line-height: 130%;
}

.platform__grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 518px 1fr;
    gap: 20px;
    align-items: stretch;
}

.platform__practice-list {
    display: grid;
    gap: 16px;
    align-content: start;
}

.platform__practice-card {
    background: #fff;
    border: 1px solid #e3e5e8;
    border-radius: 20px;
    padding: 28px 32px;
    cursor: pointer;
    transition:
            background-color 0.3s ease,
            border-color 0.3s ease,
            box-shadow 0.3s ease,
            opacity 0.3s ease;
}


.platform__practice-card:not(.is-active) {
    background: rgba(255, 255, 255, 0.72);
    border-color: #e8eaed;
    box-shadow: none;
}
.platform__practice-card.is-active {
    background: #fff;
    border-color: #d4d8db;
    box-shadow: 0 8px 28px rgba(29, 47, 63, 0.06);
}

.platform__practice-top {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 24px;
    align-items: stretch;
}
.platform__practice-index {
    position: relative;
    display: flex;
    align-items: flex-start;
    padding-right: 24px;
}


.platform__practice-index::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: rgba(148, 157, 166, 0.35);
}
.platform__practice-id {
    margin: 0;
    font-size: 40px;
    line-height: 1;
    font-weight: 400;
    color: #949da6;
    transition: color 0.3s ease;
}


.platform__practice-card.is-active .platform__practice-id {
    color: #4a5866;
}
.platform__practice-content {
    min-width: 0;
}
.platform__practice-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}
.platform__practice-copy {
    min-width: 0;
}
.platform__practice-title {
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
    color: #949da6;
    transition: color 0.3s ease;
}
.platform__practice-card.is-active .platform__practice-title {
    color: #1d2f3f;
}
.platform__practice-text {
    margin: 0;
    font-size: 16px;
    line-height: 140%;
    color: #949da6;
    max-width: 340px;
    transition: color 0.3s ease;
}
.platform__practice-card.is-active .platform__practice-text {
    color: #4a5866;
}
.platform__practice-arrow {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    margin-top: 2px;
    opacity: 0.35;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.platform__practice-card.is-active .platform__practice-arrow {
    opacity: 1;
}
.platform__practice-card:hover .platform__practice-arrow {
    transform: translateX(3px);
}

.platform__practice-footer {
    display: grid;
    grid-template-columns: 65px 1fr;
    gap: 20px;
    align-items: center;
    margin-top: 0;
    padding-top: 0;
    border-top: 1px solid transparent;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition:
            max-height 0.45s ease,
            opacity 0.35s ease,
            margin-top 0.35s ease,
            padding-top 0.35s ease,
            border-color 0.35s ease;
}
.platform__practice-card.is-active .platform__practice-footer {
    max-height: 120px;
    opacity: 1;
    margin-top: 24px;
    padding-top: 24px;
    border-top-color: rgba(148, 157, 166, 0.35);
}
.platform__practice-icon {
    flex: 0 0 auto;
}
.platform__practice-icon svg {
    display: block;
    width: 65px;
    height: 65px;
}
.platform__practice-metric {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: center;
    margin: 0;
}
.platform__practice-metric strong {
    margin: 0;
    font-size: 40px;
    line-height: 1;
    font-weight: 400;
    color: #949da6;
    white-space: nowrap;
}
.platform__practice-metric span {
    font-size: 11px;
    line-height: 130%;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #949da6;
    max-width: 180px;
}

.platform__image-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 666px;
    background: #e9e9ea;
}
.platform__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.45s ease, transform 0.6s ease;
    pointer-events: none;
}
.platform__image.is-active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}



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

.reveal.in-view {
    opacity: 1;
    transform: none;
}

.smarter-care {
    padding: 60px 0;
    background: #fff;
}

.smarter-care__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.smarter-care__title {
    margin: 0 0 16px;
    font-weight: 600;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 120%;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #4a5866;
}

.smarter-care__subtitle {
    margin: 0 auto;
    max-width: 476px;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: 0.01em;
    text-align: center;
    color: #1d2f3f;
}

.smarter-care__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 711px);
    gap: 40px;
    align-items: start;
}

.smarter-care__media {
    overflow: hidden;
    border: 1px solid #fff;
    margin-top: 110px;
}

.smarter-care__image {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    border: 1px solid #fff;
}

.smarter-care__panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
}

.smarter-care__tabs {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.smarter-care__tab {
    font-weight: 400;
    font-size: 22px;
    line-height: 130%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #949da6;
}

.smarter-care__badge {
    flex-shrink: 0;
    padding: 14px 20px;
    border-radius: 1000px;
    border: 1px solid rgba(148, 157, 166, 0.35);
    background: #fff;
    white-space: nowrap;

    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: 0.02em;
    color: #4a5866;
}

.smarter-care__list {
    overflow: visible;
}

.smarter-care__group-title {
    margin: 0 0 20px;
    font-weight: 600;
    font-size: 22px;
    line-height: 130%;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #616d79;
}

.smarter-care__group-title:not(:first-child) {
    margin-top: 0px;
    padding-top: 20px;
    border-top: 1px solid rgba(148, 157, 166, 0.2);
}

.smarter-care__item {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr) auto;
    gap: 20px;
    align-items: start;
    padding-bottom: 20px;
}

.smarter-care__item:last-child {
    border-bottom: 0;
}

.smarter-care__thumb {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border: 0.88px solid #fff;
    border-radius: 8px;
}

.smarter-care__name {
    font-weight: 400;
    font-size: 28px;
    line-height: 130%;
    letter-spacing: 0.01em;
    color: #1d2f3f;
    margin: 0;
}

.smarter-care__desc {
    margin: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: 0.01em;
    color: #7b858f;
}

.smarter-care__desc--tags {
    font-size: 11px;
}

/* Actions column */
.smarter-care__actions {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: 88px;
}

.smarter-care__add {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 88px;
    height: 38px;
    padding: 0 18px;
    border: 1px solid rgba(148, 157, 166, 0.45);
    border-radius: 1000px;
    background: #fff;
    color: #4a5866;
    font-family: inherit;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.smarter-care__add:hover,
.smarter-care__actions:focus-within .smarter-care__add {
    border-color: rgba(148, 157, 166, 0.5);
    color: rgba(148, 157, 166, 0.5);
}

.smarter-care__tooltip {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 5;
    width: 280px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-4px);
    transition:
            opacity 0.28s ease,
            transform 0.28s ease,
            visibility 0.28s ease;
}

.smarter-care__tooltip-box {
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(148, 157, 166, 0.3);
    background: #fff;
    box-shadow: 0 8px 24px rgba(29, 47, 63, 0.08);
    text-align: left;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: 0.01em;
    color: #314251;
}

.smarter-care__actions.is-open .smarter-care__tooltip {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}
.smarter-care__actions.is-open .smarter-care__add {
    border-color: rgba(148, 157, 166, 0.5);
    color: rgba(148, 157, 166, 0.5);
}

@media (hover: hover) and (pointer: fine) {
    .smarter-care__actions:hover .smarter-care__tooltip {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
    .smarter-care__add:hover {
        border-color: rgba(148, 157, 166, 0.5);
        color: rgba(148, 157, 166, 0.5);
    }
}

@media (max-width: 1200px) {
    .smarter-care__layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .smarter-care__media {
        margin-top: 0;
        max-width: 560px;
        margin-inline: auto;
    }
    .smarter-care__image {
        min-height: auto;
        aspect-ratio: 4 / 5;
    }
    .smarter-care__panel-head {
        margin-bottom: 32px;
    }
    .smarter-care__tab {
        font-size: clamp(16px, 2.5vw, 22px);
    }
    .smarter-care__name {
        font-size: clamp(20px, 3vw, 28px);
    }
    .smarter-care__group-title {
        font-size: clamp(16px, 2.5vw, 22px);
    }
}

@media (max-width: 900px) {
    .smarter-care {
        padding: 48px 0;
    }
    .smarter-care__header {
        margin-bottom: 32px;
    }
    .smarter-care__panel-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .smarter-care__badge {
        padding: 10px 16px;
        font-size: 13px;
    }
    .smarter-care__item {
        grid-template-columns: 90px minmax(0, 1fr) auto;
        gap: 16px;
    }
    .smarter-care__thumb {
        width: 90px;
        height: 90px;
    }
    .smarter-care__tooltip {
        width: 240px;
    }
}

@media (max-width: 760px) {
    .smarter-care {
        padding: 40px 0;
    }
    .smarter-care__subtitle {
        font-size: 16px;
    }
    .smarter-care__tab {
        font-size: 14px;
        line-height: 140%;
    }
    .smarter-care__badge {
        white-space: normal;
        width: 100%;
        text-align: center;
    }
    .smarter-care__group-title {
        font-size: 16px;
        margin-bottom: 16px;
    }
    .smarter-care__item {
        grid-template-columns: 72px minmax(0, 1fr);
        grid-template-areas:
            "thumb info"
            "actions actions";
        gap: 0 16px;
        padding-bottom: 0;
    }
    .smarter-care__thumb {
        grid-area: thumb;
        width: 72px;
        height: 72px;
    }
    .smarter-care__info {
        grid-area: info;
    }
    .smarter-care__name {
        font-size: 18px;
    }
    .smarter-care__desc {
        font-size: 12px;
    }
    .smarter-care__desc--tags {
        font-size: 11px;
    }
    .smarter-care__actions {
        grid-area: actions;
        align-items: flex-end;
        width: 100%;
        min-width: 0;
    }
    .smarter-care__tooltip {
        width: min(280px, 100%);
    }
    .smarter-care__tooltip-box {
        font-size: 13px;
        padding: 10px 16px;
    }
}





@media (max-width: 1200px) {
    .header__inner {
        min-height: 80px;

    }
    .header__burger {
        display: flex;
        order: 3;
    }
    .header__navigation {
        display: none;
    }
    .header__actions {
        order: 2;
        margin-left: auto;
        gap: 12px;
    }
    .header__demo-button {
        display: none;
    }
    .header__mobile-menu {
        display: block;
        position: fixed;
        inset: 80px 0 0;
        z-index: 25;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        padding: 12px 16px;
        overflow-y: auto;
    }
    .header__mobile-menu[hidden] {
        display: none;
    }

    .header__mobile-nav {
        display: flex;
        flex-direction: column;
        gap: 0;
        min-height: 100%;
    }

    .header__mobile-item {
        border-bottom: 1px solid var(--line);
    }

    .header__mobile-item.is-open .header__mobile-trigger {
        color: #1d2f3f;
    }

    .header__mobile-trigger,
    .header__mobile-sub-trigger {
        outline: none;
        -webkit-tap-highlight-color: transparent;
    }

    .header__burger:focus,
    .header__mobile-trigger:focus,
    .header__mobile-sub-trigger:focus,
    .header__mobile-trigger:focus-visible,
    .header__mobile-sub-trigger:focus-visible {
        outline: none;
        box-shadow: none;
    }

    .header__mobile-trigger {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 12px 0;
        border: 0;
        background: transparent;
        font-family: inherit;
        font-weight: 400;
        font-size: 22px;
        line-height: 130%;
        letter-spacing: 0.01em;
        color: #4a5866;
        text-align: left;
        cursor: pointer;
        transition: color 0.2s ease;
    }

    .header__mobile-trigger img {
        width: 11px;
        height: 15px;
        flex-shrink: 0;
        transition: transform 0.25s ease;
    }

    .header__mobile-item.is-open .header__mobile-trigger img {
        transform: rotate(180deg);
    }

    .header__mobile-panel,
    .header__mobile-sub-panel {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows 0.3s ease;
    }

    .header__mobile-item.is-open > .header__mobile-panel,
    .header__mobile-sub.is-open > .header__mobile-sub-panel {
        grid-template-rows: 1fr;
    }

    .header__mobile-panel-inner,
    .header__mobile-sub-panel-inner {
        min-height: 0;
        overflow: hidden;
    }

    .header__mobile-panel-inner--lined {
        position: relative;
        margin: 0 0 10px 8px;
        padding-left: 14px;
        display: grid;
        gap: 8px;
    }

    .header__mobile-panel-inner--lined::before {
        content: "";
        position: absolute;
        left: 0;
        top: 4px;
        bottom: 4px;
        width: 1px;
        background: rgba(148, 157, 166, 0.35);
    }

    .header__mobile-panel-inner a,
    .header__mobile-sub-panel-inner a {
        font-size: 18px;
        line-height: 130%;
        color: #4a5866;
        transition: color 0.2s ease;
    }

    .header__mobile-panel-inner a:hover,
    .header__mobile-sub-panel-inner a:hover {
        color: #1d2f3f;
    }

    .header__mobile-group-title {
        margin: 8px 0 0;
        font-size: 12px;
        font-weight: 700;
        line-height: 120%;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #949da6;
    }

    .header__mobile-group-title:first-child {
        margin-top: 0;
    }

    .header__mobile-sub-trigger {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 0;
        border: 0;
        background: transparent;
        font-family: inherit;
        font-size: 18px;
        line-height: 130%;
        color: #4a5866;
        cursor: pointer;
        text-align: left;
    }

    .header__mobile-sub-trigger svg {
        transition: transform 0.25s ease;
    }

    .header__mobile-sub.is-open .header__mobile-sub-trigger svg {
        transform: rotate(180deg);
    }

    .header__mobile-sub-panel-inner {
        display: grid;
        gap: 12px;
        padding: 6px 0 2px 12px;
    }

    .header__mobile-demo {
        margin-top: auto;
        padding-top: 24px;
        width: 100%;
        min-width: 0;
    }

    .header__mobile-menu {
        inset: 72px 0 0;
        padding: 16px;
    }

    .header__mobile-trigger {
        font-size: 20px;
        padding: 18px 0;
    }

    .header__mobile-panel-inner a,
    .header__mobile-sub-panel-inner a {
        font-size: 16px;
    }

    .hero__title,
    .trusted__title,
    .inside__title,
    .why__title,
    .skin-code__title,
    .platform__title,
    .awards__title,
    .news__title,
    .cta__title,
    .lead__title {
        font-size: clamp(28px, 5vw, 40px);
    }

    .trusted__metrics,
    .inside__layout,
    .why__layout,
    .skin-code__layout,
    .platform__grid,
    .lead__layout,
    .footer__top {
        grid-template-columns: 1fr;
    }
    .awards__grid,
    .news__grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer__columns {
        grid-template-columns: 1fr 1fr;
    }

    .trusted__metrics {
        grid-template-columns: 1fr;
        padding: 32px;
        gap: 24px;
    }
    .trusted__metric-card {
        gap: 20px;
    }
    .trusted__metric-value {
        font-size: 48px;
    }
    .trusted__title-region {
        flex-wrap: wrap;
    }

    .inside__layout {
        gap: 24px;
    }
    .inside__tabs {
        margin: 40px 0;
        gap: 12px;
    }
    .inside__tab-button {
        width: auto;
        flex: 1;
        min-width: 0;
        font-size: 14px;
        padding: 0 16px;
    }
    .inside__shell {
        margin-top: 0;
    }

    .why__layout {
        gap: 32px;
    }
    .why__content {
        padding: 40px 0 0;
    }
    .why__media {
        width: 100%;
        margin-right: 0;
        padding: 24px 0 40px;
    }

    .quote__author-inner {
        margin: 0 24px;
    }
    .quote__body {
        padding: 20px 24px;
    }

    .platform__grid {
        margin-top: 40px;
    }
    .platform__image-wrap {
        min-height: 420px;
        order: -1;
    }

    .lead__round-inner {
        flex-wrap: wrap;
    }
    .lead__round-button {
        width: 160px;
        height: 160px;
    }


    .footer__top {
        padding-top: 60px;
        gap: 32px;
    }
    .footer__brand-logo {
        width: 240px;
    }

    .header__navigation > .header__item > .header__dropdown {
        width: calc(100vw - 32px);
        max-width: 830px;
    }
}

@media (max-width: 760px) {
    .layout-container {
        width: calc(100% - 28px);
    }

    .trusted,
    .inside,
    .skin-code,
    .platform,
    .awards,
    .news,
    .cta,
    .lead {
        padding: 40px 0;
    }
    .hero {
        padding-top: 110px;
    }
    .hero__title {
        font-size: clamp(32px, 9vw, 48px);
    }
    .hero__topline,
    .hero__subline {
        font-size: 14px;
    }
    .hero__media {
        margin-top: 28px;
        height: 460px;
    }

    .hero__cta-wrap {
        padding-bottom: 28px;
    }

    .hero__cta {
        width: 132px;
        height: 132px;
        font-size: 14px;
        padding: 16px;
        gap: 4px;
    }

    .hero__cta-icon {
        width: 12px;
        height: 12px;
    }

    .header__inner {
        min-height: 72px;
        gap: 15px;
    }
    .header__brand-image {
        max-width: 120px;
    }
    .header__language-switcher span {
        font-size: 14px;
    }
    .header__mobile-menu {
        inset: 72px 0 0;
        padding: 8px 12px;
    }

    .button--dark {
        padding: 12px 20px;
        min-width: auto;
        font-size: 14px;
    }

    .trusted__metrics {
        padding: 20px;
    }
    .trusted__metric-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .trusted__metric-icon {
        width: 88px;
        height: 88px;
    }
    .trusted__metric-icon img {
        width: 44px;
    }
    .trusted__metric-value {
        font-size: 40px;
        justify-content: center;
    }
    .trusted__description {
        font-size: 16px;
    }






    .inside .layout-container {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas:
            "heading"
            "stage"
            "controls";
    }
    .inside__heading {
        grid-area: heading;
        text-align: center;
    }
    .inside__title {
        font-size: clamp(28px, 5vw, 40px);
    }
    .inside__subtitle,
    .inside__description {
        font-size: 16px;
        margin-top: 16px;
    }
    .inside__subtitle span {
        height: 8px;
    }

    .inside__layout {
        grid-area: stage;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        align-items: start;
    }
    .inside__shell {
        --inside-scale: 1;
        --inside-pan-x: 0px;
        --inside-pan-y: 0px;
        position: relative;
        aspect-ratio: 1 / 1.05;
        border-radius: 16px;
        overflow: hidden;
        margin-top: 0;
        touch-action: pan-y;
    }
    .inside__content {
        transform: translate3d(
                calc(-50% + var(--inside-pan-x, 0px)),
                calc(-50% + var(--inside-pan-y, 0px)),
                0
        ) scale(var(--inside-scale));
    }
    .inside__slide {
        border: 0;
        box-shadow: none;
    }
    .inside__slide-image {
        object-fit: cover;
        object-position: center 12%;
    }

    .inside__pin {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 0;
        max-width: calc(75px / var(--inside-scale));
        padding: calc(2px / var(--inside-scale)) calc(5px / var(--inside-scale));
        border: 1px solid rgba(255, 255, 255, 0.45);
        border-radius: 9999px;
        background: rgba(255, 255, 255, 0.88);
        font-family: Poppins, Manrope, sans-serif;
        font-size: calc(10px / var(--inside-scale));
        font-weight: 600;
        line-height: 1.1;
        white-space: normal;
        text-align: center;
        color: rgba(0, 0, 0, 0.72);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
        -webkit-tap-highlight-color: transparent;
        outline: none;
        overflow: visible;
        text-overflow: unset;
        transform: translate(var(--pin-tx, -50%), var(--pin-ty, -50%));
        transition:
                background-color 0.45s cubic-bezier(0.33, 1, 0.68, 1),
                color 0.45s cubic-bezier(0.33, 1, 0.68, 1),
                border-color 0.45s cubic-bezier(0.33, 1, 0.68, 1),
                box-shadow 0.45s cubic-bezier(0.33, 1, 0.68, 1),
                transform 0.45s cubic-bezier(0.33, 1, 0.68, 1);
    }

    .inside__pin:hover,
    .inside__pin.is-active {
        background: rgba(255, 255, 255, 0.96);
        border-color: rgba(255, 255, 255, 0.6);
        color: #000;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
        transform: translate(var(--pin-tx, -50%), calc(var(--pin-ty, -50%) - 1px));
    }
    .inside__pin:focus-visible {
        outline: 2px solid #fff;
        outline-offset: 2px;
        transform: translate(-50%, -50%);
    }

    .inside__panel {
        display: none;
    }

    .inside__tabs {
        grid-area: stage;
        align-self: end;
        justify-self: center;
        z-index: 6;
        position: relative;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 4px;
        width: calc(100% - 20px);
        max-width: calc(100% - 20px);
        margin: 0 0 12px;
        padding: 4px;
        border-radius: 1000px;
        background: rgba(24, 24, 24, 0.55);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    .inside__tabs-bubble {
        display: none;
    }
    .inside__tab-button {
        flex: 1;
        width: auto;
        min-width: 0;
        height: 36px;
        padding: 0 6px;
        border: 0;
        border-radius: 1000px;
        background: transparent;
        color: rgba(255, 255, 255, 0.92);
        font-family: Lato, sans-serif;
        font-size: 10px;
        line-height: 1.15;
        letter-spacing: 0;
        text-transform: none;
        white-space: normal;
        text-align: center;
        cursor: pointer;
        transition: background-color 0.25s ease, color 0.25s ease;
    }
    .inside__tab-button > span {
        position: relative;
        z-index: 2;
    }
    .inside__tab-button.is-active {
        background: #fff;
        color: #111;
    }
    .inside__tab-button:hover:not(.is-active) {
        background: rgba(255, 255, 255, 0.12);
    }

    .inside__controls {
        grid-area: controls;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 14px;
    }
    .inside__controls-bar {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 12px;
    }
    .inside__caption {
        font-size: 12px;
    }
    .inside__slider-button {
        width: 36px;
        height: 36px;
    }


    .why__content {
        padding: 0;
    }
    .why__title {
        margin-bottom: 24px;
    }
    .why__description {
        max-width: none;
        font-size: 16px;
    }
    .why__media-track {
        gap: 20px;
    }
    .why__media-track img {
        width: 130px;
        height: 232px;
    }
    .why__media::before {
        width: 40px;
    }

    .quote__text {
        font-size: 18px;
        margin: 30px 0;
    }
    .quote__author-inner {
        margin: 0;
    }

    .platform__practice-card,
    .platform__practice-card.is-active {
        padding: 18px;
    }
    .platform__practice-top {
        grid-template-columns: 40px 1fr;
        gap: 16px;
    }
    .platform__practice-index {
        padding-right: 16px;
    }
    .platform__practice-id {
        font-size: 28px;
    }
    .platform__practice-card.is-active .platform__practice-id {
        font-size: 32px;
    }
    .platform__practice-title {
        font-size: 14px;
    }
    .platform__practice-text {
        font-size: 14px;
        max-width: none;
    }
    .platform__practice-metric strong {
        font-size: 32px;
    }
    .platform__practice-metric span {
        font-size: 10px;
    }
    .platform__image-wrap {
        min-height: 280px;
        border-radius: 16px;
    }

    .footer__socials-title {
        text-align: left;
    }
    .footer__socials-inner {
        align-items: self-start;
    }

    .awards__grid,
    .news__grid {
        grid-template-columns: 1fr;
    }
    .awards__cert-line {
        font-size: 24px;
        flex-wrap: wrap;
    }
    .news__thumb {
        height: 200px;
    }

    .cta__description {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .lead__description {
        max-width: none;
        font-size: 16px;
        margin-bottom: 32px;
    }
    .lead__round-button {
        width: 140px;
        height: 140px;
        font-size: 14px;
    }
    .lead__round-text {
        font-size: 16px;
    }

    .footer {
        margin-top: 40px;
        min-height: auto;
    }
    .footer__top {
        padding-top: 40px;
    }
    .footer__brand-logo {
        width: 180px;
    }
    .footer__columns {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .footer__bottom {
        margin-top: 50px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .awards__grid {
        gap: 20px;
    }
    .footer__bottom-link {
        flex-wrap: wrap;
        gap: 12px;
    }

    .video-block {
        height: 240px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero__media {
        height: 240px;
    }

    .hero__cta-wrap {
        padding-bottom: 16px;
    }

    .hero__cta {
        width: 100px;
        height: 100px;
        font-size: 11px;
        padding: 12px;
    }

    .platform__practice-main {
        flex-direction: column;
        gap: 12px;
    }
    .platform__practice-arrow {
        align-self: flex-end;
    }
    .platform__practice-footer {
        grid-template-columns: 50px 1fr;
        gap: 12px;
    }
    .platform__practice-icon svg {
        width: 50px;
        height: 50px;
    }
    .trusted__metric-value {
        font-size: 32px;
    }
}