.about__breadcrumbs ol {
    display: flex;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: -40px;
    cursor: default;
    text-transform: none;
}

.about__breadcrumbs a {
    transition: all .3s ease-in-out;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
}

.about__breadcrumbs a:after {
    content: '/';
    color: rgba(255, 255, 255, 0.4);
    margin: 0 6px;
}

.about__breadcrumbs a:hover {
    color: rgba(255, 255, 255, 1);
}

/* ==================== ГЛАВНЫЙ БАННЕР ==================== */
.main-banner {
    position: relative;
    margin: 20px;
    background-color: #000;
    border-radius: 20px;
    overflow: hidden;
    height: calc(100vh - 40px);
    min-height: 700px;
}

.main-banner__logo {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.main-banner__logo picture {
    display: block;
    height: 100%;
}

.main-banner__logo img {
    height: auto;
    width: 100%;
    object-fit: contain;
    object-position: right bottom;
    display: block;
}

.main-banner__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.main-banner__glass {
    height: 100%;
    width: 50%;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    color: #EFEFEF;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 20px;
    backdrop-filter: blur(3px);
    padding: 40px 60px 75px;
}

.main-banner__button-svg {
    width: 169px;
    height: 48px;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    box-shadow: 3px 4px 10px rgba(0, 0, 0, 0.1), inset 0px 4px 4px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    cursor: pointer;
    color: #EFEFEF;
}

.main-banner__title {
    font-family: 'Jost', sans-serif;
    text-transform: uppercase;
    margin: 0 0 30px;
}

.main-banner__title-line--first {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    display: block;
}

.main-banner__title-line--second {
    font-size: 40px;
    color: #ffffff;
    font-weight: 400;
    display: block;
}

.main-banner__text {
    width: 100%;
    max-width: 503px;
    font-size: 14px;
    color: #ffffff;
    font-weight: 400;
    margin: 0 0 35px;
}

.main-banner__text-mobile {
    display: flex;
}
.main-banner__text-desktop {
    display: none;
}
.main-banner__stats {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 40px;
}

.main-banner__stat {
    display: flex;
}

.main-banner__stat-column-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

.main-banner__stat-line {
    width: 1px;
    height: 100%;
    background: #ffffff;
    margin-right: 70px;
}

.main-banner__stat-number {
    font-size: 130px;
    font-weight: 400;
    line-height: 0.8;
    color: #ffffff;
    text-transform: uppercase;
}

.main-banner__stat-label {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    margin: 0;
}

.main-banner__image {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.main-banner__svg {
    display: block;
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.main-banner__image--first {
    top: 15%;
    left: 10%;
    width: 80%;
    animation: starsFirstAnimation 6s ease-in-out infinite;
}

.main-banner__image--second {
    top: 10%;
    left: 15%;
    width: 80%;
    opacity: 0.2;
    animation: starsSecondAnimation 6s ease-in-out infinite;
}

@keyframes starsFirstAnimation {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes starsSecondAnimation {
    0% { opacity: 0.2; }
    25% { opacity: 0; }
    50% { opacity: 1; }
    75% { opacity: 0; }
    100% { opacity: 0.2; }
}

@media (max-width: 1700px) {
    .main-banner__stat-line {
        margin-right: 50px;
    }
    .main-banner__stat-number {
        font-size: 110px;
    }
    .main-banner__stat-label {
        font-size: 13px;
    }
    .main-banner__stat-column-wrapper {
        gap: 20px;
    }
    .main-banner__logo {
        width: 70%;
    }
}


@media (max-width: 1550px) {
    .main-banner__title-line--first,
    .main-banner__title-line--second {
        font-size: 34px;
    }
    .main-banner__stat-number {
        font-size: 100px;
    }
    .main-banner__stat-line {
        margin-right: 40px;
    }
    .main-banner__stat-label {
        font-size: 12px;
    }
    .main-banner__glass {
        padding: 40px 40px 60px;
    }
    .about__breadcrumbs ol {
        margin-left: -20px;
    }
    .main-banner__logo {
        width: 60%;
    }
}

@media (max-width: 1300px) {
    .main-banner__glass {
        padding: 40px 30px 60px;
    }
    .about__breadcrumbs ol {
        margin-left: -10px;
    }
    .main-banner__logo {
        width: 50%;
    }
    .main-banner__stat-line {
        margin-right: 20px;
    }
    .main-banner__stat-number {
        font-size: 80px;
    }
    .main-banner__glass {
        width: 60%;
    }
}

@media (max-width: 992px) {
    .main-banner__stat-number {
        font-size: 70px;
    }
}

@media (max-width: 768px) {
    .about__breadcrumbs {
        display: none;
    }
    .main-banner {
        margin: 10px;
        margin-bottom: 0;
        border-radius: 12px;
        height: 100svh;
    }

    .main-banner__logo {
        position: absolute;
        top: 0;
        left: 50%;
        justify-content: center;
        right: auto;
        bottom: auto;
        transform: translateX(-50%);
        height: auto;
        width: 80%;
        margin-top: 20px;
    }

    .main-banner__logo img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .main-banner__content {
        position: absolute;
        top: 20%;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 0;
        align-items: flex-end;
        height: auto;
    }

    .main-banner__glass {
        max-width: 100%;
        width: 100%;
        gap: 16px;
        padding: 40px 24px 30px;
        align-items: center;
        background: linear-gradient(225deg, rgba(166, 163, 163, 0.05), rgba(48, 48, 48, 0.05));
        backdrop-filter: blur(8px);
        border-radius: 40px 40px 0 0;
        border: none;
        position: relative;
    }

    .main-banner__glass::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 40px 40px 0 0;
        padding: 1px 0 0 1px;
        background: conic-gradient(from 40deg at 28.6% 100%, #A6A3A3 0deg, #303030 360deg);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

    .main-banner__title-line--first,
    .main-banner__title-line--second {
        font-size: 27px;
    }

    .main-banner__text {
        max-width: 100%;
        margin: 0 0 30px;
    }
    .main-banner__text-mobile {
        display: flex;
    }
    .main-banner__text-desktop {
        display: none;
    }

    .main-banner__stats {
        justify-content: center;
        gap: 20px;
    }

    .main-banner__stat {
        justify-content: center;
    }

    .main-banner__stat-number {
        font-size: 70px;
    }

    .main-banner__stat-label {
        font-weight: 400;
    }

    .main-banner__stat-line {
        margin-right: 15px;
    }

    .main-banner__stat-column-wrapper {
        gap: 15px;
    }

    .main-banner__button-svg {
        width: 158px;
        height: 45px;
        font-size: 12px;
    }
}

@media (max-width: 425px) {
    .main-banner__stat-number {
        font-size: 50px;
    }
    .main-banner__stat-label {
        font-size: 10px;
    }
    .main-banner__title-line--first, .main-banner__title-line--second {
        font-size: 24px;
    }
}
@media (max-width: 365px) {
    .main-banner__stats {
        flex-direction: column;
        align-items: flex-start;
    }
    .main-banner__title-line--first, .main-banner__title-line--second {
        font-size: 22px;
    }
}

/* ==================== КОМАНДА ==================== */
.team {
    padding: 80px 46px 74px 20px;
    background-color: #FFFFFF;
    border-radius: 20px;
}

.team__heading {
    position: relative;
}

.team__title-en {
    font-size: 150px;
    font-weight: 400;
    color: #F8F8F8;
    line-height: 1;
}

.team__title-ru {
    font-size: 20px;
    font-weight: 500;
    color: #1B1B1B;
    position: absolute;
    top: 55%;
    left: 10px;
    text-transform: uppercase;
}

.team__wrapper {
    display: flex;
    gap: 30px;
}

.team__left {
    flex: 1;
}

.team__slogan {
    font-size: 40px;
    font-weight: 400;
    color: #1B1B1B;
    margin-bottom: 30px;
    font-family: 'Jost';
    text-transform: uppercase;
}

.team__description {
    font-size: 14px;
    color: #1B1B1B;
    max-width: 420px;
}

.team__right {
    flex: 1;
}

.team__grid-title {
    font-weight: 700;
    color: #1B1B1B;
    font-size: 16px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.team__directors {
    width: calc(50% - 20px);
    margin-bottom: 20px;
}

.team__director {
    margin-bottom: 12px;
}

.team__director-name {
    font-size: 14px;
    font-weight: 600;
    color: #1B1B1B;
}

.team__director-post {
    font-size: 14px;
    font-weight: 400;
    color: #8D8D8D;
}

.team__grid {
    display: flex;
    gap: 66px;
}

.team__column {
    flex: 1;
}

.team__member {
    margin-bottom: 7px;
}

.team__member-name {
    font-size: 14px;
    font-weight: 400;
    color: #1B1B1B;
}

.team__member-post {
    font-size: 14px;
    font-weight: 400;
    color: #8D8D8D;
}
@media (max-width: 1700px) {
    .team__slogan {
        font-size: 34px;
    }
}

@media (max-width: 1440px) {
    .team__slogan {
        font-size: 28px;
    }
}
@media (max-width: 1024px) {
    .team__wrapper {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .team {
        padding: 40px 15px 60px 10px;
    }
    .team__title-en {
        font-size: 60px;
    }
    .team__title-ru {
        font-size: 18px;
        top: 25%;
    }
    .team__slogan {
        font-size: 24px;
    }
    .team__slogan br{
        display: none;
    }
    .team__grid {
        flex-direction: column;
        gap: 0;
    }
    .team__member {
        margin-bottom: 12px;
    }
    .team__directors {
        width: 100%;
    }
}

/* ==================== ПОЧЕМУ МЫ ==================== */
.why-us {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    min-height: 100vh;
    background-color: #212121;
}

.why-us__heading {
    position: relative;
    margin-bottom: 10px;
    padding-left: 20px;
}

.why-us__title-en {
    font-size: 150px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.03);
    margin: 0;
    line-height: 1;
}

.why-us__title-ru {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    position: absolute;
    top: 30%;
    left: 40px;
    z-index: 2;
    text-transform: uppercase;
}

.why-us__main-text {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.why-us__text-line {
    font-size: 40px;
    text-transform: uppercase;
    margin: 0;
    line-height: 50px;
    color: #ffffff;
}

.why-us__text-line--first {
    margin-bottom: 10px;
}

.why-us__text-line--second {
    opacity: 0.5;
}

.why-us__features {
    position: relative;
    margin: 0 40px;
    min-height: 90vh;
}

.why-us__stars {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.why-us__star-svg {
    display: block;
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.why-us__stars--first {
    top: 10%;
    left: 5%;
    width: 85%;
    animation: whyUsStarsFirst 6s ease-in-out infinite;
}

.why-us__stars--second {
    top: 5%;
    left: 10%;
    width: 85%;
    opacity: 0.2;
    animation: whyUsStarsSecond 6s ease-in-out infinite;
}

@keyframes whyUsStarsFirst {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes whyUsStarsSecond {
    0% { opacity: 0.2; }
    25% { opacity: 0; }
    50% { opacity: 1; }
    75% { opacity: 0; }
    100% { opacity: 0.2; }
}

@media (min-width: 769px) {
    .why-us__stars--first {
        transform: rotate(45deg);
    }
    .why-us__stars--second {
        transform: rotate(45deg);
    }
}

.why-us__background {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 35%;
    z-index: 0;
    pointer-events: none;
}

.why-us__bg-image {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.8;
}

.why-us__feature {
    position: absolute;
    z-index: 2;
    width: 445px;
}

.why-us__feature-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    z-index: -1;
    pointer-events: none;
}

.why-us__feature-title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.why-us__feature-description {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

.why-us__feature-list {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 2;
    margin: 0 0 12px;
}

.why-us__feature-list li {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
}

.why-us__feature-list li:last-child {
    margin-bottom: 0;
}

.why-us__feature--1 {
    top: 0;
    left: 0;
}

.why-us__feature--4 {
    bottom: 0;
    right: 0;
}

.why-us__combined {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.why-us__feature-inner {
    position: absolute;
    width: 445px;
}

.why-us__feature-inner--2 {
    left: 0;
    bottom: 0;
    width: 485px;
}

.why-us__feature-inner--3 {
    right: 0;
    top: 0;
    width: 485px;
}

.why-us__feature-inner--2 .why-us__feature-content {
    padding: 70px 38px 23px;
    backdrop-filter: blur(10px);
    border-radius: 40px;
}
.why-us__feature-inner--3 .why-us__feature-content {
    padding: 65px 38px 75px;
    backdrop-filter: blur(10px);
    border-radius: 40px;
}
.why-us__feature--4 .why-us__feature-content {
    padding: 45px 38px 60px;
    backdrop-filter: blur(10px);
    border-radius: 40px;
}
.why-us__feature-content {
    padding: 40px 38px 85px;
    backdrop-filter: blur(10px);
    border-radius: 40px;
}

@media (max-width: 990px) {
    .why-us__combined {
        top: 0;
        left: 50%;
        transform: translate(-50%, 0);
        z-index: 2;
        order: 2;
    }
    .why-us__feature--4 {
        order: 3;
    }
    .why-us__feature--1 {
        order: 1;
    }
    .why-us__title-ru {
        font-size: 16px;
        left: 30px;
    }
    .why-us__title-en {
        font-size: 60px;
    }
    .why-us__features {
        min-height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin: 0 20px;
    }

    .why-us__feature,
    .why-us__feature-inner,
    .why-us__combined {
        position: relative;
        margin: auto;
    }

    .why-us__combined {
        display: flex;
        width: 100%;
        margin: 55px auto;
    }
}

@media (max-width: 960px) {
    .why-us__feature,
    .why-us__feature-inner,
    .why-us__combined {
        margin: 0;
    }

    .why-us__combined {
        margin: 0;
    }

    .why-us__text-line {
        font-size: 22px;
        line-height: 30px;
        display: inline;
    }
    .why-us__feature,
    .why-us__feature-inner,
    .why-us__combined {
        position: relative;
        width: 363px;
        top: auto;
        min-height: 265px;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;
    }
    .why-us__feature-inner--2 {
        left: 0;
        bottom: 0;
        height: 300px;
    }
    .why-us__feature-inner--3 {
        right: 0;
        top: 0;
        height: 300px;
    }
    .why-us__stars--first,
    .why-us__stars--second {
        transform: rotate(0deg);
    }
    .why-us__feature-inner--2 .why-us__feature-content {
        padding: 65px 30px 45px;
    }
    .why-us__feature-inner--3 .why-us__feature-content {
        padding: 50px 30px 45px;
    }
    .why-us__feature--4 .why-us__feature-content {
        padding: 30px;
        backdrop-filter: blur(10px);
        border-radius: 40px;
    }
    .why-us__feature-content {
        padding: 20px 30px 30px;
        backdrop-filter: blur(10px);
        border-radius: 40px;
    }
    .why-us__background {
        top: 0;
        width: 70%;
        position: relative;
        left: auto;
        transform: none;
    }
    .why-us__stars--first,
    .why-us__stars--second {
        top: 0;
    }
    .why-us {
        padding: 40px 0;
    }
    .why-us__feature--1 {
        margin-top: -50%;
    }
    .why-us__stars--first,
    .why-us__stars--second {
        width: 100%;
    }
    .why-us__features {
        gap: 30px;
    }

    .why-us__feature--1 {
        align-self: flex-start;
    }

    .why-us__feature--4 {
        align-self: flex-end;
    }

    .why-us__feature-inner--2 {
        align-self: flex-start;
    }

    .why-us__feature-inner--3 {
        align-self: flex-end;
    }

    .why-us__combined {
        display: flex;
        flex-direction: column;
        gap: 50px;
        width: 100%;
        align-items: center;
    }

    .why-us__combined .why-us__feature-inner--2 {
        align-self: flex-end;
    }

    .why-us__combined .why-us__feature-inner--3 {
        align-self: flex-start;
    }
    .why-us__features {
        align-items: center;
    }

    .why-us__combined {
        width: 100%;
        align-items: center;
    }


    .why-us__combined {
        width: 100%;
        align-items: center;
    }
}

@media (max-width: 410px) {
    .why-us__feature, .why-us__feature-inner, .why-us__combined{
        width: auto;
        min-height: auto;
    }
    .why-us__feature-inner--3,.why-us__feature-inner--2{
        height: auto;
    }
    .why-us__feature-title {
        font-size: 12px;
        font-weight: 500;
    }
    .why-us__feature-list li, .why-us__feature-description{
        font-size: 10px;
    }
    .why-us__combined {
        gap: 0;
    }
    .why-us__features {
        gap: 40px;
    }
    .why-us__feature-content {
        width: 90%;
    }
}

@media (max-width: 380px) {
    .why-us__features {
        gap: 0;
    }
    .why-us__feature-content {
        width: 100%;
    }
    .why-us__combined .why-us__feature-inner--2 {
        margin-top: 40px;
    }
}
/* ==================== SHOWREEL ==================== */
.show-reel {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 20px;
    padding: 55px 25px 170px;
    margin: 20px;
    overflow: hidden;
}

.show-reel__heading {
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.show-reel__title {
    line-height: 0.7;
    font-family: 'Jost', sans-serif;
    font-size: 150px;
    font-weight: 400;
    color: #F8F8F8;
    text-transform: uppercase;
}

.show-reel__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.show-reel__navigation {
    display: none;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.show-reel__button {
    background: none;
    border: none;
    cursor: pointer;
}

.show-reel__swiper {
    flex: 1;
    width: 100%;
    height: 100%;
}

.show-reel__swiper-wrapper {
    height: 100%;
    align-items: stretch;
}

.show-reel__slide {
    height: auto;
    min-height: 450px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.show-reel__link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
}

.show-reel__slide-content {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.show-reel__image,
.show-reel__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;

    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.show-reel__link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.show-reel__slide:hover .show-reel__link::after {
    opacity: 1;
}

.show-reel__pagination {
    display: none;
    justify-content: center;
    gap: 4px;
    margin-top: 200px;
}

.show-reel__pagination .swiper-pagination-bullet {
    width: 20px;
    height: 4px;
    background: #1B1B1B;
    border-radius: 0;
    margin: 0 !important;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.show-reel__pagination .swiper-pagination-bullet-active {
    width: 40px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .show-reel {
        border-radius: 30px;
        padding: 70px 0 15px;
        margin: 0;
    }

    .show-reel__heading {
        margin-bottom: 30px;
    }

    .show-reel__title {
        line-height: 40px;
        font-size: 60px;
    }

    .show-reel__navigation {
        display: flex;
    }

    .show-reel__swiper {
        padding: 0 15px;
    }

    .show-reel__slide {
        min-height: 225px;
    }

    .show-reel__pagination {
        display: flex;
    }
}

/* ==================== НАШ СЛОГАН ==================== */
.slogan {
    position: relative;
    padding: 90px 20px;
    height: auto;
}

.slogan__container {
    max-width: 930px;
    margin: 0 auto;
    position: relative;
    z-index: 4;
}

.slogan__title-ru {
    font-size: 10px;
    font-weight: 400;
    color: #636363;
    margin: 0 0 20px;
    text-transform: uppercase;
    text-align: left;
}

.slogan__text {
    text-align: left;
    margin-bottom: 40px;
}

.slogan__text-en {
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
}

.slogan__text-ru {
    font-size: 20px;
    font-weight: 400;
    color: #848484;
    text-transform: uppercase;
    margin: 0;
}

.slogan__box {
    position: relative;
    width: 100%;
    height: 260px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 26px;
    overflow: hidden;
}

.slogan__comet {
    position: absolute;
    left: 0;
    top: 30%;
    z-index: 2;
    opacity: 0;
    transform: rotate(2.89deg) translateX(0) scale(0.5);
    transform-origin: center;
}

.slogan__comet.animate {
    animation: sloganCometAnimation 4.4s cubic-bezier(.2,.8,.2,1) forwards;
}

@keyframes sloganCometAnimation {
    0% {
        transform: rotate(2.89deg) scale(0.3);
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    100% {
        transform: rotate(2.89deg) translateX(90%) scale(1);
        opacity: 1;
    }
}

.slogan__stars {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.slogan__star-svg {
    display: block;
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.slogan__stars--first {
    top: 35%;
    left: 10%;
    width: 80%;
    animation: sloganStarsFirstAnimation 6s ease-in-out infinite;
}

.slogan__stars--second {
    top: 20%;
    left: 15%;
    width: 80%;
    opacity: 0.2;
    animation: sloganStarsSecondAnimation 6s ease-in-out infinite;
}

@keyframes sloganStarsFirstAnimation {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes sloganStarsSecondAnimation {
    0% { opacity: 0.2; }
    25% { opacity: 0; }
    50% { opacity: 1; }
    75% { opacity: 0; }
    100% { opacity: 0.2; }
}

@media (min-width: 769px) {
    .slogan__stars--first {
        transform: rotate(45deg);
    }
    .slogan__stars--second {
        transform: rotate(45deg);
    }
}

@media (max-width: 768px) {
    .slogan {
        padding: 70px 15px 90px;
        overflow-x: hidden;
    }
    .slogan__title-ru {
        font-size: 14px;
    }

    .slogan__text-en,
    .slogan__text-ru {
        font-size: 24px;
    }

    .slogan__box {
        max-width: 100%;
        min-height: 110px;
        height: auto;
    }

    .slogan__stars--first,
    .slogan__stars--second {
        transform: rotate(0deg);
    }

    .slogan__comet {
        left: -20%;
        top: 25%;
        width: 50%;
    }

    .slogan__stars--first {
        top: 40%;
        width: 90%;
    }

    .slogan__stars--second {
        top: 35%;
        width: 90%;
    }
}

/* ==================== КЛИЕНТЫ ==================== */
.clients {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.clients__container {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.clients__title {
    position: relative;
    margin-bottom: 20px;
    left: 32px;
}

.clients__title h1 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    position: absolute;
    top: 40%;
    left: 7px;
    z-index: 2;
    text-transform: uppercase;
}

.clients__title span {
    font-size: 150px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.03);
    margin: 0;
    line-height: 1;
}

.clients__content {
    position: relative;
    z-index: 2;
    width: 100%;
    overflow: hidden;
}

.clients__swiper {
    width: 100%;
}

.clients__swiper-wrapper {
    display: flex;
    align-items: center;
    transition-timing-function: linear !important;
    padding: 20px 0;
}

.clients__slide {
    flex-shrink: 0;
    height: auto;
    aspect-ratio: 1.35;
}

.clients__link {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #171717;
    border: 1px solid #000000;
    border-radius: 13px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.clients__image {
    width: auto;
    max-width: 60%;
    display: block;
    user-select: none;
    pointer-events: none;
}

@media (max-width: 768px) {
    .clients {
        padding: 70px 0;
    }
    .clients__title {
        margin-bottom: 25px;
        left: 12px;
    }
    .clients__title h1 {
        font-size: 18px;
        top: 20%;
        left: 3px;
    }
    .clients__title span {
        font-size: 60px;
        line-height: 40px;
    }
}
/* ==================== ОТЗЫВЫ ==================== */
.reviews {
    padding: 40px 20px 0;
    overflow: hidden;
}

.reviews__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.reviews__title {
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
    padding-left: 23px;
}

.reviews__navigation {
    display: flex;
    gap: 15px;
}

.reviews__button {
    background: transparent;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.reviews__button svg rect {
    transition: all 0.3s ease;
}

.reviews__button:hover svg rect {
    fill: white;
    fill-opacity: 0.5;
}

.reviews__swiper {
    overflow: visible;
}

.reviews__slide {
    height: auto;
}

.reviews__card {
    text-align: left;
    align-items: flex-start;
    justify-content: flex-start;
    display: flex;
    flex-direction: column;
    height: 290px;
    padding: 32px 40px;
    border-radius: 30px;
    text-decoration: none;
    color: #efefef;
    background: conic-gradient(from 50deg at 15.02% 100%, #2a2a2a 0deg, #252525 360deg);
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.reviews__card.expanded {
    height: auto;
    min-height: 290px;
}

.reviews__name {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 5px;
}

.reviews__brand {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 20px;
    text-transform: lowercase;
}

.reviews__text-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.reviews__text {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    text-transform: none;
}

.reviews__text-content {
    display: inline;
}

.reviews__read-more {
    display: inline;
    background: transparent;
    border: none;
    cursor: pointer;
    text-decoration: none;
    padding: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 400;
}
.read-more-text {
    text-decoration: underline;
    text-underline-offset: 3px;
}
.read-more-text:hover {
    opacity: 0.7;
}
.reviews__text-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-height: 162px;
}

.reviews__card.expanded .reviews__text-wrapper {
    max-height: none;
}

@media (max-width: 768px) {
    .reviews {
        padding: 16px 10px 31px;
    }

    .reviews__title {
        font-size: 18px;
        padding-left: 0;
    }
}

/* ==================== НАШ ОФИС ==================== */
.office {
    padding: 100px 20px;
    max-width: 90%;
    margin: auto;
}

.office__heading {
    text-align: center;
    margin-bottom: 40px;
}

.office__title {
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.office__address {
    font-size: 14px;
    font-weight: 400;
    color: #B4B4B4;
    margin: 0;
}

.office__gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 10px;
}

.office__photo {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
}

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

.office__photo--1 { grid-column: span 1; }
.office__photo--2 { grid-column: span 1; }
.office__photo--3 { grid-column: span 1; }
.office__photo--4 { grid-column: span 1; }
.office__photo--5 { grid-column: span 1; }
.office__photo--6 { grid-column: span 1; }
.office__photo--7 { grid-column: span 1; }
.office__photo--8 { grid-column: span 1; }
.office__photo--9 { grid-column: span 1; }
.office__photo--10 { grid-column: span 1; }
.office__photo--11 { grid-column: span 1; }
.office__photo--12 { grid-column: span 1; }

@media (max-width: 1440px) {
    .office__photo--2,
    .office__photo--5,
    .office__photo--9 {
        display: none;
    }
    .office__gallery {
        grid-template-columns: repeat(9, 1fr);
    }
}
@media (max-width: 1024px) {
    .office__gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 2px;
    }

    .office__photo--1 { order: 1; display: block; }
    .office__photo--7 { order: 2; display: block; }
    .office__photo--3 { order: 3; display: block; }
    .office__photo--4 { order: 4; display: block; }
    .office__photo--10 { order: 5; display: block; }
    .office__photo--8 { order: 6; display: block; }
    .office__photo--6 { order: 7; display: block; }
    .office__photo--11 { order: 8; display: block; }
    .office__photo--12 { order: 9; display: block; }

}
@media (max-width: 768px) {
    .office {
        padding: 60px 10px;
    }

    .office__title {
        font-size: 24px;
    }

    .office__address {
        font-size: 16px;
    }
}