* {
    font-family: "Space Grotesk", sans-serif;
}
.scroll-progress {
    position: fixed;
    top: 10px;
    left: 24px;
    right: 24px;
    width: auto;
    height: 1px;
    background: rgba(248, 247, 247);
    z-index: 9999;
}
.scroll-progress__line {
    display: block;
    width: 0;
    height: 100%;
    background: #0d0d0d;
    transition: width .1s linear;
}
html {
    scrollbar-color: #111 transparent;
    scrollbar-width: thin;
    
}
::-webkit-scrollbar {
    width: 1px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #111;
    border-radius: 1px;
}
h2 {
    font-weight: 700;
}

p {
    font-weight: 400;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    background: #040404;
    color: #fff;
    font-family: Arial, sans-serif;
}
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}
/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header__inner {
    width: 100%;
    height: 100%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 20px;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    flex-shrink: 0;
}

.header__logo-mark {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    font-size: 20px;
    transition:
        transform 0.4s ease,
        background 0.4s ease,
        color 0.4s ease;
}

.header__logo:hover .header__logo-mark {
    transform: rotate(45deg);
    background: #fff;
    color: #000;
}

.header__logo-text {
    display: flex;
    flex-direction: column;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 3px;
    font-weight: 400;
}

.header__logo-text strong {
    margin-top: 4px;
    font-size: 15px;
    letter-spacing: 5px;
    opacity: 0.45;
    font-weight: 400;
    text-align: center;
}

.header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 3vw, 45px);
}

.header__link {
    position: relative;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: clamp(16px, 1.3vw, 24px);
    letter-spacing: 1px;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.header__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.4s ease;
}

.header__link:hover {
    color: #fff;
}

.header__link:hover::after {
    width: 100%;
}

.header__button {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 12px 18px;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;
    font-size: 15px;
    white-space: nowrap;
    flex-shrink: 0;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.header__button-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.header__button:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

.header__button:hover .header__button-arrow {
    transform: translate(3px, -3px);
}

.header__burger {
    display: none;
    width: 45px;
    height: 45px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
}

.header__burger span {
    display: block;
    width: 18px;
    height: 1px;
    margin: 5px auto;
    background: #fff;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


/* HERO */

.hero {
    height: 500vh;
}

.hero__inner {
    position: sticky;
    top: 90px;
    height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(320px, 45vw);
    height: min(430px, 60vh);
    transform: translate(-50%, -50%);
    overflow: hidden;
    border-radius: 24px;
    opacity: 0;
    z-index: 2;
    will-change: transform, opacity, width, height, border-radius;
}

.hero-video video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.hero-video::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-video__overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: none;
}

.hero-video__overlay h2 {
    width: 1000px;
    margin: 0;
    font-size: 50px;
    line-height: 0.85;
    font-weight: 500;
    color: #fff;
}

.hero-video__overlay span {
    margin-top: 4px;
    font-size: 22px;
    letter-spacing: 5px;
    color: rgba(255, 255, 255, 0.6);
}

/* PROJECTS */
.projects {
    height: 400vh;
}

.projects__inner {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.project {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    padding: 0 8vw;
    opacity: 0;
}

.project-2,
.project-4 {
    flex-direction: row-reverse;
}

.project__text span {
    display: block;
    margin-bottom: 25px;
    font-size: 24px;
    letter-spacing: 4px;
    color: #777;
}

.project__text h2 {
    margin: 0;
    font-size: clamp(50px, 7vw, 79px);
    line-height: 0.8;
    letter-spacing: -5px;
    text-align: center;
    font-weight: 500;
}

.project__text p {
    max-width: 740px;
    margin-top: 15px;
    text-align: center;
    font-size: 22px;
    line-height: 1.2;
    color: #777;
}

.project__video {
    width: 48%;
    height: 65vh;
    overflow: hidden;
    border-radius: 20px;
}

.project__video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.projects,
.projects *,
.projects *::before,
.projects *::after {
    box-sizing: border-box;
}

/* WHY US */
.why-us {
    width: 100%;
    padding: 10px 5vw;
    background: #040404;
    color: #fff;
}

.why-us__top {
    display: grid;
    gap: 40px;
    margin-bottom: 30px;
    text-align: center;
    align-content: center;
    align-items: center;
    justify-content: center;
}

.why-us__label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.45);
}

.why-us__label span {
    color: #fff;
}

.why-us__intro {
    max-width: 900px;
}

.why-us__intro h2 {
    margin: 0 0 35px;
    font-size: clamp(50px, 7vw, 110px);
    line-height: 0.92;
    font-weight: 500;
    letter-spacing: -0.06em;
}

.why-us__intro p {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
    color: rgba(255, 255, 255, 0.55);
}

.why-us__list {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.why-us__item {
    position: relative;
    display: grid;
    grid-template-columns: 80px 1fr 50px;
    align-items: center;
    gap: 30px;
    min-height: 150px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    transition:
        padding 0.5s ease,
        background 0.5s ease;
}

.why-us__number {
    align-self: flex-start;
    padding-top: 35px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
}

.why-us__content {
    padding: 35px 0;
}

.why-us__content h3 {
    margin: 0;
    font-size: clamp(24px, 3vw, 42px);
    font-weight: 400;
    letter-spacing: -0.03em;
    transition: transform 0.5s ease;
}

.why-us__content p {
    max-width: 600px;
    max-height: 0;
    overflow: hidden;
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.5);
    opacity: 0;
    transform: translateY(-10px);
    transition:
        max-height 0.5s ease,
        opacity 0.5s ease,
        transform 0.5s ease,
        margin 0.5s ease;
}

.why-us__arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
    transition:
        transform 0.5s ease,
        background 0.5s ease,
        color 0.5s ease;
}

.why-us__item:hover {
    padding-left: 25px;
    padding-right: 25px;
    background: #111;
}

.why-us__item:hover .why-us__content h3 {
    transform: translateX(10px);
}

.why-us__item:hover .why-us__content p {
    max-height: 100px;
    margin-top: 18px;
    opacity: 1;
    transform: translateY(0);
}

.why-us__item:hover .why-us__arrow {
    transform: rotate(45deg);
    background: #fff;
    color: #000;
}

/* SERVICES */
.services {
    position: relative;
    height: 600vh;
    background: #000;
    color: #fff;
    overflow: hidden;
}

.services__sticky {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
}

.services__top {
    position: absolute;
    top: 35px;
    left: 40px;
    right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 20;
}

.services__label {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.55;
}

.services__counter {
    font-size: 11px;
    letter-spacing: 0.12em;
    opacity: 0.5;
}

.services__current {
    color: #fff;
    opacity: 1;
}

.services__slash {
    margin: 0 5px;
    opacity: 0.3;
}

.services__bg-number {
    position: absolute;
    left: -7vw;
    bottom: -18vw;
    font-size: 55vw;
    line-height: 0.7;
    font-weight: 800;
    letter-spacing: -0.08em;
    color: rgba(255, 255, 255, 0.025);
    pointer-events: none;
    user-select: none;
}

.services__content {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns:
        minmax(250px, 1fr)
        minmax(300px, 1.2fr)
        minmax(220px, 0.7fr);
    align-items: center;
    padding: 100px 40px 80px;
}

.services__info {
    position: relative;
    z-index: 10;
    max-width: 500px;
}

.services__number {
    margin-bottom: 10px;
    font-size: 12px;
    letter-spacing: 0.15em;
    opacity: 0.45;
}

.services__category {
    margin-bottom: 15px;
    font-size: 11px;
    letter-spacing: 0.2em;
    opacity: 0.45;
}

.services__title {
    margin: 0;
    font-size: clamp(60px, 8vw, 150px);
    line-height: 0.8;
    letter-spacing: -0.07em;
    font-weight: 700;
}

.services__description {
    max-width: 330px;
    margin-top: 40px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
}

.services__visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services__orb {
    position: relative;
    width: min(32vw, 420px);
    height: min(32vw, 420px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services__orb::before {
    content: "";
    position: absolute;
    inset: 12%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
}

.services__orb::after {
    content: "";
    position: absolute;
    inset: 27%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.services__orb-inner {
    width: 38%;
    height: 38%;
    border-radius: 50%;
    background: #fff;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition:
        border-radius 0.5s ease,
        transform 0.5s ease;
}

.services__orb-text {
    font-size: 9px;
    letter-spacing: 0.18em;
    font-weight: 700;
}

.services__line {
    position: absolute;
    width: 1px;
    height: 70%;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(255, 255, 255, 0.18),
        transparent
    );
}

.services__line--1 {
    left: 20%;
    transform: rotate(25deg);
}

.services__line--2 {
    right: 20%;
    transform: rotate(-25deg);
}

.services__line--3 {
    transform: rotate(90deg);
    width: 70%;
    height: 1px;
}

.services__dot {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
}

.services__dot--1 {
    top: 25%;
    left: 25%;
}

.services__dot--2 {
    right: 22%;
    bottom: 27%;
}

.services__dot--3 {
    top: 35%;
    right: 15%;
}

.services__list {
    position: relative;
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.services__item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 12px 0;
    cursor: default;
    opacity: 0.25;
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

.services__item span {
    font-size: 10px;
    letter-spacing: 0.1em;
}

.services__item strong {
    font-size: 13px;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.services__item.is-active {
    opacity: 1;
    transform: translateX(12px);
}

.services__item.is-active::before {
    content: "";
    position: absolute;
    width: 25px;
    height: 1px;
    margin-left: -40px;
    background: #fff;
}

.services__bottom {
    position: absolute;
    bottom: 35px;
    left: 40px;
    right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 20;
}

.services__bottom span:first-child {
    font-size: 9px;
    letter-spacing: 0.18em;
    opacity: 0.35;
}

.services__arrow {
    font-size: 20px;
    opacity: 0.5;
}

.services__statement {
    position: absolute;
    right: 40px;
    top: 120px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 11px;
    line-height: 1.5;
    text-align: right;
    opacity: 0.25;
}

.services__statement span:last-child {
    opacity: 0.5;
}
/*uslig*/
.uslig {
    position: relative;
    width: 100%;
    height: 400vh;
    background: #000;
    color: #fff;
}

.uslig__sticky {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 35px 5vw;
}

.uslig__visual {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.uslig__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(0.7);
    filter: grayscale(1);
    opacity: 0.35;
    border-radius: 30px;
}

.uslig__overlay {
    position: absolute;
    inset: 0;
    background:
    linear-gradient(to bottom, rgb(7 5 5 / 75%), rgba(17, 17, 17, 0.2) 45%, rgba(0, 0, 0, 0.85));
}

.uslig__top {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.uslig__label {
    color: #fff;
}

.uslig__hint {
    color: rgba(255, 255, 255, 0.45);
}

.uslig__center {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.uslig__title {
    max-width: 1000px;
    margin: 0;
    font-size: clamp(60px, 9vw, 150px);
    line-height: 0.9;
    font-weight: 400;
    letter-spacing: -0.07em;
}

.uslig__title span {
    display: block;
    color: rgba(255, 255, 255, 0.4);
}

.uslig__services {
    position: absolute;
    z-index: 3;
    left: 5vw;
    right: 5vw;
    bottom: 110px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.uslig__service {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    opacity: 0.35;
    transform: translateY(40px);
    transition:
        opacity 0.5s ease,
        transform 0.5s ease;
}

.uslig__service span {
    display: block;
    margin-bottom: 25px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
}

.uslig__service h3 {
    margin: 0 0 10px;
    font-size: 25px;
    font-weight: 400;
}

.uslig__service p {
    max-width: 230px;
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.55);
}

.uslig__bottom {
    position: relative;
    z-index: 4;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.uslig__bottom p {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.5);
}

.uslig__bottom a {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.uslig__bottom a span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition:
        transform 0.4s ease,
        background 0.4s ease,
        color 0.4s ease;
}

.uslig__bottom a:hover span {
    transform: rotate(45deg);
    background: #fff;
    color: #000;
}



/* CONTACT */
.contact {
    position: relative;
    min-height: 50vh;
    padding: 92px 7vw;
    overflow: hidden;
}

.contact__inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr minmax(400px, 520px);
    gap: 60px;
    align-items: center;
}

.contact__glow {
    position: absolute;
    width: 500px;
    height: 300px;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    opacity: 0.35;
}

.contact__glow--1 {
    top: 190px;
    left: 150px;
    background: #5d2cff;
}

.contact__glow--2 {
    right: 100px;
    bottom: 190px;
    background: #5d2cff;
}

.contact__label {
    display: inline-block;
    margin-bottom: 35px;
    font-size: 12px;
    letter-spacing: 4px;
    color: #888;
}

.contact__title {
    max-width: 800px;
    margin: 0;
    font-size: clamp(55px, 7vw, 110px);
    line-height: 0.9;
    letter-spacing: -5px;
    font-weight: 700;
}

/* Заголовок «Давайте начнем сейчас» всегда остаётся одной строкой. */
.contact__title {
    max-width: none;
    white-space: nowrap;
    /* The title shares a column with the form on desktop, so 48px is
       the largest safe size before it can overlap the form. */
    font-size: clamp(18px, 3vw, 48px);
}

.contact__title br {
    display: none;
}

.contact__title span {
    color: transparent;
    -webkit-text-stroke: 1px #fff;
}

.contact__description {
max-width: 450px;
    margin-top: -84px;
    font-size: 13px;
    line-height: 1.6;
    color: #888;
}

.contact__decor {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 70px;
    color: #666;
    font-size: 12px;
    letter-spacing: 2px;
}

.contact__circle {
    position: relative;
    width: 45px;
    height: 45px;
    border: 1px solid #555;
    border-radius: 50%;
}

.contact__circle::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #fff;
}

.contact__form-wrapper {
    position: relative;
    padding: 45px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.4);
}

.contact__field {
    margin-bottom: 30px;
}

.contact__field label {
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
    color: #777;
    letter-spacing: 1px;
}

.contact__field input,
.contact__field textarea {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    outline: none;
    resize: none;
    background: transparent;
    color: #fff;
    font-family: inherit;
    font-size: 17px;
    transition: border-color 0.3s ease;
}

.contact__field input:focus,
.contact__field textarea:focus {
    border-color: #fff;
}

.contact__field input::placeholder,
.contact__field textarea::placeholder {
    color: #555;
}

.contact__button {
    width: 100%;
    margin-top: 15px;
    padding: 22px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    background: #fff;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.contact__button:hover {
    transform: scale(1.03);
    background: #ff1764;
    color: #fff;
}

.contact__arrow {
    font-size: 25px;
    transition: transform 0.3s ease;
}

.contact__button:hover .contact__arrow {
    transform: translateX(8px);
}

.contact__privacy {
    margin-top: 20px;
    color: #555;
    font-size: 11px;
    line-height: 1.5;
}




/* =========================================================
   TITLE
========================================================= */

.title {
    position: absolute;
    max-width: 90vw;

    font-size: clamp(42px, 7vw, 90px);
    line-height: 0.9;
    letter-spacing: clamp(-2px, -0.4vw, -5px);
    font-weight: 500;
    text-align: center;

    white-space: nowrap;
    opacity: 0;
}


/* =========================================================
   SCROLL HINT
========================================================= */

.scroll-hint {
    position: absolute;
    top: 30px;
    left: 50%;
    z-index: 10;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;

    transform: translateX(-50%);
    text-align: center;

    pointer-events: none;
}

.scroll-hint span {
    font-size: 16px;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.5);
}

.scroll-arrow {
    font-size: 38px;
    line-height: 1;
    color: #fff;

    animation: arrowMove 1.5s ease-in-out infinite;
}

@keyframes arrowMove {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(12px);
    }
}


/* =========================================================
   MEDIA CONTAINER
========================================================= */

.media-container {
    position: absolute;

    width: 500px;
    height: 300px;

    overflow: hidden;

    opacity: 0;
    border-radius: 20px;
    background: #040404;
}

.video {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================================================
   VIDEO OVERLAY
========================================================= */

.video-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 40px;

    color: #fff;
    text-align: center;

    background: rgba(0, 0, 0, 0.25);

    opacity: 0;
    pointer-events: none;
}

.video-overlay__label {
    margin-bottom: 15px;

    font-size: 37px;
    letter-spacing: 5px;

    color: rgba(255, 255, 255, 0.6);
}

.video-overlay h2 {
    margin: 0;

    font-size: clamp(45px, 7vw, 75px);
    line-height: 0.85;
    letter-spacing: -4px;
    font-weight: 600;
}

.video-overlay p {
    max-width: 808px;
    margin-top: 18px;

    font-size: 23px;
    color: rgba(255, 255, 255, 0.7);
}


/* =========================================================
   NEXT / GALLERY
========================================================= */

.next {
    min-height: 50vh;
    padding: 10px 0;
    overflow: visible;
}

.next__header {
    padding: 0 7vw;
    margin-bottom: 19px;
    margin-top: -48px;
}

.next__label {
    display: block;

    margin-bottom: 25px;

    font-size: 12px;
    letter-spacing: 4px;

    color: #777;
}

.next__header h2 {
    font-size: clamp(50px, 8vw, 120px);
    line-height: 0.9;
    letter-spacing: -5px;
    font-weight: 500;
    text-align: center;
}

.next__header p {
    margin-top: 30px;

    font-size: 18px;
    color: #777;
}


/* =========================================================
   GALLERY
========================================================= */

.gallery {
    position: relative;

    width: 100%;

    overflow: hidden;
}

.gallery__track {
    display: flex;

    width: max-content;
    gap: 30px;

    padding-left: 7vw;

    --marquee-drag-offset: 0px;
    --gallery-loop-distance: 2250px;
    animation: galleryMarquee 35s linear infinite;

    will-change: transform;
    cursor: grab;
    touch-action: pan-y;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.gallery__track.is-dragging {
    cursor: grabbing;
}

.gallery__item {
    position: relative;

    flex: 0 0 auto;

    width: 420px;
    height: 520px;

    overflow: hidden;

    background: #151515;

    cursor: pointer;
    user-select: none;
}

.gallery__item img {
    position: relative;
    z-index: 1;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    filter: grayscale(100%);

    cursor: zoom-in;
    -webkit-user-drag: none;
    user-select: none;

    transition:
        transform 0.8s ease,
        filter 0.8s ease;
}

.gallery__item::after {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.7),
            transparent 50%
        );
}

.gallery__item span {
    position: absolute;
    left: 25px;
    bottom: 1px;
    z-index: 3;

    font-size: 12px;
    letter-spacing: 2px;

    color: #fff;
}

.gallery__item:hover img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.gallery__track.is-dragging {
    animation-play-state: paused;
}

@keyframes galleryMarquee {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(
            calc(-5 * 420px - 4 * 30px),
            0,
            0
        );
    }
}


/* =========================================================
   SPLIT
========================================================= */

.split-inner {
    position: sticky;
    top: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    height: 100vh;

    overflow: hidden;
}

.split-text {
    position: absolute;
    z-index: 1;

    width: min(600px, 80vw);

    text-align: center;
}

.split-text span {
    display: block;

    margin-bottom: 8px;

    font-size: clamp(18px, 2.2vw, 33px);
    letter-spacing: clamp(2px, 0.35vw, 5px);

    color: #777;
}

.split-text h2 {
    margin: 0;

    font-size: clamp(45px, 6vw, 75px);
    line-height: 0.9;
    letter-spacing: clamp(-3px, -0.35vw, -5px);
    font-weight: 500;
}

.split-text p {
    width: 100%;
    max-width: 400px;

    margin: clamp(20px, 3vw, 30px) auto 0;

    font-size: clamp(14px, 1.4vw, 18px);
    line-height: 1.5;

    color: #777;
}

.split-cube {
    position: absolute;
    z-index: 2;

    width: clamp(180px, 30vw, 400px);
    height: clamp(180px, 30vw, 400px);
}


/* =========================================================
   IMAGE VIEWER
========================================================= */

.image-viewer {
    position: fixed !important;
    inset: 0 !important;
    z-index: 999999 !important;

    display: flex !important;
    align-items: center;
    justify-content: center;

    padding: 40px;

    background: rgba(0, 0, 0, 0.95);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.image-viewer.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.image-viewer__image {
    display: block;

    max-width: 90vw;
    max-height: 90vh;

    width: auto;
    height: auto;

    object-fit: contain;

    border-radius: 10px;

    transform: scale(0.95);

    transition: transform 0.3s ease;
}

.image-viewer.active .image-viewer__image {
    transform: scale(1);
}

.image-viewer__close {
    position: absolute;
    top: 25px;
    right: 30px;
    z-index: 2;

    width: 50px;
    height: 50px;

    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;

    background: transparent;

    color: #fff;

    font-size: 32px;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.image-viewer__close:hover {
    background: #fff;
    color: #000;
}


/* =========================================================
   STORY
========================================================= */

.story {
    position: relative;

    height: 200vh;

    background: #040404;
}

.story__inner {
    position: sticky;
    top: 0;

    height: 100vh;

    overflow: hidden;
}

.story__video-wrapper {
    position: absolute;

    top: 57%;
    left: 54%;

    width: 82vw;
    max-width: 546px;
    height: 78vh;

    transform: translate(-50%, -50%);

    overflow: hidden;

    border-radius: 30px;
}

.story__video {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    transition: opacity .28s ease, transform .35s ease;
}

.story__video.is-changing {
    opacity: 0;
    transform: scale(1.03);
}

.story__video-wrapper::after {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.15) 55%,
            rgba(0, 0, 0, 0.65)
        );
}

.story__content {
    position: absolute;
    inset: 0;

    padding: 70px 7vw;

    opacity: 0;
    pointer-events: none;
}

.story__heading {
    position: absolute;

    top: 122px;
    left: 7vw;

    max-width: 800px;
}

.story__label {
    display: block;

    font-size: 12px;
    letter-spacing: 4px;

    color: rgba(255, 255, 255, 0.5);
}

.story__heading h2 {
    margin: 0;

    font-size: clamp(70px, 9vw, 101px);
    line-height: 0.82;
    letter-spacing: -8px;
    font-weight: 500;
}

.story__heading h2 span {
    color: transparent;
    -webkit-text-stroke: 1px #fff;
}

.story__heading p {
    max-width: 550px;

    margin-top: 35px;

    font-size: 20px;
    line-height: 1.5;

    color: rgba(255, 255, 255, 0.6);
}

.story__heading p span {
    display: block;
}

.story__heading p span + span {
    margin-top: 20px;
}

.story__text[hidden] {
    display: none;
}

.story__cards {
    position: absolute;

    left: 7vw;
    bottom: 60px;

    display: flex;
    gap: 15px;
    pointer-events: auto;
}

.story__card {
    width: 190px;
    min-height: 150px;

    padding: 20px;

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;

    background: rgba(0, 0, 0, 0.35);

    backdrop-filter: blur(15px);
    cursor: pointer;
    transition: background .3s ease, border-color .3s ease, transform .3s ease;
}

.story__card:hover,
.story__card:focus-visible,
.story__card.is-active {
border-color: rgba(255, 255, 255, .8);
    background: rgb(80 80 80 / 18%);
    outline: none;
}

.story__card:hover {
    transform: translateY(-5px);
}

.story__card-number {
    display: block;

    margin-bottom: 20px;

    font-size: 11px;
    letter-spacing: 2px;

    color: #777;
}

.story__card h3 {
    margin: 0;

    font-size: 20px;
    font-weight: 400;
}

.story__card p {
    margin-top: 10px;

    font-size: 13px;
    line-height: 1.4;

    color: #777;
}

.story__cta {
    position: absolute;

    right: 7vw;
    bottom: 60px;

    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;

    pointer-events: auto;
}

.story__cta > span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.story__cta a {
    display: flex;
    align-items: center;
    gap: 30px;

    padding: 18px 25px;

    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;

    color: #fff;
    text-decoration: none;
    font-size: 15px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.story__cta a strong {
    font-size: 20px;
    font-weight: 400;

    transition: transform 0.3s ease;
}

.story__cta a:hover {
    background: #fff;
    color: #000;

    transform: translateY(-3px);
}

.story__cta a:hover strong {
    transform: translate(4px, -4px);
}


/* =========================================================
   FEEDBACK POPUP
========================================================= */

.feedback-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    visibility: hidden;
    opacity: 0;
    pointer-events: none;

    transition:
        opacity 0.4s ease,
        visibility 0.4s ease;
}

.feedback-popup.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.feedback-popup__overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.72);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.feedback-popup__window {
    position: relative;
    z-index: 1;

    width: min(560px, 100%);
    max-height: 90vh;

    overflow-y: auto;

    padding: 50px;

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;

    background: #111;

    box-shadow:
        0 30px 100px rgba(0, 0, 0, 0.5);

    transform: translateY(30px) scale(0.96);

    transition:
        transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.feedback-popup.active .feedback-popup__window {
    transform: translateY(0) scale(1);
}

.feedback-popup__close {
    position: absolute;

    top: 18px;
    right: 20px;

    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;

    background: transparent;

    color: #fff;
    font-size: 28px;

    cursor: pointer;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.feedback-popup__close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.feedback-popup__label {
    display: block;

    margin-bottom: 16px;

    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    opacity: 0.5;
}

.feedback-popup__content h2 {
    margin: 0 0 20px;

    font-size: clamp(32px, 5vw, 58px);
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.feedback-popup__content h2 span {
    display: block;
    opacity: 0.45;
}

.feedback-popup__description {
    max-width: 440px;

    margin: 0 0 35px;

    font-size: 16px;
    line-height: 1.5;

    opacity: 0.65;
}

.feedback-popup__form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.feedback-popup__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feedback-popup__field label {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    opacity: 0.5;
}

.feedback-popup__field input,
.feedback-popup__field textarea {
    box-sizing: border-box;

    width: 100%;

    padding: 15px 0;

    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);

    outline: none;

    background: transparent;

    color: #fff;

    font-family: inherit;
    font-size: 16px;

    resize: vertical;

    transition: border-color 0.3s ease;
}

.feedback-popup__field input:focus,
.feedback-popup__field textarea:focus {
    border-bottom-color: #fff;
}

.feedback-popup__field input::placeholder,
.feedback-popup__field textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.feedback-popup__button {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    margin-top: 8px;
    padding: 18px 20px;

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;

    background: #fff;
    color: #000;

    font-family: inherit;
    font-size: 15px;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.feedback-popup__button:hover {
    transform: translateY(-2px);
    background: #e8e8e8;
}

.feedback-popup__privacy {
    margin: 0;

    font-size: 11px;
    line-height: 1.4;

    opacity: 0.4;
}


/* =========================================================
   PROCESS
========================================================= */

.process {
    position: relative;

    height: 500vh;

    background: #050505;
}

.process__sticky {
    position: sticky;
    top: 0;

    height: 100vh;

    overflow: hidden;
}

.process__timeline {
    position: absolute;

    top: 15%;
    left: 50%;

    width: 2px;
    height: 70%;

    transform: translateX(-50%);
}

.process__line {
    position: absolute;
    inset: 0;

    background: rgba(255, 255, 255, 0.12);
}

.process__line-progress {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 0%;

    background: #fff;

    transform-origin: top;
}

.process__point {
    position: absolute;
    left: 50%;

    width: 10px;
    height: 10px;

    transform: translateX(-50%);

    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;

    background: #050505;
}

.process__point--1 {
    top: 0;
}

.process__point--2 {
    top: 33.33%;
}

.process__point--3 {
    top: 66.66%;
}

.process__point--4 {
    top: 100%;
}


/* =========================================================
   SAFE AREA
========================================================= */

@supports (padding: env(safe-area-inset-bottom)) {
    .header__inner {
        padding-left: max(15px, env(safe-area-inset-left));
        padding-right: max(15px, env(safe-area-inset-right));
    }

    .footer {
        padding-bottom: max(25px, env(safe-area-inset-bottom));
    }
}


/* =========================================================
   VISUAL SECTION — TOP
========================================================= */

.visual-section__top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;

    margin-bottom: 20px;

    color: #fff;
}

.visual-section__label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.16em;

    color: rgba(255, 255, 255, 0.45);
}

.visual-section__hint {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.5);
}

.visual-section__hint span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 24px;
    height: 24px;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;

    font-size: 12px;

    color: rgba(255, 255, 255, 0.8);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.visual-section__hint:hover span {
    transform: translateY(3px);

    border-color: rgba(255, 255, 255, 0.45);
}


/* =========================================================
   VISUAL SECTION
========================================================= */

.visual-section__visual {
    position: relative;

    width: 100%;
    height: 1100px;

    margin-top: 0;

    overflow: hidden;

    background: #080808;

    border: 1px solid rgba(255, 255, 255, 0.08);

    isolation: isolate;

    transition:
        width 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
        height 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
        margin 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
        border-color 0.4s ease;
}

.visual-section__media {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;

    z-index: 1;
}

.visual-section__media img,
.visual-section__media video,
.visual-media,
.visual-video {
    position: absolute;
    inset: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0;

    filter:
        brightness(0.68)
        contrast(1.08)
        saturate(0.85);

    transition:
        opacity 0.55s ease,
        transform 1.2s cubic-bezier(0.22, 0.61, 0.36, 1),
        filter 0.5s ease;
}

.visual-media,
.visual-video {
    z-index: 1;

    transition:
        opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.visual-video {
    pointer-events: none;
}

.visual-video--01 {
    z-index: 2;
}

.visual-video--02 {
    z-index: 3;
}

.visual-section__media img.is-visible,
.visual-section__media video.is-visible,
.visual-media.is-visible,
.visual-video.is-visible {
    opacity: 1;
}

.visual-section__visual:hover
.visual-section__media img.is-visible,
.visual-section__visual:hover
.visual-section__media video.is-visible {
    transform: scale(1.06);
}

.visual-section__visual::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.28) 42%,
            rgba(0, 0, 0, 0.5) 100%
        );
}

.visual-section__visual::after {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.82) 0%,
            rgba(0, 0, 0, 0.08) 48%,
            rgba(0, 0, 0, 0.15) 100%
        );
}

.visual-section__overlay {
    position: absolute;
    inset: 0;
    z-index: 3;

    pointer-events: none;

    background:
        radial-gradient(
            circle at center,
            transparent 15%,
            rgba(0, 0, 0, 0.12) 100%
        );
}


/* =========================================================
   VISUAL CONTENT
========================================================= */

.visual-section__content {
    position: absolute;
    inset: 0;
    z-index: 5;

    pointer-events: none;
}

.visual-section__side-text,
.visual-section__center-text {
    position: absolute;

    max-width: 40%;
    width: max-content;

    color: #fff;

    transition:
        top 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        right 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        bottom 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        left 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.45s ease;
}
/*
.visual-section__side-text {
  /  width: 300px;
}
*/
.visual-section__side-text.is-changing,
.visual-section__center-text.is-changing {
    opacity: 0;

    transform: translateY(12px);
}

.visual-section__side-number {
    position: relative;
    
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: none;
    color: rgba(255, 255, 255, 0.55);
}

.visual-section__side-number::before {
    content: "";
    
    width: 28px;
    height: 1px;

    background: rgba(255, 255, 255, 0.5);
}

.visual-section__side-text h2 {
    margin: 0 0 15px;

    font-size: clamp(38px, 4vw, 68px);
    line-height: 0.88;
    letter-spacing: -0.055em;
    font-weight: 400;

    color: #fff;

    text-wrap: balance;
}

.visual-section__side-text p {
    max-width: 350px;

    margin: 0;

    font-size: 20px;


    color: rgba(255, 255, 255, 0.62);
}

.visual-section__center-text {
    width: 420px;

    text-align: center;
}

.visual-section__center-text span {
    display: block;

    margin-bottom: 15px;

    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.5);
}

.visual-section__center-text h2 {
    margin: 0;

    font-size: clamp(30px, 3.5vw, 52px);
    line-height: 0.94;
    letter-spacing: -0.055em;
    font-weight: 300;

    text-wrap: balance;
}


/* =========================================================
   VISUAL — FULLSCREEN
========================================================= */

.visual-section__visual.visual--fullscreen {
    width: 100vw;
    height: 90vh;

    margin-left: calc(51% - 51vw);
    margin-top: 0;

    border-left: 0;
    border-right: 0;
}

.visual-section__visual.visual--fullscreen
.visual-section__media img.is-visible,
.visual-section__visual.visual--fullscreen
.visual-section__media video.is-visible {
    filter:
        brightness(0.62)
        contrast(1.1)
        saturate(0.85);
}


/* =========================================================
   VISUAL LAYOUTS
========================================================= */

/* Layout 01 */

.visual-layout--01 .visual-section__side-text {
    left: 6%;
    top: 50%;

    transform: translateY(-50%);

    text-align: left;
}

.visual-layout--01 .visual-section__center-text {
    right: 5%;
    top: 82%;

    text-align: right;
}


/* Layout 02 */

.visual-layout--02 .visual-section__side-text {
    right: 6%;
    bottom: 12%;
    left: auto;
    top: auto;

    transform: none;

    text-align: right;
}

.visual-layout--02 .visual-section__center-text {
    left: 7%;
    top: 18%;

    right: auto;

    text-align: left;
}


/* Layout 03 */

.visual-layout--03 .visual-section__side-text {
    left: 50%;
    top: 13%;

    transform: translateX(-50%);

    text-align: center;
}

.visual-layout--03 .visual-section__center-text {
    left: 50%;
    bottom: 4%;
    top: auto;
    right: auto;
    transform: translateX(-50%);
    text-align: center;
}


/* Layout 04 */

.visual-layout--04 .visual-section__side-text {
    left: 7%;
    bottom: 12%;

    top: auto;
    right: auto;

    transform: none;

    text-align: left;
}

.visual-layout--04 .visual-section__center-text {
    right: 7%;
    top: 16%;

    left: auto;

    text-align: right;
}


/* Layout 05 */

.visual-layout--05 .visual-section__side-text {
    left: 50%;
    top: 17%;
    display: none;
    transform: translate(-50%, -50%);

    text-align: center;
}

.visual-layout--05 .visual-section__center-text {
    left: 50%;
    top: 50%;

    right: auto;
    bottom: auto;

    transform: translate(-50%, -50%);

    text-align: center;
}


/* =========================================================
   VISUAL NAVIGATION / CARDS
========================================================= */

.visual-section__navigation {
    position: relative;
    z-index: 6;

    width: 100%;
}

.visual-section__cards {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 11px;
}

.visual-card {
    position: relative;

    display: block;

    width: 180px;
    min-height: 115px;

    padding: 16px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.13);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.09),
            rgba(255, 255, 255, 0.025)
        );

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    color: #fff;
    text-align: left;

    cursor: pointer;

    transition:
        transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
        background 0.4s ease,
        border-color 0.4s ease,
        opacity 0.4s ease;
}

.visual-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.55),
            transparent
        );

    opacity: 0;

    transition: opacity 0.4s ease;
}

.visual-card:hover {
    transform: translateY(-7px);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.14),
            rgba(255, 255, 255, 0.04)
        );

    border-color: rgba(255, 255, 255, 0.28);
}

.visual-card.is-active {
    transform: translateY(-7px);



}

.visual-card.is-active::before {
    opacity: 1;
}

.visual-card__number {
    display: block;

    margin-bottom: 12px;

    font-size: 9px;
    letter-spacing: 0.12em;

    color: rgba(255, 255, 255, 0.4);
}

.visual-card h3 {
    margin: 0 0 7px;

    font-size: 17px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 400;
}

.visual-card p {
    margin: 0;

    font-size: 12px;
    line-height: 1.5;

    color: rgba(255, 255, 255, 0.55);
}


/* =========================================================
   TRANSFORMATION
========================================================= */

.transformation {
    position: relative;

    width: 100%;

    padding: 60px 0;

    overflow: hidden;
}

.transformation__inner {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
}

.transformation__visual {
    position: relative;

    width: min(760px, 70vw);
}

.transformation__media {
    position: relative;

    width: 100%;
    aspect-ratio: 7 / 5;

    overflow: hidden;
}

.transformation__image {
    position: relative;

    width: 100%;
    aspect-ratio: 7 / 5;

    overflow: hidden;
    cursor: zoom-in;
}

.transformation__img,
.transformation__video {
    position: absolute;
    inset: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    opacity: 0;
    visibility: hidden;

    transform: scale(1.04);

    transition:
        opacity 0.5s ease,
        visibility 0.35s ease,
        transform 0.8s ease;

    pointer-events: none;
}

.transformation__img.active,
.transformation__video.active {
    opacity: 1;
    visibility: visible;

    transform: scale(1);
}

.transformation__video {
    z-index: 2;
}

.transformation__expand {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 100px;
    background: rgba(0, 0, 0, .5);
    color: #fff;
    font: inherit;
    font-size: 12px;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.transformation__expand b {
    font-size: 17px;
    font-weight: 400;
}

.transformation-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    padding: 30px;
    background: rgba(0, 0, 0, .9);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}

.transformation-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.transformation-modal__content {
    width: min(1200px, 100%);
    max-height: 100%;
}

.transformation-modal__content img,
.transformation-modal__content video {
    display: block;
    width: 100%;
    max-height: calc(100vh - 60px);
    object-fit: contain;
}

.transformation-modal__close {
    position: absolute;
    top: 18px;
    right: 20px;
    z-index: 1;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    background: rgba(0, 0, 0, .35);
    color: #fff;
    font-size: 30px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
}

@media (max-width: 600px) {
    .transformation__expand span {
        display: none;
    }

    .transformation__expand {
        width: 38px;
        height: 38px;
        justify-content: center;
        padding: 0;
    }

    .transformation-modal {
        padding: 16px;
    }
}

.transformation__content {
    position: relative;
    padding: 0 0 20px;
}

.transformation__number {
    display: block;

    margin-bottom: 12px;

    font-size: 11px;
    letter-spacing: 0.12em;

    opacity: 0.4;
}

.transformation__title {
    margin: 0 0 10px;

    text-align: center;

    opacity: 0;

    transform: translateY(8px);

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}

.transformation__title.active {
    opacity: 1;
    transform: translateY(0);
}

.transformation__text {
    margin: 0;

    text-align: center;
    line-height: 1.6;

    opacity: 0;

    transform: translateY(8px);

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}

.transformation__text.active {
    opacity: 0.6;
    transform: translateY(0);
}


/* =========================================================
   TRANSFORMATION DOTS
========================================================= */

.transformation__dots {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 14px;
    margin-top: 16px;
    margin-bottom: 0;
    z-index: 10;
}

.transformation__inner {
    padding-bottom: 48px;
}

.transformation__dot {
    width: 12px;
    height: 12px;

    padding: 0;

    border: 0;
    border-radius: 50%;

    opacity: 0.2;

    cursor: pointer;

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.transformation__dot:hover {
    opacity: 0.6;

    transform: scale(1.3);
}

.transformation__dot.active {
    opacity: 1;

    transform: scale(1.4);
}


/* =========================================================
   REVIEWS
========================================================= */

.reviews {
    width: 100%;

    padding: 10px 0;

    overflow: hidden;
}

.reviews__top {
    display: flex;
    align-items: flex-start;
    justify-content: center;

    margin-bottom: 10px;
}

.reviews__label {
    font-size: 13px;
}

.reviews__hint {
    display: flex;
    align-items: center;
    gap: 12px;

    font-size: 14px;
}

.reviews__hint span:last-child {
    font-size: 20px;
}

.reviews__layout {
    display: grid;

    grid-template-columns:
        minmax(280px, 0.8fr)
        minmax(500px, 1.2fr);

    gap: 100px;

    align-items: center;

    max-width: 1250px;

    margin: 0 auto;
}

.reviews__intro {
    display: flex;
    flex-direction: column;

    min-height: 620px;

    justify-content: center;

    overflow: hidden;
}

.reviews__eyebrow {
    display: inline-block;
    width: fit-content;
    margin-bottom: 28px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color:white;
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.7s ease,
        transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reviews__intro h2 {
    margin: 0;

    font-size: clamp(42px, 5vw, 72px);
    line-height: 0.92;
    letter-spacing: -4px;
    font-weight: 500;
}

.reviews__title {
    overflow: hidden;
}

.reviews__title-line {
    display: block;

    opacity: 0;

    transform: translateY(110%);

    transition:
        opacity 0.9s ease,
        transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reviews__intro.is-visible .reviews__eyebrow {
    opacity: 1;

    transform: translateY(0);
}

.reviews__intro.is-visible .reviews__title-line {
    opacity: 1;

    transform: translateY(0);
}

.reviews__intro.is-visible
.reviews__title-line:nth-child(1) {
    transition-delay: 0.42s;
}

.reviews__intro.is-visible
.reviews__title-line:nth-child(2) {
    transition-delay: 0.55s;
}

.reviews__intro > p {
    max-width: 390px;

    margin: 35px 0 0;

    font-size: 17px;
    line-height: 1.55;

    color: #777;

    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 1s cubic-bezier(0.16, 1, 0.3, 1);

    transition-delay: 0.4s;
}

.reviews__intro.is-visible > p {
    opacity: 1;

    transform: translateY(0);
}

.reviews__intro-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: auto;

    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);

    transition-delay: 1s;
}

.reviews__intro.is-visible
.reviews__intro-bottom {
    opacity: 1;

    transform: translateY(0);
}

.reviews__small {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.reviews__arrow {
    display: inline-block;

    font-size: 18px;

    opacity: 0;

    transform:
        translate(-20px, -20px)
        rotate(-20deg);

    transition:
        opacity 0.5s ease,
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);

    transition-delay: 0.75s;
}

.reviews__intro.is-visible
.reviews__arrow {
    opacity: 1;

    transform: translate(-2px, -2px) rotate(287deg);
}


/* =========================================================
   REVIEWS CHAT
========================================================= */

.reviews__chat {
    width: 100%;
    min-width: 0;
}

.reviews__slider {
    position: relative;

    width: 100%;

    overflow: hidden;

    border-radius: 20px;

    touch-action: pan-y;
}

.reviews__track {
    display: flex;

    width: 100%;

    transition:
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);

    will-change: transform;
}

.telegram {
    position: relative;

    flex: 0 0 100%;

    width: 100%;
    min-height: 620px;

    overflow: hidden;

    border-radius: 20px;

    color: #000;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.1);
}

.telegram__header {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 12px;

    height: 72px;

    padding: 0 20px;

    background: #212121;

    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.telegram__avatar {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 43px;
    height: 43px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #777;

    color: #fff;

    font-size: 17px;
}

.telegram__user {
    display: flex;
    flex-direction: column;
    gap: 4px;

    line-height: 1;
}

.telegram__user strong {
    font-size: 14px;
    color: #f5f1f1;
}

.telegram__user span {
    font-size: 11px;
    color: #8b8b8b;
}

.telegram__dots {
    margin-left: auto;

    font-size: 17px;
    letter-spacing: 2px;

    color: #888;

    transform: rotate(90deg);
}

.telegram__body {
    position: relative;

    min-height: calc(620px - 72px);

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    gap: 12px;

    padding: 35px 25px;

    background-image:
        radial-gradient(
            rgba(0, 0, 0, 0.035) 1px,
            transparent 1px
        ),
        url("../images/telegram-bg.webp");

    background-size:
        16px 16px,
        cover;

    background-position:
        center,
        center;

    background-repeat:
        repeat,
        no-repeat;
}

.telegram__date {
    align-self: center;

    margin-bottom: 12px;

    padding: 6px 12px;

    border-radius: 12px;

    background: rgba(80, 80, 80, 0.45);

    color: #fff;

    font-size: 10px;

    backdrop-filter: blur(5px);
}

.telegram__message {
    position: relative;

    max-width: 68%;

    padding: 12px 12px 8px;

    border-radius: 11px;

    color: #fff;

    font-size: 15px;
    line-height: 1.4;

    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.08);

    opacity: 0;

    transform:
        translateY(14px)
        scale(0.96);

    transform-origin: bottom;

    transition:
        opacity 0.35s ease,
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.telegram__message p {
    margin: 0;

    padding-right: 40px;
}

.telegram__message.is-visible {
    opacity: 1;

    transform:
        translateY(0)
        scale(1);
}

.telegram__message_client {
    align-self: flex-start;

    background: #212121;

    border-bottom-left-radius: 3px;
}

.telegram__message_studio {
    align-self: flex-end;

    background: #7964dd;

    border-bottom-right-radius: 3px;
}

.telegram__message_studio::after {
    content: "";

    position: absolute;

    right: -7px;
    bottom: 0;

    width: 11px;
    height: 11px;

    background: #7964dd;

    clip-path:
        polygon(
            0 0,
            100% 100%,
            0 100%
        );
}

.telegram__time {
    position: absolute;

    right: 9px;
    bottom: 5px;

    font-size: 9px;

    color: #8a8a8a;

    white-space: nowrap;
}

.telegram__time b {
    margin-left: 2px;

    font-size: 10px;
    font-weight: 400;

    color: #42a5f5;
}


/* =========================================================
   TELEGRAM TYPING
========================================================= */

.telegram__status {
    transition: opacity 0.2s ease;
}

.telegram__status.is-typing {
    color: #3390ec;
}

.telegram__typing {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.telegram__typing span {
    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: #3390ec;

    animation:
        telegramTyping 1s infinite ease-in-out;
}

.telegram__typing span:nth-child(2) {
    animation-delay: 0.15s;
}

.telegram__typing span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes telegramTyping {
    0%,
    60%,
    100% {
        opacity: 0.3;
        transform: translateY(0);
    }

    30% {
        opacity: 1;
        transform: translateY(-2px);
    }
}


/* =========================================================
   REVIEWS BOTTOM
========================================================= */

.reviews__bottom {
    max-width: 760px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin: 22px auto 0;
}

.reviews__counter {
    display: flex;
    gap: 5px;

    font-size: 13px;
}

.reviews__next {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 50%;

    background: transparent;

    color: #000;

    font-size: 21px;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.reviews__next:hover {
    background: #111;
    color: #fff;

    transform: translate(3px, -3px);
}


/* =========================================================
   POLICY
========================================================= */

.POLICY {
    color: #fff;
}


/* FOOTER */
.footer {
    position: relative;
    overflow: hidden;
    padding: 1px 5vw 30px;
    color: #fff;
}
.footer__top {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}
.footer__brand {
    max-width: 650px;
}
.footer__label {
    display: block;
    margin-bottom: 35px;
    font-size: 11px;
    letter-spacing: 0.25em;
    opacity: 0.45;
}
.footer__brand h2 {
    margin: 0;
    font-size: clamp(45px, 6vw, 69px);
    line-height: 0.95;
    font-weight: 400;
    letter-spacing: -0.05em;
}
.footer__brand h2 span {
    display: inline-block;
    font-style: italic;
    opacity: 0.5;
}
.footer__navigation {
    display: flex;
    gap: 80px;
    padding-top: 10px;
}
.footer__column {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 130px;
}
.footer__title {

    font-size: 10px;
    letter-spacing: 0.2em;
    opacity: 0.35;
}
.footer__column a,
.footer__column span {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}
.footer__column a {
    opacity: 0.65;
    transition: opacity 0.3s ease;
}
.footer__column a:hover {
    opacity: 1;
}
.footer__marquee {
    width: 100%;
    overflow: hidden;
    margin-top: 150px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer__marquee-track {
    display: flex;
    width: max-content;
    animation: footerMarquee 20s linear infinite;
}
.footer__marquee-track span {
    flex-shrink: 0;
    padding: 35px 40px;
    font-size: clamp(45px, 7vw, 110px);
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.05em;
}
@keyframes footerMarquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-33.333%);
    }
}
.footer__bottom {
    display: flex;
    align-items: center;
    gap: 35px;
    max-width: 1400px;
    margin: 30px auto 0;
    font-size: 10px;
    letter-spacing: 0.12em;
    opacity: 0.4;
}
.footer__bottom a {
    color: #fff;
    text-decoration: none;
}
.footer__up {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
}
.footer__up:hover {
    opacity: 1;
    transform: translateY(-5px);
}
/* ==================================================
   RESPONSIVE
================================================== */


/* ==================================================
   CONTAINER
================================================== */

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}


/* ==================================================
   MAX-WIDTH: 1920px
================================================== */

@media (max-width: 1920px) {

    .visual-section__visual.visual--fullscreen {
        width: 100vw;
        height: 100svh;
        min-height: 560px;
        margin-left: calc(50% - 50vw);
        margin-top: 0;
    }

}


/* ==================================================
   MAX-WIDTH: 1500px
================================================== */

@media (max-width: 1500px) {
    .contact__description  {
        display: none;
    }
    .reviews__layout {
        gap: 50px;
    }

}


/* ==================================================
   MAX-WIDTH: 1376px
================================================== */

@media (max-width: 1376px) {

    .story__cta > span {
        display: none;
    }

}


/* ==================================================
   MAX-WIDTH: 1300px
================================================== */

@media (max-width: 1300px) {

    .reviews__layout {
        gap: 50px;
        max-width: 1000px;
    }

    .story__cta {
        display: none;
    }

}



/* ==================================================
   MAX-WIDTH: 1200px
   ================================================== */

@media (max-width: 1200px) {

    /* ----------------------------------------------
       PROJECT
    ---------------------------------------------- */

    .project {
        gap: 50px;
        padding-left: 5vw;
        padding-right: 5vw;
    }

    .project__text {
        flex: 1;
        min-width: 0;
    }

    .project__video {
        width: 45%;
        height: 58vh;
        flex-shrink: 0;
    }

    .project__text h2 {
        font-size: clamp(45px, 6vw, 70px);
        letter-spacing: -4px;
    }

    .project__text p {
        max-width: 600px;
        font-size: 16px;
    }


    /* ----------------------------------------------
       SERVICES
    ---------------------------------------------- */

    .services__content {
        padding-left: 30px;
        padding-right: 30px;
    }


    /* ----------------------------------------------
       STORY
    ---------------------------------------------- */

    .story__video-wrapper {
        width: 50vw;
        max-width: 520px;
        height: 70vh;
    }

    .story__heading {
        left: 5vw;
    }

    .story__cards {
        left: 5vw;
    }

    .story__cta {
        right: 5vw;
    }
}


/* ==================================================
   MAX-WIDTH: 1100px
   ================================================== */

@media (max-width: 1100px) {

    /* ----------------------------------------------
       HEADER
    ---------------------------------------------- */

    .header {
        height: 80px;
    }

    .header__nav {
        gap: 22px;
    }

    .header__link {
        font-size: 17px;
    }

    .header__button {
        margin-left: 10px;
        padding: 10px 15px;
        font-size: 14px;
        
    }


    /* ----------------------------------------------
       HERO
    ---------------------------------------------- */

    .hero__inner {
        top: 80px;
        height: calc(100vh - 80px);
    }


    /* ----------------------------------------------
       VISUAL SECTION
    ---------------------------------------------- */

    .visual-section__content {
        padding: 45px;
    }

    .visual-section__side-text {
        width: 240px;
    }

    .visual-section__center-text {
        width: 350px;
    }

    .visual-card {
        width: 160px;
    }


    /* ----------------------------------------------
       HERO / TITLE
    ---------------------------------------------- */

    .title {
        font-size: clamp(50px, 8vw, 75px);
        max-width: 92vw;
    }

    .split-text {
        width: min(600px, 82vw);
    }

    .split-cube {
        width: clamp(200px, 38vw, 330px);
        height: clamp(200px, 38vw, 330px);
    }
}


/* ==================================================
   MAX-WIDTH: 1000px
   ================================================== */

@media (max-width: 1000px) {

    .headr {    margin-top: 24px;}
    .header__button {
    display: none;;
        
    }

    /* ----------------------------------------------
       CONTACT
    ---------------------------------------------- */

    .contact {
        padding: 1px 25px;
    }

    .contact__inner {
        grid-template-columns: 1fr;
        gap: 1px;
    }

    .contact__content {
        text-align: center;
    }

    .contact__title {
        max-width: 100%;
        letter-spacing: -3px;
        margin-left: 130px;
        margin-top: -63px;
        font-size: clamp(55px, 5vw, 110px);
    }

    .contact__description {
        max-width: 100%;
        font-size: 16px;
    }

    .contact__decor {
        margin-top: 20px;
    }

    .contact__form-wrapper {
        padding: 30px;
    }


    /* ----------------------------------------------
       STORY
    ---------------------------------------------- */

    .story {
        height: 300vh;
    }


    /* ----------------------------------------------
       REVIEWS
    ---------------------------------------------- */

    .reviews {
        padding: 1px 0;
    }

    .reviews__layout {
        grid-template-columns: 1fr 1.2fr;
        margin: 22px;
        gap: 10px;
    }

    .reviews__intro h2 {
        font-size: clamp(38px, 5vw, 60px);
        letter-spacing: -3px;
    }

    .reviews__intro p {
        font-size: 14px;
    }

    .telegram {
        min-height: 560px;
    }

    .telegram__body {
        min-height: calc(560px - 72px);
    }
    .disp {
        display: none;
    }
    .next {

    padding: 10px 0;

}
.next__header {
    margin-top: 1px;
}

}




/* ==================================================
   MAX-WIDTH: 901px
   ================================================== */

@media (max-width: 901px) {



        .contact__title {
        font-size: clamp(45px, 5vw, 110px);
        margin-left: 6%;
    }}
/* ==================================================
   MAX-WIDTH: 900px
   ================================================== */

@media (max-width: 900px) {

    /* ----------------------------------------------
       HEADER
    ---------------------------------------------- */

    .header {
        height: 75px;
    }

    .header__inner {
        justify-content: center;
        padding-left: 20px;
        padding-right: 20px;
    }

    .header__logo {
        gap: 0;
    }

    .header__logo-text {
        display: block;
        margin-left: 33px;
        margin-right: 33px;
        text-align: center;
    }

    .header__button {
        display: none;
    }

    .header__burger {
        display: block;
    }

    .header__nav {
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        padding: 30px 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition:
            opacity 0.3s ease,
            visibility 0.3s ease,
            transform 0.3s ease;
    }

    .header__nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .header__link {
        font-size: 24px;
    }

    .header__burger.active span:first-child {
        transform: translateY(3px) rotate(45deg);
    }

    .header__burger.active span:last-child {
        transform: translateY(-3px) rotate(-45deg);
    }


    /* ----------------------------------------------
       SERVICES
    ---------------------------------------------- */

    .services {
        height: 550vh;
    }

    .services__content {
        grid-template-columns: 1fr 1fr;
        padding: 100px 25px 70px;
    }

    .services__info {
        align-self: center;
    }

    .services__visual {
        position: absolute;
        inset: 0;
        opacity: 0.35;
        pointer-events: none;
    }

    .services__orb {
        width: 55vw;
        height: 55vw;
    }

    .services__list {
        position: absolute;
        left: 25px;
        bottom: 100px;
    }

    .services__statement {
        right: 25px;
    }

    .services__top {
        left: 25px;
        right: 25px;
    }

    .services__bottom {
        left: 25px;
        right: 25px;
    }


    /* ----------------------------------------------
       STORY
    ---------------------------------------------- */

    .story__video-wrapper {
        top: 50%;
        left: 50%;
        width: 75vw;
        max-width: 600px;
        height: 80vh;
    }

    .story__heading {
        top: 100px;
        left: 30px;
        right: 30px;
    }

    .story__heading h2 {
        font-size: clamp(55px, 10vw, 85px);
    }

    .story__heading p {
        max-width: 900px;
    }

    .story__cards {
        left: 30px;
        right: 30px;
    }

    .story__cta {
        right: 30px;
    }

}


/* ==================================================
   MAX-WIDTH: 800px
   ================================================== */

@media (max-width: 800px) {

    .reviews {
        padding: 100px 0;
    }

    .telegram {
        min-height: 560px;
    }

    .telegram__body {
        min-height: calc(560px - 72px);
    }

    .telegram__message {
        max-width: 75%;
    }
}


/* ==================================================
   MAX-WIDTH: 768px
   ================================================== */

@media (max-width: 768px) {

    /* ----------------------------------------------
       HERO VIDEO
    ---------------------------------------------- */

    .hero-video {
        width: 180px;
        height: 260px;
        border-radius: 18px;
    }

    .hero-video__overlay h2 {
        font-size: clamp(35px, 12vw, 60px);
        letter-spacing: -3px;
    }

    .hero-video__overlay span {
        font-size: 9px;
        letter-spacing: 3px;
    }


    /* ----------------------------------------------
       USLIG
    ---------------------------------------------- */

    .uslig {
        height: auto;
    }

    .uslig__sticky {
        position: relative;
        min-height: 100vh;
        height: auto;
        padding: 25px 20px 35px;
    }

    .uslig__visual img {
        transform: scale(1);
        border-radius: 0;
    }

    .uslig__hint {
        display: none;
    }

    .uslig__center {
        min-height: 50vh;
        justify-content: flex-start;
        text-align: left;
    }

    .uslig__title {
        text-align: center;
        font-size: 16vw;
    }

    .uslig__services {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-top: 30px;
    }

    .uslig__service {
        opacity: 1;
        transform: none;
    }

    .uslig__service h3 {
        font-size: 20px;
    }

    .uslig__service p {
        font-size: 12px;
    }

    .uslig__bottom {
        margin-top: 60px;
    }


    /* ----------------------------------------------
       PROJECTS
    ---------------------------------------------- */

    .project,
    .project-2,
    .project-4 {
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        padding: 30px;
    }

    .project__text {
        width: 100%;
        flex: none;
    }

    .project__video {
        width: 100%;
       
    }

    .project__text h2 {
        font-size: 39px;
    }


    /* ----------------------------------------------
       WHY US
    ---------------------------------------------- */

    .why-us {
        padding: 10px;
    }

    .why-us__top {
        display: block;
        margin-bottom: 10px;
    }

    .why-us__label {
        margin-bottom: 45px;
    }

    .why-us__intro h2 {
        margin-bottom: 25px;
        font-size: clamp(48px, 14vw, 80px);
    }

    .why-us__intro p {
        font-size: 17px;
    }

    .why-us__item {
        grid-template-columns: 40px 1fr 35px;
        gap: 15px;
        min-height: 120px;
    }

    .why-us__number {
        padding-top: 30px;
    }

    .why-us__content {
        padding: 30px 0;
    }

    .why-us__content h3 {
        font-size: 24px;
    }

    .why-us__content p {
        max-height: 150px;
        margin-top: 12px;
        font-size: 14px;
        opacity: 1;
        transform: none;
    }

    .why-us__arrow {
        display: none;
    }

    .why-us__item:hover {
        padding-left: 0;
        padding-right: 0;
        background: none;
    }

    .why-us__item:hover .why-us__content h3 {
        transform: none;
    }


    /* ----------------------------------------------
       FOOTER
    ---------------------------------------------- */

    .footer {
        padding: 20px 20px 25px;
    }

    .footer__top {
        flex-direction: column;
        gap: 20px;
    }

    .footer__navigation {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 45px 25px;
    }

    .footer__marquee {
        margin-top: 90px;
    }

    .footer__marquee-track span {
        padding: 25px;
    }

    .footer__bottom {
        flex-wrap: wrap;
        gap: 15px;
    }

    .footer__up {
        display: none;
    }


    /* ----------------------------------------------
       GALLERY
    ---------------------------------------------- */

    .gallery__track {
        gap: 15px;
        animation-duration: 28s;
    }

    .gallery__item {
        width: 280px;
        height: 300px;
    }

    .gallery__item img {
        height: 380px;
    }


    /* ----------------------------------------------
       STORY
    ---------------------------------------------- */

    .story {
        height: 450vh;
    }

    .story__content {
        padding: 30px 20px;
    }

    .story__heading {
        left: 20px;
        right: 20px;
        text-align: center;
    }

    .story__heading h2 {
        font-size: clamp(55px, 16vw, 90px);
        letter-spacing: -5px;
    }

    .story__heading p {
        max-width: 100%;
        font-size: 17px;
        text-align: center;
    }

    .story__card {
        width: auto;
        flex: 1;
        min-height: 210px;
        padding: 13px;
    }

    .story__card-number {
        margin-bottom: 10px;
    }

    .story__card h3 {
        font-size: 15px;
    }

    .story__cards {
        left: 20px;
        right: 20px;
        bottom: 30px;
        gap: 8px;
    }

    .story__cta {
        right: 20px;
        bottom: 170px;
    }

    .story__cta a {
        padding: 14px 18px;
    }


    /* ----------------------------------------------
       REVIEWS
    ---------------------------------------------- */

    .reviews {
        padding: 10px 0;
    }
.reviews__eyebrow {display: none;}
    .reviews__top {
        display: none;
    }

    .reviews__layout {
        display: flex;
        flex-direction: column;
        gap: 25px;
        align-items: stretch;
    }

    .reviews__intro {
        min-height: auto;
        justify-content: flex-start;
    }



    .reviews__intro h2 {
        text-align: center;
        font-size: clamp(42px, 12vw, 60px);
        letter-spacing: -3px;
    }

    .reviews__intro p {
        max-width: 100%;
        text-align: center;
        margin-top: 25px;
        font-size: 14px;
    }

    .reviews__intro-bottom {
        display: none;
    }

    .reviews__slider {
        max-width: 100%;
        border-radius: 15px;
    }

    .reviews__hint {
        font-size: 12px;
    }

    .telegram {
        min-height: 560px;
        border-radius: 15px;
    }

    .telegram__header {
        height: 64px;
        padding: 0 15px;
    }

    .telegram__avatar {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .telegram__body {
        min-height: calc(560px - 72px);
        padding: 25px 15px;
    }

    .telegram__message {
        max-width: 75%;
        font-size: 13px;
    }

    .reviews__bottom {
        margin-top: 20px;
    }

    .reviews__next {
        width: 42px;
        height: 42px;
    }


    /* ----------------------------------------------
       TRANSFORMATION
    ---------------------------------------------- */

    .transformation {
        padding: 100px 0;
    }

    .transformation__visual {
        width: calc(100% - 70px);
    }

    .transformation__dots {
        gap: 16px;
    }

    .transformation__dots_left {
        left: 5px;
    }

    .transformation__dots_right {
        right: 5px;
    }

    .transformation__dot {
        width: 7px;
        height: 7px;
    }

    .transformation__content {
        padding-top: 20px;
    }

    .transformation__title {
        font-size: 28px;
    }

    .transformation__text {
        font-size: 14px;
    }


    /* ----------------------------------------------
       VISUAL SECTION
    ---------------------------------------------- */

    .visual-section__top {
        margin-bottom: 15px;
    }

    .visual-section__label {
        font-size: 9px;
    }

    .visual-section__hint {
        gap: 7px;
        font-size: 8px;
    }

    .visual-section__hint span {
        width: 22px;
        height: 22px;
        font-size: 11px;
    }

    .visual-section__visual {
        width: 100%;
        height: 620px;
        border-left: 0;
        border-right: 0;
    }

    .visual-section__visual.visual--fullscreen {
        width: 100vw;
        height: 100svh;
        min-height: 560px;
        margin-left: calc(50% - 50vw);
        margin-top: 0;
    }

    .visual-section__media img,
    .visual-section__media video {
        transform: scale(1.04);
        filter:
            brightness(0.55)
            contrast(1.08)
            saturate(0.8);
    }

    .visual-section__visual:hover
    .visual-section__media img.is-visible,
    .visual-section__visual:hover
    .visual-section__media video.is-visible {
        transform: scale(1.04);
    }

    .visual-section__visual::before {
        background:
            linear-gradient(
                180deg,
                rgba(0, 0, 0, .65) 0%,
                rgba(0, 0, 0, .12) 40%,
                rgba(0, 0, 0, .7) 100%
            );
    }

    .visual-section__visual::after {
        background:
            radial-gradient(
                circle at center,
                transparent 20%,
                rgba(0, 0, 0, .35) 100%
            );
    }

    .visual-section__content {
        padding: 25px 20px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
    }

    .visual-section__side-text {
        width: 100%;
    }

    .visual-section__side-number {
        margin-bottom: 20px;
        font-size: 9px;
    }

    .visual-section__side-number::before {
        width: 20px;
    }

    .visual-section__side-text h2 {
        max-width: 100%;
        margin-bottom: 12px;
        font-size: clamp(38px, 11vw, 52px);
        line-height: .9;
        text-align-last: left;
    }

    .visual-section__side-text p {
        max-width: 203px;
        font-size: 16px;
        line-height: 1.3;
        text-align: left;
    }

    .visual-section__center-text {
        width: 100%;
        margin-bottom: 20px;
        text-align: left;
    }

    .visual-section__center-text span {
        margin-bottom: 10px;
        font-size: 9px;
    }

    .visual-section__center-text h2 {
        max-width: 100%;
        font-size: clamp(28px, 8vw, 38px);
        line-height: .95;
    }

    .visual-section__cards {
        justify-content: flex-start;
        gap: 7px;
        margin-top: 15px;
        padding: 2px 20px 10px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .visual-section__cards::-webkit-scrollbar {
        display: none;
    }

    .visual-card {
        flex: 0 0 145px;
        width: 145px;
        min-height: 105px;
        padding: 13px;
        scroll-snap-align: start;
    }

    .visual-card:hover,
    .visual-card.is-active {
        transform: none;
    }

    .visual-card h3 {
        font-size: 14px;
    }

    .visual-card p {
        font-size: 9px;
        line-height: 1.4;
    }


    /* ----------------------------------------------
       IMAGE VIEWER
    ---------------------------------------------- */

    .image-viewer {
        padding: 20px;
    }

    .image-viewer__image {
        max-width: 95vw;
        max-height: 85vh;
    }

    .image-viewer__close {
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }


    /* ----------------------------------------------
       CONTACT
    ---------------------------------------------- */

    .contact__form-wrapper {
        padding: 30px;
    }


    /* ----------------------------------------------
       HERO VIDEO OVERLAY
    ---------------------------------------------- */

    .hero-video__overlay h2 {
        font-size: clamp(35px, 6vw, 60px);
        letter-spacing: -3px;
    }

    .visual-layout--05 .visual-section__side-text {
        left: 25%;
        top: 54%;
    }

    .visual-layout--05 .visual-section__center-text {
        left: 50%;
        top: 50%;
    }
}

/* На телефоне карточки философии — компактные кнопки без описаний. */
@media (max-width: 660px) {
    .story__cards {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        left: 16px;
        right: 16px;
        bottom: 26px;
        gap: 9px;
    }

    .story__card,
    .story__card:nth-child(n) {
        display: flex;
        align-items: center;
        justify-content: center;
        width: auto;
        min-height: 64px;
        padding: 14px 10px;
        text-align: center;
    }

    .story__card-number,
    .story__card p {
        display: none;
    }

    .story__card h3 {
        font-size: clamp(15px, 4.2vw, 18px);
        line-height: 1.1;
    }

    .story__card:hover {
        transform: none;
    }
}

.about__studio-video {
    padding: clamp(75px, 10vw, 150px) 0 clamp(90px, 12vw, 170px);
}

.about__studio-video-inner {
    width: min(1080px, calc(100% - 10vw));
    margin: 0 auto;
    text-align: center;
}

.about__studio-video h2 {
    margin: 0;
    font-size: clamp(40px, 6.2vw, 88px);
    font-weight: 400;
    line-height: .9;
    letter-spacing: -.065em;
}

.about__studio-video h2 span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, .95);
}

.about__studio-video-frame {
    width: min(100%, 820px);
    margin: clamp(48px, 7vw, 82px) auto 0;
    overflow: hidden;
    background: #151515;
    border: 1px solid rgba(255, 255, 255, .16);
}

.about__studio-video-frame video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #151515;
}

.about__studio-video-caption {
    max-width: 520px;
    margin: 22px auto 0;
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.5;
    color: rgba(255, 255, 255, .62);
}

@media (max-width: 768px) {
    .about__studio-video {
        padding: 70px 0 90px;
    }

    .about__studio-video-inner {
        width: calc(100% - 32px);
    }

    .about__studio-video h2 {
        font-size: clamp(38px, 11.5vw, 58px);
    }

    .about__studio-video-frame {
        margin-top: 48px;
    }

    .about__studio-video-caption {
        margin-top: 17px;
        font-size: 15px;
    }
}

/* Текст под заголовком формы связи. */
.contact__label {
    display: block;
    max-width: 470px;
    margin: 20px 0 0;
    font-size: clamp(15px, 1.3vw, 18px);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: normal;
    color: rgba(255, 255, 255, .68);
}

@media (max-width: 768px) {
    .contact__label {
        max-width: 100%;
        margin-top: 16px;
        font-size: 15px;
    }
}





/* ==================================================
   MAX-WIDTH: 658px
   ================================================== */


@media (max-width: 658px
) {
    .contact__title {
        font-size: clamp(39px, 5vw, 110px);
        margin-left: 6%;
    }
}

/* ==================================================
   MAX-WIDTH: 660px
   ================================================== */

@media (max-width: 660px) {

    .why-us__line {
        display: block;
        clip-path: inset(0 100% 0 0);
    }

    .story__cards {
        display: none;
    }

    .story__heading {
        top: 232px;
    }

    .contact__letter {
        display: inline-block;
        will-change: transform;
    }
}


/* ==================================================
   MAX-WIDTH: 600px
   ================================================== */

@media (max-width: 600px) {

    /* ----------------------------------------------
       HEADER
    ---------------------------------------------- */

    .header__logo {
        gap: 8px;
    }

    .header__logo-mark {
        width: 34px;
        height: 34px;
        font-size: 17px;
    }

    .header__logo-text {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .header__logo-text strong {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .header__burger {
        width: 42px;
        height: 42px;
    }


    /* ----------------------------------------------
       HERO / TITLE
    ---------------------------------------------- */

    .title {
        font-size: clamp(38px, 13vw, 62px);
        max-width: 94vw;
        letter-spacing: -2.5px;
    }


    /* ----------------------------------------------
       REVIEWS
    ---------------------------------------------- */

    .reviews {
        padding: 1px 0;
    }

    .reviews__top {
        margin-bottom: 40px;
    }

    .reviews__hint {
        font-size: 12px;
    }

    .reviews__slider {
        max-width: 100%;
    }

    .telegram {
        min-height: 500px;
        border-radius: 15px;
    }

    .telegram__header {
        height: 64px;
        padding: 0 15px;
    }

    .telegram__avatar {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .telegram__body {
        min-height: calc(500px - 64px);
        padding: 25px 15px;
    }

    .telegram__message {
        max-width: 85%;
        font-size: 13px;
    }

    .reviews__bottom {
        margin-top: 20px;
    }

    .reviews__next {
        width: 42px;
        height: 42px;
    }


    /* ----------------------------------------------
       FEEDBACK POPUP
    ---------------------------------------------- */

    .feedback-popup {
        padding: 12px;
    }

    .feedback-popup__window {
        padding: 40px 25px 30px;
        border-radius: 20px;
        max-height: 92vh;
    }

    .feedback-popup__content h2 {
        font-size: 36px;
    }

    .feedback-popup__description {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .feedback-popup__close {
        top: 12px;
        right: 12px;
    }


    /* ----------------------------------------------
       CONTACT
    ---------------------------------------------- */

    .contact__form-wrapper {
        padding: 30px;
    }

    .contact__circle {
        height: 33px;
    }


    /* ----------------------------------------------
       HERO VIDEO
    ---------------------------------------------- */

    .hero-video {
        width: 358px;
        border-radius: 15px;
    }
}

/* ==================================================
   MAX-WIDTH: 562px
   ================================================== */
@media (max-width: 562px
) {
    .contact__title {
        font-size: clamp(37px, 5vw, 110px);
        margin-left: 6%;
    }
}

/* ==================================================
   MAX-WIDTH: 530px
   ================================================== */
@media (max-width: 530px
) {
    .contact__title {
        font-size: clamp(33px, 5vw, 110px);
        margin-left: 6%;
        margin-top: -35px;
    }
}


/* ==================================================
   MAX-WIDTH: 525px
   ================================================== */

@media (max-width: 525px) {
    .visual-section__side-text h2 {
        font-size: clamp(38px, 11vw, 44px);

    }
}



/* ==================================================
   MAX-WIDTH: 500px
   ================================================== */

@media (max-width: 500px) {

    .contact__circle {
        height: 33px;
    }
}



/* ==================================================
   MAX-WIDTH: 467px
   ================================================== */

@media (max-width: 467px
) {
    .contact__title {
        font-size: clamp(31px, 5vw, 110px);
        margin-left: 6%;
    }
}


/* ==================================================
   MAX-WIDTH: 480px
   ================================================== */

@media (max-width: 480px) {

    .transformation {
        padding: 70px 0;
    }

    .transformation__visual {
        width: calc(100% - 45px);
    }

    .transformation__dots {
        gap: 13px;
    }

    .transformation__dots_left {
        left: 0;
    }

    .transformation__dots_right {
        right: 0;
    }

    .transformation__dot {
        width: 6px;
        height: 6px;
    }
    
}


/* ==================================================
   MAX-WIDTH: 442px
   ================================================== */


@media (max-width: 442px) {
    .visual-section__side-text h2 {
        font-size: clamp(38px, 11vw, 40px);
    }
}


/* ==================================================
   MAX-WIDTH: 435px
   ================================================== */

@media (max-width: 435px
) {
    .contact__title {
        font-size: clamp(30px, 5vw, 110px);
        margin-left: 6%;
    }
}



/* ==================================================
   MAX-WIDTH: 420px
   ================================================== */


@media (max-width: 420px) {
    .hero-video__overlay h2 {
        font-size: clamp(31px, 6vw, 60px);
    }


        .visual-section__center-text span {

        font-size: 7px;
    }
}


/* ==================================================
   MAX-WIDTH: 419px
   ================================================== */

@media (max-width: 419px
) {
    .contact__title {
        font-size: clamp(25px, 2vw, 40px);
        margin-left: 6%;
    }
}

/* ==================================================
   MAX-WIDTH: 402px
   ================================================== */



@media (max-width: 402px) {
    .visual-section__side-text h2 {
        font-size: clamp(35px, 11vw, 32px);
    }
        .visual-section__side-text p {
        font-size: 15px;
    }
    .visual-section__center-text span {
        font-size: 7px;
    }
}

/* ==================================================
   MAX-WIDTH: 400px
   ================================================== */

@media (max-width: 400px) {

    .title {
        font-size: 38px;
        max-width: 95vw;
        letter-spacing: -2px;
    }

    .story__card {
        display: none;
    }

    .reviews {
        padding: 1px 0;
    }

    .contact__decor {
        display: none;
    }
        .contact__title {
        font-size: clamp(25px, 2vw, 40px);
 
        margin-bottom: 15px;
    }
}


/* ==================================================
   MAX-WIDTH: 390px
   ================================================== */

@media (max-width: 390px) {

    .visual-section__visual {
        height: 580px;
    }

    .visual-section__content {
        padding: 22px 16px;
    }

    .visual-section__side-text h2 {
        font-size: 38px;
    }

    .visual-section__side-text p {
        max-width: 132px;
        font-size: 11px;
        
    }

    .visual-section__center-text h2 {
        font-size: 28px;
    }

    .visual-card {
        flex-basis: 135px;
        width: 135px;
        min-height: 100px;
    }
}


/* ==================================================
   MAX-WIDTH: 380px
   ================================================== */

@media (max-width: 380px) {

    .split-text {
        transform: translateY(-9vh);
    }

    .split-text h2 {
        font-size: 38px;
        letter-spacing: -2px;
    }

    .split-text p {
        font-size: 13px;
    }

    .split-cube {
        width: 155px;
        height: 155px;
        transform: none;
    }
        .story__heading {
        top: 186px;
    }
}


/* ==================================================
   MAX-WIDTH: 339px
   ================================================== */

@media (max-width: 339px
) {
    .contact__title {
     display: none;
    }
}


/* ==================================================
   MAX-WIDTH: 300px
   ================================================== */

@media (max-width: 300px) {

    .header__logo-text {
        margin-left: 10px;
        margin-right: 10px;
    }
}


/* ==================================================
   MAX-WIDTH: 250px
   ================================================== */

@media (max-width: 250px) {

    .header__logo-text {
        margin-left: 1px;
        margin-right: 1px;
    }
}


/* ==================================================
   MAX-HEIGHT: 650px
   ================================================== */

@media (max-height: 650px) {

    .title {
        font-size: clamp(35px, 9vh, 65px);
    }

    .split-text {
        transform: translateY(-5vh);
    }

    .split-cube {
        width: clamp(150px, 35vh, 280px);
        height: clamp(150px, 35vh, 280px);
        transform: none;
    }
}


/* ==================================================
   GALLERY MARQUEE
   ================================================== */

@keyframes galleryMarquee {

    from {
        transform: translate3d(var(--marquee-drag-offset), 0, 0);
    }

    to {
        transform: translate3d(
            calc(
                var(--marquee-drag-offset) -
                var(--gallery-loop-distance)
            ),
            0,
            0
        );
    }
}


/* ==================================================
   REDUCED MOTION
   ================================================== */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }

    .visual-section__visual,
    .visual-section__media img,
    .visual-section__media video,
    .visual-card {
        transition: none;
    }
}



video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* =========================================================
   RESPONSIVE FINISHING LAYER
   Keeps the existing scroll scenarios intact while making
   content and controls comfortable on compact screens.
========================================================= */

html,
body {
    max-width: 100%;
    overflow-x: clip;
}

img,
video {
    max-width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding-right: 20px;
        padding-left: 20px;
    }

    .header__inner {
        padding-right: 16px;
        padding-left: 16px;
    }

    .hero__inner {
        height: calc(100dvh - 75px);
    }

    .project {
        gap: 24px;
        padding: 24px 20px;
    }

    .project__text h2 {
        font-size: clamp(34px, 10vw, 48px);
        letter-spacing: -0.06em;
    }

    .project__text p {
        font-size: 16px;
        line-height: 1.45;
    }

    .project__video {
        height: min(48dvh, 420px);
        min-height: 260px;
    }

    .uslig__services {
        gap: 20px;
    }

    .contact__title {
        margin-top: 0;
        margin-left: 0;
        font-size: clamp(30px, 6vw, 46px);
        letter-spacing: -0.06em;
    }

    .contact__description {
        margin-top: 20px;
    }

    .contact__form-wrapper {
        padding: 28px 22px;
        border-radius: 22px;
    }

    .visual-section__visual {
        height: min(145vw, 760px);
        min-height: 540px;
    }
}

@media (max-width: 560px) {
    .header__logo-text {
        margin-right: 12px;
        margin-left: 12px;
        font-size: 14px;
        letter-spacing: 2px;
    }

    .header__logo-text strong {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .header__logo-mark {
        width: 34px;
        height: 34px;
    }

    .header__link {
        font-size: 21px;
    }

    .scroll-progress {
        right: 16px;
        left: 16px;
    }

    .project,
    .project-2,
    .project-4 {
        padding: 20px 16px;
    }

    .project__video {
        min-height: 220px;
        height: 42dvh;
        border-radius: 16px;
    }

    .uslig__sticky {
        padding-right: 16px;
        padding-left: 16px;
    }

    .uslig__services {
        grid-template-columns: 1fr;
    }

    .uslig__service {
        padding: 18px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .why-us__intro p,
    .contact__description {
        font-size: 15px;
    }

    .visual-section__visual {
        min-height: 500px;
        height: 145vw;
    }

    .visual-section__content {
        padding: 20px 16px;
    }

    .visual-section__side-text h2 {
        font-size: clamp(32px, 10vw, 44px);
    }

    .visual-section__center-text h2 {
        font-size: clamp(26px, 8vw, 36px);
    }

    .contact {
        padding-right: 16px;
        padding-left: 16px;
    }

    .contact__title {
        display: block;
        font-size: clamp(24px, 7.7vw, 40px);
    }
}

@media (max-width: 380px) {
    .header__logo-text strong {
        display: none;
    }

    .header__nav {
        padding-right: 16px;
        padding-left: 16px;
    }

    .project__text h2 {
        font-size: 32px;
    }

    .project__text p {
        font-size: 14px;
    }

    .contact__form-wrapper {
        padding: 24px 18px;
    }
}

/* Footer: change layout before the three columns become too narrow. */
@media (max-width: 1150px) {
    .footer__top {
        flex-direction: column;
        gap: 48px;
    }

    .footer__brand {
        max-width: 760px;
    }

    .footer__navigation {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: 100%;
        gap: 32px;
    }

    .footer__column {
        min-width: 0;
    }
}

/* Footer contacts: allow the grid column and long links to shrink on phones. */
@media (max-width: 560px) {
    .footer {
        padding-right: 16px;
        padding-left: 16px;
    }

    .footer__navigation {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 16px;
    }

    .footer__column {
        min-width: 0;
    }

    .footer__column a {
        overflow-wrap: anywhere;
        word-break: break-word;
    }
}

@media (max-width: 460px) {
    .footer__navigation {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 280px) {
    .contact__title {
        font-size: 18px;
        letter-spacing: -0.04em;
    }
}

/* Tablet: the contact section is already one column here, so do not retain
   the desktop title offset that causes the text to be covered by the form. */
@media (max-width: 1000px) {
    .contact__title {
        margin-top: 0;
        margin-left: 0;
        font-size: clamp(30px, 6vw, 46px);
        letter-spacing: -0.06em;
    }
}

/* Give the «Мы верим» section more usable text width on tablets. */
@media (max-width: 900px) {
    .why-us {
        padding-right: 20px;
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .why-us {
        padding-right: 16px;
        padding-left: 16px;
    }
}

/* Visual cards become a touch slider on tablets and phones. */
@media (min-width: 769px) {
    .visual-card[data-visual-clone] {
        display: none;
    }
}

@media (max-width: 768px) {
    .visual-section__navigation {
       /* overflow: hidden;*/
       margin-left: -65px;
    }

    .visual-section__cards {
        justify-content: flex-start;
        width: max-content;
        margin-top: 15px;
        margin-right: 10px;
        margin-bottom: 11px;
        margin-left: 0;
        padding: 2px 1px 10px;
        overflow: visible;
        gap: 7px;
        --marquee-drag-offset: 0px;
        animation: visualCardsMarquee 25s linear infinite;
        will-change: transform;
    }

    .visual-card {
        flex: 0 0 145px;
        width: 145px;
        min-height: 126px;
        padding: 14px;
        scroll-snap-align: none;
        overflow-wrap: break-word;
        user-select: none;
    }

    .visual-card h3 {
        margin-bottom: 8px;
        font-size: 15px;
        line-height: 1.12;
    }

    .visual-card p {
        font-size: 10px;
        line-height: 1.35;
    }

    .visual-section__cards {
        cursor: grab;
        touch-action: pan-y;
    }

    .visual-section__cards.is-dragging {
        cursor: grabbing;
        animation-play-state: paused;
    }
}

@keyframes visualCardsMarquee {
    from {
        transform: translate3d(var(--marquee-drag-offset), 0, 0);
    }

    to {
        transform: translate3d(
            calc(var(--marquee-drag-offset) - (5 * 145px + 5 * 7px)),
            0,
            0
        );
    }
}

/* =========================================================
   VISUAL SECTION — RESPONSIVE TYPOGRAPHY
========================================================= */

.visual-section__side-text,
.visual-section__center-text {
    overflow-wrap: break-word;
    word-break: normal;
}

@media (max-width: 1100px) {
    .visual-section__side-text {
        width: min(280px, 34vw);
    }

    .visual-section__center-text {
        width: min(360px, 38vw);
    }

    .visual-section__side-text h2 {
        font-size: clamp(34px, 4.8vw, 56px);
    }

    .visual-section__side-text p {
        font-size: clamp(15px, 1.7vw, 18px);
        line-height: 1.4;
    }

    .visual-section__center-text h2 {
        font-size: clamp(28px, 4.2vw, 46px);
    }
}

@media (max-width: 768px) {
    .visual-section__content {
        padding: 24px 20px;
    }

    .visual-section__side-text,
    .visual-section__center-text {
        width: auto;
        max-width: calc(100% - 40px);
        right: 20px !important;
        left: 20px !important;
        transform: none !important;
        text-align: left !important;
    }

    .visual-section__side-text {
        top: max(68px, 12%) !important;
        bottom: auto !important;
    }

    .visual-section__center-text {
        top: auto !important;
        bottom: 24px !important;
        margin: 0;
    }

    .visual-section__side-text h2 {
        
        margin-bottom: 12px;
        font-size: clamp(32px, 9.5vw, 50px);
        line-height: 0.92;
    }

    .visual-section__side-text p {
        
        font-size: clamp(14px, 3.8vw, 17px);
        line-height: 1.4;
    }

    .visual-section__center-text span {
        max-width: 100%;
        font-size: clamp(8px, 2.4vw, 10px);
        letter-spacing: 0.12em;
        line-height: 1.35;
    }

    .visual-section__center-text h2 {
        
        font-size: clamp(25px, 7.2vw, 38px);
        line-height: 0.98;
    }

    /* Different, but still safe, text compositions for every visual. */
    .visual-layout--01 .visual-section__side-text {
        top: 18% !important;
        right: auto !important;
        left: 20px !important;
        text-align: left !important;
    }

    .visual-layout--01 .visual-section__center-text {
        right: 20px !important;
        bottom: 9% !important;
        left: auto !important;
        text-align: right !important;
    }

    .visual-layout--02 .visual-section__side-text {
        top: auto !important;
        right: 20px !important;
        bottom: 12% !important;
        left: auto !important;
        text-align: right !important;
    }

    .visual-layout--02 .visual-section__center-text {
        top: 14% !important;
        right: auto !important;
        bottom: auto !important;
        left: 20px !important;
        text-align: left !important;
    }

    .visual-layout--03 .visual-section__side-text {
        top: 12% !important;
        right: 20px !important;
        left: 20px !important;
        text-align: center !important;
    }

    .visual-layout--03 .visual-section__center-text {
        right: 20px !important;
        bottom: 8% !important;
        left: 20px !important;
        text-align: center !important;
    }

    .visual-layout--04 .visual-section__side-text {
        top: auto !important;
        right: auto !important;
        bottom: 12% !important;
        left: 20px !important;
        text-align: left !important;
    }

    .visual-layout--04 .visual-section__center-text {
        top: 14% !important;
        right: 20px !important;
        bottom: auto !important;
        left: auto !important;
        text-align: right !important;
    }

    .visual-layout--05 .visual-section__center-text {
        top: 50% !important;
        bottom: auto !important;
        transform: translateY(-50%) !important;
        text-align: center !important;
    }

    .visual-layout--05 .visual-section__center-text h2 {
        margin-right: auto;
        margin-left: auto;
    }
}

@media (max-width: 420px) {
    .visual-section__content {
        padding-right: 16px;
        padding-left: 16px;
    }

    .visual-section__side-text,
    .visual-section__center-text {
        right: 16px !important;
        left: 16px !important;
        max-width: calc(100% - 32px);
    }

    .visual-section__side-text {
        top: 64px !important;
    }

    .visual-section__center-text {
        bottom: 18px !important;
    }

    .visual-section__side-text h2 {
        font-size: clamp(29px, 9.2vw, 38px);
    }

    .visual-section__side-text p {
        font-size: 14px;
    }

    .visual-section__center-text h2 {
        font-size: clamp(23px, 7vw, 30px);
    }
}

/* =========================================================
   HEADER — RESPONSIVE FINISHING
========================================================= */

@media (max-width: 900px) {
    .header {
        height: 72px;
    }

    .header__inner {

                padding: 20px 30px;
    }

    .header__logo {
        gap: 10px;
        min-width: 0;
    }

    .header__logo-text {
        margin: 0;
        text-align: left;
    }

    .header__nav {
        top: 72px;
        max-height: calc(100dvh - 72px);
        padding: 24px 20px 32px;
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .header__link {
        display: block;
        min-height: 44px;
        padding: 8px 0;
        font-size: clamp(20px, 5vw, 24px);
    }

    .hero__inner {
        top: 72px;
        height: calc(100dvh - 72px);
    }
}

@media (max-width: 480px) {
    .header__logo-text {
        font-size: 13px;
        letter-spacing: 1.5px;
    }

    .header__logo-text strong {
        font-size: 9px;
        letter-spacing: 1.5px;
    }

    .header__logo-mark {
        width: 34px;
        height: 34px;
        font-size: 18px;
    }

    .header__burger {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 330px) {
    .header__logo-text strong {
        display: none;
    }
}

@media (max-width: 768px) {
    .gallery__track {
        /* 5 cards × (280px card + 15px gap) */
        --gallery-loop-distance: 1475px;
    }
}

/* =========================================================
   ABOUT PAGE
========================================================= */

.about {
    padding: 150px 5vw 80px;
}

.about__hero,
.about__text,
.about__principles,
.about__cta {
    max-width: 1400px;
    margin-right: auto;
    margin-left: auto;
}

.about__eyebrow {
    margin: 0 0 22px;
    font-size: 11px;
    letter-spacing: .18em;
    color: rgba(255, 255, 255, .5);
}

.about__hero h1 {
    max-width: 1100px;
    margin: 0;
    font-size: clamp(54px, 9vw, 140px);
    font-weight: 400;
    line-height: .86;
    letter-spacing: -.07em;
}

.about__hero h1 span {
    color: transparent;
    -webkit-text-stroke: 1px #fff;
}

.about__lead {
    max-width: 530px;
    margin: 45px 0 0 auto;
    font-size: clamp(17px, 1.7vw, 22px);
    line-height: 1.45;
    color: rgba(255, 255, 255, .62);
}

.about__film {
    position: relative;
    max-width: 1100px;
    height: min(72vw, 720px);
    min-height: 420px;
    margin: 110px auto;
    overflow: hidden;
    background: #111;
}

.about__film::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, .6));
    pointer-events: none;
}

.about__film video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__film-caption {
    position: absolute;
    right: 28px;
    bottom: 24px;
    z-index: 1;
    margin: 0;
    font-size: 11px;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.about__text {
    padding: 40px 0 110px;
}

.about__text-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
    gap: clamp(35px, 10vw, 180px);
}

.about__text h2 {
    margin: 0;
    font-size: clamp(34px, 5vw, 74px);
    font-weight: 400;
    line-height: .95;
    letter-spacing: -.06em;
}

.about__text-grid p {
    margin: 0 0 24px;
    font-size: 17px;
    line-height: 1.5;
    color: rgba(255, 255, 255, .6);
}

.about__principles {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, .16);
}

.about__principles article {
    min-height: 270px;
    padding: 28px;
    border-right: 1px solid rgba(255, 255, 255, .16);
}

.about__principles article:first-child {
    border-left: 1px solid rgba(255, 255, 255, .16);
}

.about__principles span {
    font-size: 11px;
    color: rgba(255, 255, 255, .45);
}

.about__principles h2 {
    margin: 65px 0 10px;
    font-size: clamp(28px, 3vw, 46px);
    font-weight: 400;
    letter-spacing: -.05em;
}

.about__principles p {
    max-width: 220px;
    margin: 0;
    line-height: 1.45;
    color: rgba(255, 255, 255, .55);
}

.about__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 110px;
}

.about__cta p {
    margin: 0;
    color: rgba(255, 255, 255, .55);
}

.about__cta a {
    color: #fff;
    font-size: clamp(35px, 6vw, 90px);
    line-height: 1;
    letter-spacing: -.06em;
    text-decoration: none;
}

.about__cta a span {
    display: inline-block;
    transition: transform .3s ease;
}

.about__cta a:hover span {
    transform: translate(8px, -8px);
}

@media (max-width: 768px) {
    .about {
        padding: 120px 20px 55px;
    }

    .about__lead {
        margin: 30px 0 0;
    }

    .about__film {
        height: 125vw;
        min-height: 360px;
        margin: 70px 0;
    }

    .about__text {
        padding-bottom: 70px;
    }

    .about__text-grid,
    .about__principles {
        grid-template-columns: 1fr;
    }

    .about__text-grid {
        gap: 28px;
    }

    .about__principles article,
    .about__principles article:first-child {
        min-height: 0;
        padding: 24px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .16);
        border-left: 0;
    }

    .about__principles h2 {
        margin-top: 32px;
    }

    .about__cta {
        display: block;
        padding-top: 70px;
    }

    .about__cta a {
        display: block;
        margin-top: 20px;
    }
}

/* Mobile reviews: every Telegram chat occupies the same slide height. */
@media (max-width: 768px) {
    .reviews__slider,
    .reviews__track,
    .telegram {
        height: 500px;
    }

    .telegram {
        min-height: 0;
    }

    .telegram__body {
        height: calc(500px - 72px);
        min-height: 0;
        overflow-y: auto;
        overscroll-behavior: contain;
        scrollbar-width: thin;
    }
}

/* Transformation controls stay reachable on small screens. */
@media (max-width: 768px) {
    .transformation {
        padding: 50px 0;
    }

    .transformation__visual {
        width: calc(100% - 56px);
    }

    .transformation__dots {
        gap: 12px;
    }

    .transformation__dot {
        width: 11px;
        height: 11px;
        flex: 0 0 11px;
    }

    .transformation__content {
        padding-top: 18px;
    }

    .transformation__title {
        font-size: clamp(24px, 7vw, 34px);
    }

    .transformation__text {
        font-size: 14px;
    }
}

/* =========================================================
   ABOUT PAGE — STORY LAYOUT
========================================================= */

.about {
    padding: 90px 5vw 80px;
}

.about__hero {
    position: relative;
    display: grid;
    width: 100vw;
    max-width: none;
    height: 100vh;
    height: 100dvh;
    min-height: 0;
    margin-left: calc(50% - 50vw);
    margin-right: 0;
    overflow: hidden;
    place-items: center;
    background: #111;
}

.about__hero-video,
.about__hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.about__hero-video {
    object-fit: cover;
    filter: brightness(.55) contrast(1.05);
}

.about__hero-overlay {
    background: radial-gradient(circle at center, rgba(0, 0, 0, .05), rgba(0, 0, 0, .72));
}

.about__hero-content {
    position: relative;
    z-index: 1;
    max-width: 960px;
    padding: 48px 24px;
    text-align: center;
}

.about__hero h1 {
    max-width: none;
    font-size: clamp(48px, 8.8vw, 66px);
    line-height: .86;
}

.about__hero-content > p:last-child {
    max-width: 470px;
    margin: 10px auto 0;
    font-size: clamp(16px, 1.7vw, 20px);
    line-height: 1.45;
    color: rgba(255, 255, 255, .72);
}

.about__approach,
.about__note,
.about__cta {
    max-width: 1400px;
    margin-right: auto;
    margin-left: auto;
}

.about__approach {
    padding: 120px 0 85px;
}

.about__approach > h2 {
    max-width: 840px;
    margin: 0 0 55px;
    font-size: clamp(34px, 5.4vw, 76px);
    font-weight: 400;
    line-height: .94;
    letter-spacing: -.06em;
}

.about__choices {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, .18);
    border-left: 1px solid rgba(255, 255, 255, .18);
}

.about__choice {
    min-height: 245px;
    padding: 24px;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, .18);
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    background: transparent;
    color: #fff;
    cursor: pointer;
    text-align: left;
    transition: background .35s ease, color .35s ease, transform .35s ease;
}

.about__choice:hover,
.about__choice.is-active {
    background: #fff;
    color: #070707;
}

.about__choice:hover {
    transform: translateY(-6px);
}

.about__choice span,
.about__choice strong,
.about__choice small {
    display: block;
}

.about__choice span {
    font-size: 11px;
    opacity: .55;
}

.about__choice strong {
    margin-top: 72px;
    font-size: clamp(24px, 2.4vw, 38px);
    font-weight: 400;
    letter-spacing: -.05em;
}

.about__choice small {
    margin-top: 13px;
    font-size: 14px;
    line-height: 1.4;
    opacity: .7;
}

.about__note {
    max-width: 660px;
    padding: 40px 0 105px;
}

.about__note p {
    margin: 0;
    font-size: clamp(20px, 2.2vw, 29px);
    line-height: 1.27;
    color: rgba(255, 255, 255, .64);
}

.about__footer {
    padding-top: 0;
}

.about__footer .footer__bottom {
    margin-top: 0;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .15);
}

@media (max-width: 768px) {
    .about {
        padding: 72px 16px 50px;
    }

    .about__hero {
        height: 100svh;
        height: 100dvh;
        min-height: 0;
    }

    .about__hero-content {
        padding: 40px 18px;
    }

    .about__approach {
        padding: 75px 0 55px;
    }

    .about__approach > h2 {
        margin-bottom: 36px;
    }

    .about__choices {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about__choice {
        min-height: 190px;
        padding: 18px;
    }

    .about__choice strong {
        margin-top: 48px;
        font-size: 26px;
    }

    .about__choice small {
        font-size: 12px;
    }

    .about__note {
        padding-bottom: 65px;
    }

    .about__footer {
        padding-right: 16px;
        padding-left: 16px;
    }
}

.about__intro {
    padding: clamp(90px, 12vw, 180px) 0 clamp(10px, 0vw, 141px);
}

.about__intro-inner {
    width: min(1050px, calc(100% - 10vw));
    margin: 0 auto;
    text-align: center;
}

.about__intro-label {
    margin: 0 0 20px;
    font-size: 11px;
    letter-spacing: .16em;
    color: rgba(255, 255, 255, .5);
}

.about__intro h2 {
    margin: 0;
    font-size: clamp(40px, 6.4vw, 94px);
    font-weight: 400;
    line-height: .9;
    letter-spacing: -.065em;
}

.about__intro h2 span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, .95);
}

.about__intro-text {
    max-width: 760px;
    margin: clamp(50px, 7vw, 90px) auto 0;
    text-align: left;
}

.about__intro-text p {
    margin: 0 0 26px;
    font-size: clamp(17px, 1.65vw, 21px);
    line-height: 1.5;
    color: rgba(255, 255, 255, .7);
}

.about__intro-text p:first-child {
    color: #fff;
}

@media (max-width: 768px) {
    .about__intro {
        padding: 80px 0 75px;
    }

    .about__intro-inner {
        width: calc(100% - 32px);
    }

    .about__intro h2 {
        font-size: clamp(38px, 11.5vw, 58px);
    }

    .about__intro-text {
        margin-top: 48px;
    }

.about__intro-text p {
        margin-bottom: 20px;
        font-size: 16px;
        line-height: 1.48;
    }
}

/* Five unique visual cards: JavaScript moves the first card to the end. */
@media (max-width: 768px) {
    .visual-section__cards {
        animation: none;
    }

    .visual-section__navigation {
        width: 100vw;
        margin-right: 0;
        margin-left: calc(50% - 50vw);
        padding-left: 0;
        overflow: hidden;
        background: transparent;
    }

    .visual-section__cards {
        margin-left: 0;
        gap: 8px;
    }

    .visual-card {
        flex-basis: 186px;
        width: 186px;
        background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

}

@media (hover: none) and (max-width: 768px) {
    .visual-card:hover {
        transform: none;
        background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
        border-color: rgba(255, 255, 255, .13);
    }
}

/* Final mobile override: show only compact philosophy-card titles. */
@media (max-width: 660px) {
    .story__cards {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        left: 16px;
        right: 16px;
        bottom: 26px;
        gap: 9px;
    }

    .story__card,
    .story__card:nth-child(n) {
        display: flex;
        align-items: center;
        justify-content: center;
        width: auto;
        min-height: 64px;
        padding: 14px 10px;
        text-align: center;
    }

    .story__card-number,
    .story__card p {
        display: none;
    }

    .story__card h3 {
        font-size: clamp(15px, 4.2vw, 18px);
        line-height: 1.1;
    }

    .story__card:hover {
        transform: none;
    }
}


