/* Общие стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Arial', sans-serif; */
}

body {
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
}

/* Основной логотип и заголовок */
.logo {
    height: 100vh;
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    align-items: center;
    padding: 0 40px;
    position: relative;
    overflow: hidden;
    padding-bottom: 150px;
    isolation: isolate;
    background: none !important;
}

.arc-container {
    position: absolute;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.neon-arc {
    /* ваши текущие стили */
    position: absolute;
    bottom: -2150px;
    left: 50%;
    transform: translateX(-50%);
    width: 2500px;
    height: 2500px;
    border-radius: 50%;
    box-shadow:
        0 0 120px rgba(255, 106, 0, 0.9),
        inset 0 10px 250px rgba(255, 106, 0, 0.9);
    z-index: 1;
    /* поверх свечения */
    pointer-events: none;
    /* игнорирует мышь */
}

.neon-glow {
    position: absolute;
    bottom: -2150px;
    left: 50%;
    transform: translateX(-50%);
    width: 2500px;
    height: 2500px;
    border-radius: 50%;
    /* background: radial-gradient(circle at center,
            transparent 50%,
            rgba(255, 106, 0, 0.1) 70%,
            transparent 90%); */
    filter: blur(30px);
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    /* скрыто по умолчанию */
    transition: opacity 1s ease;
}

/* Для контента внутри .logo */
.title,
.info-col {
    position: relative;
    z-index: 2;
    /* Поднимаем контент над аркой */
}

.title {
    /* font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300; */
    padding-left: 70px;
}

.title-slogan {
    font-size: 74px;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    letter-spacing: 1px;
}

.title-slogan span {
    color: #ff6a00;
    text-shadow: 0 0 45px rgba(255, 106, 0, 0.5);
}

.title-bef {
    display: grid;
    grid-template-columns: 0.25fr 2fr;
}

.title-bef-button {
    text-align: center;
    background: #ff6a00;
    color: #010101;
    padding: 8px 5px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
}

.title-bef-info {
    padding: 8px 10px;
    /* vertical-align: middle; */
    /* background: #ff6a00; */
    color: #aaa;
    font-weight: 500;
}

.title-aft {
    display: grid;
    grid-template-columns: 0.20fr 1fr;
}

.title-aft-line {
    margin: 9px 15px;
    width: 150px;
    border-top: 1px solid #ff6a00;
}

.title-aft-info {
    text-align: start;
    color: #aaa;
    font-weight: 500;
}

/*  */
.title {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.title.appeared {
    opacity: 1;
    transform: translateY(0);
}

.title-bef,
.title-slogan,
.title-aft {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.title-bef {
    transform: translateY(-20px);
    transition-delay: 0.2s;
}

.title-slogan {
    transform: translateY(30px);
    transition-delay: 0.4s;
}

.title-aft {
    transform: translateY(20px);
    transition-delay: 0.6s;
}

.title.appeared .title-bef,
.title.appeared .title-slogan,
.title.appeared .title-aft {
    opacity: 1;
    transform: translateY(0);
}

/* Дополнительные эффекты для элементов */
.title-bef-button {
    display: inline-block;
    transform: scale(0.9);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.title.appeared .title-bef-button {
    transform: scale(1);
}

.title-slogan span {
    display: inline-block;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.title.appeared .title-slogan span {
    transform: translateY(0);
    opacity: 1;
}

.title-aft-line {
    width: 0;
    height: 1px;
    background: #ff6a00;
    transition: width 1s ease-out 0.8s;
}

.title.appeared .title-aft-line {
    width: 80%;
}

@media (max-width: 768px) {
    .logo {
        grid-template-columns: 1fr; /* Одна колонка */
        padding: 0 20px;
        height: auto;
        min-height: 100vh;
        padding-top: 80px; /* Учитываем шапку */
        padding-bottom: 50px;
    }

    .title {
        padding-left: 0;
    }

    .title-slogan {
        font-size: 46px; /* Уменьшаем заголовок */
        line-height: 1.3;
    }

    .title-bef,
    .title-aft {
        display: none;
        grid-template-columns: 0.5fr 1fr; /* Уменьшаем отступы */
    }

    .title-aft-line {
        width: 50px !important; /* Укорачиваем линию */
    }

    /* Анимации для мобилок */
    .title.appeared .title-slogan,
    .title.appeared .title-bef,
    .title.appeared .title-aft {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 768px) {
    .neon-arc {
        width: 1500px;
        height: 1500px;
        bottom: -900px;
        box-shadow: 
            0 0 60px rgba(255, 106, 0, 0.7),
            inset 0 5px 150px rgba(255, 106, 0, 0.7);
    }

    .neon-glow {
        width: 1500px;
        height: 1500px;
        bottom: -1000px;
    }
}

/*  */

.info-col {
    padding-top: 50px;
    padding-left: 100px;
}

.info {
    color: #aaa;
    font-size: 14px;
    max-width: 500px;
    margin-bottom: 30px;
    line-height: 1.8;
    text-align: justify;
}

.stats-container {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat-block {
    text-align: start;
}

.stat-number {
    font-size: 78px;
    font-weight: 200;
    color: #ff6a00;
    line-height: 1.2;
    margin-bottom: 5px;
    text-shadow: 0 0 35px rgba(255, 106, 0, 0.5);
}

.stat-number {
    transition: opacity 0.3s ease;
    opacity: 1;
    font-variant-numeric: tabular-nums;
    /* Для равной ширины цифр */
}

.stat-desc {
    font-size: 16px;
    color: #e6e6e6;
    max-width: 200px;
    line-height: 1.4;
}

/* @media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        gap: 20px;
    }

    .stat-number {
        font-size: 36px;
    }
} */

@media (max-width: 768px) {
    .info-col {
        padding-left: 0;
        padding-top: 30px;
    }

    .info {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .stats-container {
        flex-direction: column;
        gap: 15px;
    }

    .stat-number {
        font-size: 42px; /* Уменьшаем цифры */
    }

    .stat-desc {
        font-size: 14px;
    }
}

/*  */
.info-col {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.info-col.appeared {
    opacity: 1;
    transform: translateY(0);
}

.info {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    margin-bottom: 20px;
}

/* Анимация для второго блока текста */
.info-col.appeared .info:nth-child(2) {
    transition-delay: 0.8s;
}

/* Анимация для блока статистики */
.stats-container {
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease;
}

.info-col.appeared .stats-container {
    opacity: 1;
    transform: scale(1);
    transition-delay: 1.2s;
}

/*  */

/* Первый блок */
.first-block {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 100px 40px;
    background-color: #0a0a0a;
    border-top: 1px solid rgba(255, 106, 0, 0.2);
    /* border-bottom: 1px solid rgba(255, 106, 0, 0.2); */
}

.first-block-info {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
    max-width: 600px;
    padding-right: 40px;
}

.first-block-info span {
    color: #ff6a00;
}

.first-block-cyrcle {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.progress-circle {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: conic-gradient(#ff6a00 100%, #333 0%);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 50px rgba(255, 106, 0, 0.3);
    position: relative;
}

.progress-inner {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: #0a0a0a;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 60px;
    font-weight: 700;
    color: #ff6a00;
}

/* Второй блок */
/* .second-block {
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.second-block-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23111111"/><path d="M0 0L100 100" stroke="%23222" stroke-width="1"/><path d="M100 0L0 100" stroke="%23222" stroke-width="1"/></svg>');
    background-size: cover;
    opacity: 0.5;
    z-index: -1;
}

.second-block-image-text {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    max-width: 800px;
    color: #fff;
    line-height: 1.4;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.second-block-image-text span {
    color: #ff6a00;
} */

/*  */
.second-block {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.second-block-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../static/icon/m-theme-3.jpg');
    background-size: cover;
    background-position: center;
    transform: scale(9);
    /* Начальное увеличение */
    transition: transform 5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
    filter: brightness(0.1) blur(1px);
}

.second-block.visible .second-block-image {
    transform: scale(0.6);
    /* Конечный масштаб */
    filter: brightness(1) blur(0px);
}

.second-block-image-text {
    position: absolute;
    z-index: 2;
    font-size: 42px;
    font-weight: 800;
    color: rgb(255, 255, 255);
    max-width: 1200px;
    height: 100%;
    left: 900px;
    padding-top: 420px;
    padding-left: 50px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.5s;
    backdrop-filter: blur(15px);
}

.second-block-image-text span {
    color: #ff6a00;
}

.second-block.visible .second-block-image-text {
    opacity: 1;
    transform: translateY(0);
}

.second-block.visible:before {
    opacity: 1;
}

/* Адаптивность */
@media (max-width: 992px) {
    .second-block-image-text {
        font-size: 32px;
        max-width: 90%;
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .second-block-image-text {
        font-size: 24px;
        padding: 20px;
    }
}


/* Адаптивность */
/* @media (max-width: 1024px) {

    .logo,
    .first-block {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 100px;
    }

    .info-col {
        padding-left: 0;
        margin-top: 40px;
    }

    .info {
        max-width: 100%;
    }

    .title {
        font-size: 48px;
    }

    .first-block-info {
        padding-right: 0;
        margin-bottom: 60px;
        text-align: center;
        max-width: 100%;
    }

    .header {
        grid-template-columns: auto;
        justify-content: space-between;
        padding: 15px 20px;
    }

    .nav {
        display: none;
    }

    .header-login {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 25px;
        right: 20px;
        color: #fff;
        font-size: 24px;
        cursor: pointer;
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 36px;
    }

    .first-block-info,
    .second-block-image-text,
    .thrid-block-info {
        font-size: 28px;
    }

    .progress-circle {
        width: 280px;
        height: 280px;
    }

    .progress-inner {
        width: 230px;
        height: 230px;
        font-size: 48px;
    }
} */

.mobile-menu-btn {
    display: none;
}

/* Третий блок */
.third-block {
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, #000000 0%, #000 100%);
    padding: 60px 40px;
}

.third-block-container {
    max-width: 1600px;
    width: 80%;
    margin: 0 auto;
}

.new-header {
    text-align: center;
    /* margin-bottom: 100px; */
    margin-top: 100px;
}

.third-block-container-new-text {
    text-align: center;
    margin-top: 100px;
    font-size: 40px;

    /* Начальное состояние (невидимое) */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 3s ease-out, transform 5s ease-out;
}

/* Класс для видимого состояния */
.third-block-container-new-text.visible {
    opacity: 1;
    transform: translateY(0);
}

.header-text {
    display: inline-block;
    color: #fff;
    font-size: 38px;
    line-height: 1.4;
    width: 100%;
}

.intresting-block {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    height: 60vh;
    position: relative;
}

.intresting-block-text-block {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    font-weight: 300;
    text-align: center;
    margin-right: 180px;
}

.intresting-block-questions-block {
    display: grid;
    grid-template-rows: repeat(5, 1fr);
    font-size: 10px;
}

.intresting-block-question {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 300;
}

.intresting-connecting-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.intresting-connecting-lines path {
    stroke: rgba(255, 106, 0, 0.558);
    stroke-width: 1;
    fill: none;
    /* Убираем transition для stroke-dashoffset */
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

/* Эффект свечения при наведении на текстовый блок */
.intresting-block-text-block:hover~.intresting-connecting-lines path {
    stroke-width: 1;
}

.animations-completed .intresting-block-text-block:hover~.intresting-connecting-lines path {
    stroke-width: 1;
    filter: drop-shadow(0 0 3px rgba(255, 106, 0, 0.8));
}

.intresting-block.visible .intresting-connecting-lines path {
    animation: draw-line 1.5s forwards;
}

@keyframes draw-line {
    to {
        stroke-dashoffset: 0;
    }
}

/* Анимация появления вопросов */
.intresting-block-question {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Анимация рисования линий */
.intresting-connecting-lines path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 1.5s ease;
}

/* Класс, который добавляется при появлении блока */
.intresting-block.visible .intresting-block-question {
    opacity: 1;
    transform: translateY(0);
}

.intresting-block.visible .intresting-connecting-lines path {
    stroke-dashoffset: 0;
}

/* Задержки для последовательного появления */
.intresting-block-question:nth-child(1) {
    transition-delay: 0.1s;
}

.intresting-block-question:nth-child(2) {
    transition-delay: 0.3s;
}

.intresting-block-question:nth-child(3) {
    transition-delay: 0.5s;
}

.intresting-block-question:nth-child(4) {
    transition-delay: 0.7s;
}

.intresting-block-question:nth-child(5) {
    transition-delay: 0.9s;
}

.intresting-connecting-lines path:nth-child(1) {
    transition-delay: 1.1s;
}

.intresting-connecting-lines path:nth-child(2) {
    transition-delay: 1.3s;
}

.intresting-connecting-lines path:nth-child(3) {
    transition-delay: 1.5s;
}

.intresting-connecting-lines path:nth-child(4) {
    transition-delay: 1.7s;
}

.intresting-connecting-lines path:nth-child(5) {
    transition-delay: 1.9s;
}

.intresting-connecting-lines path:nth-child(1) {
    animation-delay: 1.1s;
}

.intresting-connecting-lines path:nth-child(2) {
    animation-delay: 1.3s;
}

.intresting-connecting-lines path:nth-child(3) {
    animation-delay: 1.5s;
}

.intresting-connecting-lines path:nth-child(4) {
    animation-delay: 1.7s;
}

.intresting-connecting-lines path:nth-child(5) {
    animation-delay: 1.9s;
}

/* Фиксированные стили карусели */
.fixed-carousel {
    height: 300px;
    overflow: hidden;
    position: relative;
    display: flex;
    margin-top: 100px;
    margin-bottom: 100px;
}

.carousel-scrollbar {
    width: 50px;
    position: relative;
    margin-left: 20px;
}

.scrollbar-thumb {
    transition: top 0.7s ease;
}

.scrollbar-dots {
    position: absolute;
    top: 20px;
    bottom: 20px;
    /* left: 20px; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.scrollbar-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #323232;
    cursor: pointer;
    transition: all 0.7s;
    position: relative;
}

.scrollbar-dots .dot.active {
    background: #ff6a00;
    box-shadow: 0 0 15px rgba(255, 106, 0, 0.9);
    transform: scale(1.9);
}

.scrollbar-dots .dot:hover {
    transform: scale(1.5);
    background: #ff6a00;
}

.carousel-viewport {
    height: 100%;
    width: 100%;
    overflow: hidden;
    flex: 1;
    /* Занимает оставшееся пространство */
}

.carousel-track {
    display: flex;
    flex-direction: column;
    transition: transform 0.6s ease-in-out;
    will-change: transform;
}

.carousel-item {
    height: 300px;
    /* Высота равна высоте viewport */
    margin-right: 85px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    padding: 20px;
}

/* Остальные стили (круги, текст) */
.circle-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.reflection-text {
    text-align: center;
    padding: 0 20px;
    font-size: 28px;
    line-height: 1.5;
}

.reflection-text span {
    font-weight: bold;
    color: #ff6a00;
    display: block;
    margin-top: 10px;
}

/* Правый блок */
.right-column {
    width: 100%;
    color: #fff;
    font-size: 18px;
    text-align: justify;
    padding: 20px;
    /* background: rgba(255, 106, 0, 0.1); */
    /* border-left: 3px solid #ff6a00; */
    border-radius: 0 8px 8px 0;
    box-sizing: border-box;
    margin-top: 20px;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

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

.step.reversed {
    flex-direction: row-reverse;
}

.step-image {
    flex: 0 0 200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 2s ease;
    box-shadow: 0 0 25px #ff6a00;
}

.step-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 2s ease;
}

.step-image img:hover {
    transform: scale(1.3);
}

.step-image:hover {
    /* transform: scale(1.3); */
    box-shadow: 0 0 25px #ff6a00;
}

.step-text {
    padding: 20px;
    font-size: 14px;
}

.step-text span {
    color: #ff6a00;
}

/* Адаптивность */
/* @media (max-width: 768px) {

    .step,
    .step.reversed {
        flex-direction: column;
    }

    .step-image {
        width: 100%;
        max-width: 300px;
    }

    .step.reversed .step-text {
        border-right: none;
        border-left: 4px solid #00cec9;
    }
} */

.neon-balls-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.neon-ball {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    transition: transform 0.9s ease;
    top: 600px;
}

.ball-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: pulse 2s infinite alternate;
}

.pink .ball-glow {
    background: radial-gradient(circle at center, rgba(255, 106, 0, 0.332) 0%, transparent 70%);
}

.third-block {
    position: relative;
    overflow: hidden;
}

.lines-background {
    position: absolute;
    top: 500px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.lines-background svg {
    width: 100%;
    height: 100%;
}

.line-group {
    /* top: 500px; */
    animation: moveLine 18s linear infinite;
}

.line-group:nth-child(2) {
    animation: moveLine 22s linear infinite;
    animation-delay: -5s;
}

.line-group:nth-child(3) {
    animation: moveLine 26s linear infinite;
    animation-delay: -10s;
}

@keyframes moveLine {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-25%);
    }
}

/* Обновленный z-index для контента */
.third-block-container {
    position: relative;
    z-index: 1;
}

@keyframes pulse {
    0% {
        opacity: 0.6;
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Стили для анимированных линий */
.third-block {
    position: relative;
    overflow: hidden;
}

.lines-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.lines-background svg {
    width: 100%;
    height: 100%;
}

.line-group {
    animation: moveLine 18s linear infinite;
}

.line-group:nth-child(2) {
    animation: moveLine 22s linear infinite;
    animation-delay: -5s;
}

.line-group:nth-child(3) {
    animation: moveLine 26s linear infinite;
    animation-delay: -10s;
}

@keyframes moveLine {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-25%);
    }
}

/* Анимация для точек */
.moving-dot {
    animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        filter: url(#glow);
        opacity: 0.8;
    }

    100% {
        filter: url(#glow) brightness(1.5);
        opacity: 1;
    }
}

/* Обновленный z-index для контента */
.third-block-container {
    position: relative;
    z-index: 1;
}

.questions-block {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

/* Создаем псевдоэлемент для эффекта стекла */
.questions-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: 200px 200px;
    opacity: 0.4;
    z-index: 0;
}

.questions-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    max-width: 100%;
    padding: 10px 0;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.questions-item {
    height: 100px;
    min-width: 100px;
    max-width: 100px;
    background: rgba(20, 20, 20, 0.65);
    /* Полупрозрачный черный */
    backdrop-filter: blur(8px);
    /* Размытие для эффекта стекла */
    -webkit-backdrop-filter: blur(8px);
    /* Для Safari */
    border-radius: 40px;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.6),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    /* Тонкая внутренняя граница */
    transition:
        max-width 3s ease,
        min-width 2s ease,
        background 3s ease,
        box-shadow 3s ease,
        border-radius 3s ease,
        color 3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: transparent;
    padding: 15px;
    box-sizing: border-box;
    cursor: pointer;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    white-space: nowrap;
}

/* Оранжевый знак вопроса */
.questions-item::before {
    content: "?";
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: bold;
    color: #ff6a00;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s ease;
    text-shadow: 0 0 8px rgba(255, 106, 0, 0.5);
    /* Свечение знака */
}

.questions-item:hover {
    background: rgba(30, 30, 30, 0.7);
    /* Слегка светлее при наведении */
    box-shadow:
        0 0 12px rgba(255, 106, 0, 0.4),
        inset 0 0 8px rgba(255, 106, 0, 0.2);
    /* Оранжевое свечение */
    min-width: 100px;
    max-width: 400px;
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.9);
    /* Полупрозрачный белый текст */
    z-index: 10;
    white-space: normal;
}

/* Скрываем знак вопроса при наведении */
.questions-item:hover::before {
    opacity: 0;
}

/* Адаптивность для мобильных устройств */
/* @media (max-width: 1200px) {
    .questions-row {
        flex-wrap: wrap;
        justify-content: center;
        max-width: 800px;
    }
}

@media (max-width: 600px) {
    .questions-row {
        max-width: 400px;
    }
} */

/* Мобильная адаптация третьего блока */
@media (max-width: 768px) {
    .third-block {
        padding: 30px 20px;
        min-height: auto;
    }

    .third-block-container {
        width: 100%;
    }

    /* Блок с текстом и вопросами */
    .intresting-block {
        grid-template-columns: 1fr;
        height: auto;
        gap: 40px;
    }

    .intresting-block-text-block {
        font-size: 24px;
        margin-right: 0;
        padding: 20px;
    }

    .intresting-block-questions-block {
        grid-template-rows: repeat(5, auto);
        gap: 20px;
        padding: 0 20px;
    }

    .intresting-block-question {
        font-size: 14px;
        padding: 10px 0;
    }

    /* Адаптация SVG-линий */
    .intresting-connecting-lines {
        display: none; /* На мобильных скрываем сложные линии */
    }

    /* Альтернативное подключение вопросов */
    .intresting-block-question::before {
        content: "→";
        color: #ff6a00;
        margin-right: 10px;
        font-size: 16px;
    }

    /* Текст в центре */
    .third-block-container-new-text {
        font-size: 24px;
        margin-top: 50px;
    }

    /* Карусель */
    .fixed-carousel {
        height: auto;
        flex-direction: column;
        margin: 50px 0;
    }

    .carousel-scrollbar {
        width: 100%;
        height: 50px;
        margin-left: 0;
        margin-bottom: 20px;
    }

    .scrollbar-dots {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        top: auto;
        bottom: 10px;
    }

    .carousel-track {
        flex-direction: row;
        height: auto;
    }

    .carousel-item {
        height: auto;
        width: 100%;
        margin-right: 0;
        padding: 20px;
    }

    /* Шаги в карусели */
    .step {
        flex-direction: column;
        gap: 20px;
    }

    .step-image {
        flex: 0 0 150px;
    }

    .step-text {
        font-size: 14px;
        text-align: center;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 480px) {
    .intresting-block-text-block {
        font-size: 20px;
    }

    .intresting-block-question {
        font-size: 12px;
    }

    .third-block-container-new-text {
        font-size: 20px;
    }
}

/* Убираем карусель на мобильных */
@media (max-width: 768px) {
    .fixed-carousel {
        display: none; /* Скрываем оригинальную карусель */
    }
    
    /* Создаем новый вертикальный список */
    .mobile-steps {
        display: flex;
        flex-direction: column;
        gap: 40px;
        margin: 50px 0;
        padding: 0 20px;
    }
    
    .mobile-step {
        background: rgba(255, 106, 0, 0.1);
        border-radius: 12px;
        padding: 25px;
        border: 1px solid rgba(255, 106, 0, 0.3);
    }
    
    .mobile-step-image {
        width: 100%;
        max-width: 200px;
        margin: 0 auto 20px;
        border-radius: 8px;
        overflow: hidden;
    }
    
    .mobile-step-image img {
        width: 100%;
        height: auto;
        display: block;
    }
    
    .mobile-step-text {
        text-align: center;
        font-size: 16px;
        line-height: 1.5;
    }
    
    .mobile-step-text span {
        display: block;
        margin-top: 10px;
        color: #ff6a00;
        font-weight: 500;
    }
}

/* Показываем только на мобильных */
@media (min-width: 769px) {
    .mobile-steps {
        display: none;
    }
}

/* НОВЫЕ СТИЛИ ДЛЯ НОВЫХ БЛОКОВ */
/* Новые стили для добавленных блоков */
.fourth-block {
    min-height: 100vh; /* Заменил height: 90% на min-height для гарантии покрытия */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px; /* Увеличил padding */
    background-color: #000000;
    position: relative;
    overflow: visible; /* Изменил на visible чтобы контент не обрезался */
    z-index: 2; /* Добавил z-index для правильного наложения */
    box-sizing: border-box; /* Важно для правильного расчета размеров */
}

.fourth-block-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1200px;
    /* justify-content: center;
    align-items: center;
    text-align: center; */
}

.fourth-block-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
    line-height: 1.4;
}

.fourth-block-title span {
    color: #ff6a00;
    text-shadow: 0 0 25px rgba(255, 106, 0, 0.5);
}

.fourth-block-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 15px;
}

.our-rull {
    font-size: 140px;
    margin-bottom: 20px;
}

.fourth-block-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    gap: 20px;
}

.fourth-block-block {
    background: rgba(75, 75, 75, 0.148);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: all 1s ease;
}

.fourth-block-block:hover {
    border: 1px solid rgba(255, 106, 0, 1);
    box-shadow: 0 0px 20px rgba(255, 106, 0, 1);
}


.fourth-block-block-1 {
    width: calc(35% - 10px);
}

.fourth-block-block-2 {
    width: calc(65% - 10px);
}

.fourth-block-block-3,
.fourth-block-block-4 {
    width: calc(50% - 10px);
}

.fourth-block-content-img-1 {
    display: block;
    height: 85px;
    width: 85px;
    margin-left: 160px;
    margin-top: 50px;
}

.fourth-block-content-img-2 {
    display: block;
    height: 230px;
    width: 250px;
    border-left: 1px solid rgba(255, 106, 0, 1);
    /* margin-left: 150px; */
    /* margin-top: 50px; */
}

.fourth-block-content-img-3 {
    display: block;
    height: 85px;
    width: 85px;
    margin-left: 250px;
    margin-top: 50px;
}

.fourth-block-text {
    padding: 20px;
    margin-bottom: 30px;
    font-size: 12px;
}

.fourth-block-text-second {
    padding: 20px;
    margin-top: 70px;
    font-size: 12px;
}

.fourth-block-text-fourth {
    padding: 20px;
    margin-top: 1px;
    font-size: 18px;
    color: #ff6a00;
    font-weight: 400;
}

.fourth-block-block-2 .fourth-block-content {
    display: flex;
}

/* Стили для четвертого блока */
.fourth-block-block-4 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.fourth-block-block {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease, border 1s ease, box-shadow 1s ease;
}

.fourth-block-block.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Мобильная адаптация fourth-block */
@media (max-width: 768px) {
    .fourth-block {
        padding: 30px 20px;
        height: auto;
    }

    .our-rull {
        font-size: 50px;
        margin-bottom: 30px;
        text-align: center;
    }

    .fourth-block-row {
        flex-direction: column;
        margin-bottom: 15px;
        gap: 15px;
    }

    .fourth-block-block {
        width: 100% !important; /* Переопределяем все ширины */
        margin-bottom: 0;
    }

    .fourth-block-content-img-1,
    .fourth-block-content-img-3 {
        height: 60px;
        width: 60px;
        margin: 30px auto 20px !important; /* Центрируем иконки */
    }

    .fourth-block-content-img-2 {
        height: 180px;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
        border-left: none;
        border-top: 1px solid rgba(255, 106, 0, 1);
        padding-top: 20px;
    }

    .fourth-block-text,
    .fourth-block-text-second,
    .fourth-block-text-fourth {
        font-size: 14px;
        padding: 15px;
        margin: 0;
        text-align: center;
    }

    .fourth-block-text-fourth {
        font-size: 16px;
    }

    .fourth-block-block-2 .fourth-block-content {
        flex-direction: column;
    }

    /* Упрощаем анимации для мобильных */
    .fourth-block-block {
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .fourth-block-block:hover {
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
}

/* Для очень маленьких экранов */
@media (max-width: 480px) {
    .our-rull {
        font-size: 40px;
    }

    .fourth-block-text,
    .fourth-block-text-second {
        font-size: 13px;
    }

    .fourth-block-text-fourth {
        font-size: 15px;
    }

    .fourth-block-content-img-2 {
        height: 150px;
    }
}
/* Блок примера рабочего пространства */
.workspace-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.workspace-title {
    font-size: 3.5rem;
    text-transform: uppercase;
    color: white;
    /* text-shadow: 0 0 10px #ff6a00, 0 0 20px #ff6a00; */
    letter-spacing: 2px;
}

.workspace-block-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.workspace-block-container img {
    max-width: 60%;
    height: auto;
    /* box-shadow: 0 0 15px #ff6a00; */
    border-radius: 15px;
    transition: all 1s;
}

.workspace-block-container img:hover {
    box-shadow: 0 0 15px #ff6a00;
}

/* Адаптация для планшетов (768px и меньше) */
@media (max-width: 768px) {
    .workspace-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .workspace-block-container img {
        max-width: 75%;
    }
}

/* Адаптация для мобильных (480px и меньше) */
@media (max-width: 480px) {
    .workspace-block {
        padding: 15px;
        gap: 15px;
    }
    
    .workspace-title {
        font-size: 1.8rem;
        line-height: 1.3;
        letter-spacing: normal;
    }
    
    .workspace-block-container img {
        max-width: 100%;
        border-radius: 10px;
    }
}


/* ПЯТЫЙ БЛОК */

.fifth-block {
    min-height: 100vh;
    padding: 60px 20px;
    background-color: #000;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tools-container {
    max-width: 1400px;
    width: 100%;
    padding: 20px;
}

.tools-title {
    font-size: 42px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 70px;
    color: #fff;
    line-height: 1.4;
    /* text-transform: uppercase; */
    letter-spacing: 2px;
    position: relative;
}

/* .tools-title span {
    color: #ff6a00;
    position: relative;
} */

.tools-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    min-height: 80vh;
}

.tools-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 30%;
    z-index: 1;
}

.center-fire {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 200px;
}

.fire-emoji {
    font-size: 150px;
    animation: fire-pulse 2s infinite alternate;
    cursor: default;
    transition: all 0.4s ease;
}

.fire-emoji {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes fire-pulse {
    0% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(255, 106, 0, 0.5);
    }

    100% {
        transform: scale(1.1);
        text-shadow: 0 0 30px rgba(255, 106, 0, 0.8);
    }
}

.tool-card {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 106, 0, 0.3);
    transition: all 2s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 106, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: all 2s ease;
}

.tool-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 35px rgba(255, 106, 0, 0.25);
    border: 1px solid rgba(255, 106, 0, 0.7);
    background: rgba(30, 30, 30, 0.9);
}

.tool-card:hover::before {
    opacity: 1;
}

.tool-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 106, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: #ff6a00;
    transition: all 2s ease;
}

.tool-card:hover .tool-icon {
    transform: scale(1.15);
    background: rgba(255, 106, 0, 0.2);
    box-shadow: 0 0 25px rgba(255, 106, 0, 0.4);
    color: #fff;
}

.tool-name {
    font-size: 24px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 15px;
    color: #fff;
    transition: color 2s ease;
}

.tool-card:hover .tool-name {
    color: #ff6a00;
    text-shadow: 0 0 10px rgba(255, 106, 0, 0.4);
}

.tool-description {
    font-size: 16px;
    font-weight: 300;
    color: #aaa;
    text-align: center;
    line-height: 1.6;
    transition: color 2s ease;
}

.tool-card:hover .tool-description {
    color: #eee;
}

/* Изогнутые линии соединения */
.connection-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.line {
    position: absolute;
    stroke: rgba(255, 106, 0, 0.3);
    stroke-width: 2;
    fill: none;
    transition: all 2s ease;
}

/* Эффект при наведении на карточку */
.tool-card:hover~.connection-line .line[data-line="1"] {
    stroke: #ff6a00;
    stroke-width: 3;
    filter: drop-shadow(0 0 8px rgba(255, 106, 0, 0.7));
}

.tool-card:hover~.connection-line .line[data-line="2"] {
    stroke: #ff6a00;
    stroke-width: 3;
    filter: drop-shadow(0 0 8px rgba(255, 106, 0, 0.7));
}

.tool-card:hover~.connection-line .line[data-line="3"] {
    stroke: #ff6a00;
    stroke-width: 3;
    filter: drop-shadow(0 0 8px rgba(255, 106, 0, 0.7));
}

.tool-card:hover~.connection-line .line[data-line="4"] {
    stroke: #ff6a00;
    stroke-width: 3;
    filter: drop-shadow(0 0 8px rgba(255, 106, 0, 0.7));
}

.tool-card:hover~.connection-line .line[data-line="5"] {
    stroke: #ff6a00;
    stroke-width: 3;
    filter: drop-shadow(0 0 8px rgba(255, 106, 0, 0.7));
}

.tool-card:hover~.connection-line .line[data-line="6"] {
    stroke: #ff6a00;
    stroke-width: 3;
    filter: drop-shadow(0 0 8px rgba(255, 106, 0, 0.7));
}

.tool-card:hover~.connection-line .line[data-line="7"] {
    stroke: #ff6a00;
    stroke-width: 3;
    filter: drop-shadow(0 0 8px rgba(255, 106, 0, 0.7));
}

.tool-card:hover~.connection-line .line[data-line="8"] {
    stroke: #ff6a00;
    stroke-width: 3;
    filter: drop-shadow(0 0 8px rgba(255, 106, 0, 0.7));
}

/* Эффект для центрального огня при наведении на любой инструмент */
.tool-card:hover~.center-fire .fire-emoji {
    transform: scale(1.25);
    text-shadow: 0 0 40px rgba(255, 106, 0, 0.9);
    animation: none;
}

/* Анимация появления */
@keyframes appear {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.appear-animation {
    animation: appear 0.6s ease-out forwards;
    opacity: 0;
}

.tool-card:nth-child(1) {
    animation-delay: 0.1s;
}

.tool-card:nth-child(2) {
    animation-delay: 0.2s;
}

.tool-card:nth-child(3) {
    animation-delay: 0.3s;
}

.tool-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* Адаптивность */
@media (max-width: 1100px) {
    .tools-layout {
        flex-direction: column;
        gap: 60px;
    }

    .tools-column {
        width: 100%;
        max-width: 500px;
    }

    .center-fire {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 40px 0;
    }

    .connection-line {
        display: none;
    }

    .tool-card:hover~.center-fire .fire-emoji {
        transform: scale(1.15);
    }
}

@media (max-width: 768px) {
    .tools-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .fire-emoji {
        font-size: 100px;
    }

    .tool-card {
        padding: 20px;
    }

    .tool-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .tool-name {
        font-size: 20px;
    }
}

/* ШЕСТОЙ БЛОК */
.sixth-block {
    min-height: 100vh;
    padding: 100px 40px;
    background: linear-gradient(to bottom, #000000 0%, #000 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    cursor: none;
    overflow: hidden;
}

.ai-container-title {
    font-size: 50px;
    font-weight: 200;
    color: #fff;
    margin-bottom: 60px;
    text-align: center;
    z-index: 5;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.ai-container {
    display: grid;
    gap: 10px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    width: 100%;
}

.ai-visual {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-center {
    text-align: center;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.ai-center-title {
    width: 1200px;
    font-size: 500px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.95);
    position: relative;
    user-select: none;
    /* text-shadow: 0 0 20px rgba(255, 106, 0, 0.2); */
}

.flashlight {
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 0 300px 250px rgba(255, 106, 0, 0.5);
}

.cursor {
    position: absolute;
    /* width: 10px;
    height: 10px; */
    border: 0px solid rgba(255, 106, 0, 0.9);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 20;
    mix-blend-mode: difference;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.1s ease;
    /* box-shadow: 0 0 35px rgba(255, 106, 0, 0.8); */
}

.text-highlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
    clip-path: circle(200px at var(--mouse-x) var(--mouse-y));
}

.text-highlight .ai-center-title {
    color: rgb(255, 106, 0);
    text-shadow: 0 0 45px rgba(255, 106, 0, 0.7);
}

.text-blocks-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 4;
}

.text-block {
    position: absolute;
    width: 240px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 16px;
    line-height: 1.4;
    text-align: justify;
    transition: all 0.4s ease;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -50%);
    z-index: 5;
}

/* Позиции блоков по кругу */
#block1 {
    top: 15%;
    left: 50%;
}

#block2 {
    top: 30%;
    left: 80%;
}

#block3 {
    top: 65%;
    left: 85%;
}

#block4 {
    top: 85%;
    left: 50%;
}

#block5 {
    top: 65%;
    left: 15%;
}

#block6 {
    top: 30%;
    left: 20%;
}

/* Подсветка при наведении */
.text-block.highlighted {
    color: #ff6a00;
    text-shadow: 0 0 15px rgba(255, 106, 0, 0.318);
    font-weight: 500;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.5);
}

/* Мобильная версия sixth-block */
.sixth-block-mobile {
    padding: 50px 20px;
    background: #000;
    position: relative;
    overflow: hidden;
}

.sixth-block-mobile .ai-container-title {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    color: #ff6a00;
}

.ai-mobile-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ai-mobile-card {
    background: rgba(40, 40, 40, 0.7);
    border-radius: 12px;
    padding: 20px;
    /* border: 1px solid rgba(255, 106, 0, 0.3); */
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.ai-mobile-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.ai-mobile-card:nth-child(1) { transition-delay: 0.1s; }
.ai-mobile-card:nth-child(2) { transition-delay: 0.3s; }
.ai-mobile-card:nth-child(3) { transition-delay: 0.5s; }
.ai-mobile-card:nth-child(4) { transition-delay: 0.7s; }
.ai-mobile-card:nth-child(5) { transition-delay: 0.9s; }
.ai-mobile-card:nth-child(6) { transition-delay: 1.1s; }

.ai-mobile-card span {
    color: #ff6a00;
    font-weight: 500;
}

.ai-mobile-center {
    text-align: center;
    margin: 30px 0;
}

.ai-mobile-title {
    font-size: 140px;
    font-weight: 700;
    color: rgba(255, 106, 0, 0.8);
    margin-bottom: 20px;
}

@media (max-width: 480px) {
    .sixth-block-mobile .ai-container-title {
        font-size: 44px;
        color: white;
    }
    
    .ai-mobile-card {
        padding: 15px;
        font-size: 14px;
    }
    
    .ai-mobile-title {
        font-size: 140px;
    }
}

/* СЕДЬМОЙ БЛОК */

.seventh-block {
    /* min-height: 100vh; */
    padding: 20px 40px;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /* border-top: 1px solid rgba(255, 106, 0, 0.2); */
    /* border-bottom: 1px solid rgba(255, 106, 0, 0.2); */
}

.balance-container {
    max-width: 900px;
    text-align: justify;
}

.balance-title {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 40px;
    color: #fff;
    line-height: 1.4;
    text-align: center;
}

.balance-title span {
    color: #ff6a00;
}

.balance-description {
    font-size: 18px;
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 50px;
}

.balance-quote {
    font-size: 20px;
    color: #ff6a00;
    font-style: italic;
    margin: 40px auto;
    max-width: 700px;
    padding: 20px;
    border-left: 3px solid #ff6a00;
    text-align: left;
}

.minimal-block-hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.minimal-block-hero-title {
    font-size: 72px;
    font-weight: 300;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 30px;
}

.minimal-block-hero-subtitle {
    font-size: 24px;
    color: #aaa;
    max-width: 700px;
    line-height: 1.8;
    margin-bottom: 50px;
}

.minimal-block-hero-subtitle span {
    color: #ff6a00;
}

.minimal-scroll-animation {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.minimal-scroll-animation.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Задержки для последовательного появления */
.minimal-block-hero-title.visible {
    transition-delay: 0.2s;
}

.minimal-block-hero-subtitle.visible {
    transition-delay: 0.4s;
}

/* Анимация появления */
.scroll-appear {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-appear.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Опциональные задержки для последовательного появления */
.balance-title {
    transition-delay: 0.1s !important;
}

.balance-description:nth-of-type(1) {
    transition-delay: 0.3s !important;
}

.balance-quote {
    transition-delay: 0.5s !important;
}

.balance-description:nth-of-type(2) {
    transition-delay: 0.7s !important;
}

.ninth-block {
    /* min-height: 100vh; */
    padding: 100px 40px;
    background-color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cta-container {
    max-width: 1200px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 72px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #fff;
    line-height: 1.3;
}

.cta-title span {
    color: #ff6a00;
}

.cta-comparison {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 60px 0;
}

.cta-option {
    width: 300px;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;

}

.cta-bad {
    background: rgba(50, 50, 50, 0.5);
    border: 1px solid rgba(150, 150, 150, 0.3);
    transition: all 2s ease;
}

.cta-bad:hover {
    transform: scale(0.7);
}

.cta-good {
    background: linear-gradient(0deg, transparent, rgba(255, 106, 0, 0.140), transparent);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 2s ease;
}

.cta-good:hover {
    box-shadow: 0 00px 30px #ff6a00;
    transform: scale(1.3);
}

.cta-option-title {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 20px;
}

.cta-bad .cta-option-title {
    color: #aaa;
}

.cta-good .cta-option-title {
    color: #ff6a00;
}

.cta-option-price {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-bad .cta-option-price {
    color: #777;
}

.cta-good .cta-option-price {
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 106, 0, 0.7);
}

.cta-option-desc {
    font-size: 16px;
    color: #aaa;
    line-height: 1.6;
}

.risk-warning {
    font-size: 18px;
    color: #ff6a00;
    font-weight: 300;
    margin: 30px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    /* text-align: justify; */
}

.cta-button-container {
    position: relative;
    display: inline-block;
    margin: 40px 0;
    /* filter: drop-shadow(0 0 15px rgba(255, 106, 0, 0.8)); */
    transition: all 2s ease;
}

.cta-button {
    background: linear-gradient(145deg, #ff7b00, #ff7b00);
    /* text-transform: uppercase; */
    padding: 30px 100px;
    border-radius: 15px;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 3;
    transition: all 2s ease;
    outline: none;
    font-size: 24px;
    font-weight: 200;
}

.cta-button:hover {
    /* transform: translateY(-5px); */
    box-shadow: 0 0px 30px #ff6a00;
}

.cta-button-container-text {
    text-decoration: none;
    color: #ffffff;
}

.spheres-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    z-index: 1;
}

.sphere {
    position: absolute;
    border-radius: 50%;
    transition: all 0.5s ease;
}

.sphere-1 {
    width: 20px;
    height: 20px;
    background: rgba(255, 106, 0, 0.7);
    top: 50px;
    left: 100px;
}

.sphere-2 {
    width: 30px;
    height: 30px;
    background: rgba(106, 0, 255, 0.7);
    top: 200px;
    left: 50px;
}

.sphere-3 {
    width: 25px;
    height: 25px;
    background: rgba(0, 200, 255, 0.7);
    top: 150px;
    left: 300px;
}

.sphere-4 {
    width: 35px;
    height: 35px;
    background: rgba(255, 200, 0, 0.7);
    top: 250px;
    left: 200px;
}

.sphere-5 {
    width: 15px;
    height: 15px;
    background: rgba(255, 106, 0, 0.7);
    top: 100px;
    left: 250px;
}

.sphere-6 {
    width: 40px;
    height: 40px;
    background: rgba(106, 0, 255, 0.7);
    top: 300px;
    left: 150px;
}

.cta-button-container:hover .sphere {
    transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty)));
}

.cta-percent {
    font-size: 120px;
    font-weight: 800;
    color: rgba(255, 106, 0, 0.1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

/* Анимация появления */
.scroll-appear {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-appear.appeared {
    opacity: 1;
    transform: translateY(0);
}

/* Задержки для последовательного появления */
.cta-comparison .scroll-appear.appeared:nth-child(1) {
    transition-delay: 0.2s;
}

.cta-comparison .scroll-appear.appeared:nth-child(2) {
    transition-delay: 0.4s;
}

.risk-warning.scroll-appear.appeared {
    transition-delay: 0.6s;
}

.cta-button-container.scroll-appear.appeared {
    transition-delay: 0.8s;
}

.appear-animation.scroll-appear.appeared:nth-child(1) {
    transition-delay: 1.0s;
}

.appear-animation.scroll-appear.appeared:nth-child(2) {
    transition-delay: 1.2s;
}

.tenth-block {
    padding: 80px 40px;
    background-color: #0a0a0a;
    text-align: center;
    border-top: 1px solid rgba(255, 106, 0, 0.2);
}

.ps-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
}

.ps-text {
    font-size: 20px;
    color: #aaa;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 40px;
}

.ps-text span {
    color: #ff6a00;
    font-weight: 600;
}

.metal-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.metal-card {
    width: 260px;
    height: 120px;
    /* background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%); */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 106, 0, 0.3);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.metal-card:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    /* background: linear-gradient(45deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0) 100%); */
    transform: rotate(30deg);
}

.metal-card-text {
    font-size: 16px;
    font-weight: 700;
    color: #ff6a00;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.final-quotes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.quote-item {
    font-size: 14px;
    color: #777;
    font-style: italic;
    padding: 10px 20px;
    border-left: 2px solid #ff6a00;
}

/* Анимации появления */
.appear-animation {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.appear-animation.appeared {
    opacity: 1;
    transform: translateY(0);
}

/* Адаптивные стили */
@media (max-width: 1200px) {
    .ai-container {
        grid-template-columns: 1fr;
    }

    .ai-visual {
        height: 400px;
        margin-top: 50px;
    }
}

@media (max-width: 992px) {

    .fourth-block-title,
    .tools-title,
    .ai-title,
    .balance-title,
    .choice-title,
    .cta-title {
        font-size: 36px;
    }

    .honesty-text,
    .balance-description,
    .choice-subtitle {
        font-size: 20px;
    }

    .cta-comparison {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {

    .fourth-block-title,
    .tools-title,
    .ai-title,
    .balance-title,
    .choice-title,
    .cta-title {
        font-size: 28px;
    }

    .honesty-text,
    .balance-description,
    .choice-subtitle {
        font-size: 18px;
    }

    .tool-card {
        padding: 20px;
    }

    .cta-percent {
        font-size: 80px;
    }
}

.insight-section {
    background: rgba(20, 20, 20, 0.7);
    border-left: 3px solid #ff6a00;
    padding: 30px 40px;
    margin-bottom: 70px;
    border-radius: 0 15px 15px 0;
    position: relative;
    overflow: hidden;
}

.insight-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 106, 0, 0.05) 0%, rgba(255, 106, 0, 0) 100%);
    z-index: -1;
}

.insight-title {
    font-size: 32px;
    font-weight: 700;
    color: #ff6a00;
    margin-bottom: 25px;
}

.insight-text {
    font-size: 20px;
    color: #aaa;
    line-height: 1.8;
}

.insight-text span {
    color: #ff6a00;
    font-weight: 600;
}

.insight-text em {
    font-style: italic;
    color: #fff;
    font-weight: 500;
}

.secret-project-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
    font-weight: 900;
    color: rgba(255, 106, 0, 0.05);
    text-transform: uppercase;
    letter-spacing: 10px;
    z-index: -1;
    white-space: nowrap;
}

/* Адаптивность */
@media (max-width: 992px) {
    .reflection-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .third-block-title {
        font-size: 42px;
    }

    .solution-title {
        font-size: 36px;
    }

    .solution-text {
        font-size: 24px;
    }

    .secret-project-glow {
        font-size: 80px;
    }
}

@media (max-width: 768px) {
    .third-block-title {
        font-size: 36px;
    }

    .third-block-subtitle {
        font-size: 22px;
    }

    .reflection-text {
        font-size: 18px;
    }

    .insight-title {
        font-size: 28px;
    }

    .insight-text {
        font-size: 18px;
    }

    .solution-title {
        font-size: 32px;
    }

    .solution-text {
        font-size: 20px;
    }

    .secret-project-glow {
        font-size: 60px;
    }

    .truth-item {
        flex-direction: column;
        text-align: center;
    }

    .truth-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .third-block {
        padding: 60px 20px;
    }

    .third-block-title {
        font-size: 28px;
    }

    .third-block-subtitle {
        font-size: 18px;
    }

    .third-block-subtitle:before,
    .third-block-subtitle:after {
        width: 30px;
    }

    .reflection-icon {
        min-width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .solution-section {
        padding: 40px 20px;
    }

    .secret-project-glow {
        font-size: 40px;
        letter-spacing: 5px;
    }
}

.hero-block {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    margin-bottom: 30px;
}

/* Фоновые элементы */
.tech-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.15;
    overflow: hidden;
}

.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(rgba(15, 23, 42, 0.9) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.9) 1px, transparent 1px);
    background-size: 40px 40px;
}

.tech-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.circuit-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ff6a00;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 106, 0, 0.7);
    animation: pulse 3s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.circuit-line {
    position: absolute;
    background: rgba(255, 106, 0, 0.3);
}

/* Основной контент */
.solution-section {
    margin-bottom: 4rem;
    text-align: center;
    position: relative;
    padding: 0 1rem;
}

.solution-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #ffffff, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.solution-text {
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 200;
    max-width: 900px;
    margin: 0 auto;
    color: #cbd5e1;
}

.solution-text span {
    background: linear-gradient(90deg, #ff8c00, #ff5e00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 400;
    position: relative;
}

/* Truth section */
.truth-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.truth-item {
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    background: rgba(75, 75, 75, 0.148);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    align-items: center;
    text-align: justify;
}

.truth-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 106, 0, 0.3);
}

.truth-icon {
    font-size: 2.5rem;
    margin-right: 1.5rem;
    min-width: 50px;
    text-align: center;
    background: linear-gradient(135deg, #ff8c00, #ff5e00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    flex-shrink: 0;
}

.truth-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #e2e8f0;
}

.truth-text span {
    background: linear-gradient(90deg, #ff8c00, #ff5e00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
    position: relative;
}

/* Hero title */
.hero-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    margin: 3rem 0;
    position: relative;
    z-index: 1;
    line-height: 1.3;
    /* text-transform: uppercase; */
    background: linear-gradient(90deg, #fdfdfd, #ffffff, #ffffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: titleGradient 5s linear infinite;
}

@keyframes titleGradient {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

/* Reality section */
.reality-section {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-top: 2rem;
    margin-left: 125px;
    /* padding: 0 1rem; */
    max-width: 1100px;
}

.reality-title {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    background: white;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

/* Pill grid */
.pill-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.pill {
    color: #ff8c00;
    font-weight: 400;
    padding: 1.2rem;
    border-radius: 12px;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100px;
    background: rgba(75, 75, 75, 0.148);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pill:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(255, 106, 0, 0.2);
    background: rgba(75, 75, 75, 0.148);
}

.pill i {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff8c00, #ff5e00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Адаптивность */
@media (max-width: 900px) {
    .solution-title {
        font-size: 2.8rem;
    }

    .solution-text {
        font-size: 1.3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .reality-title {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .solution-title {
        font-size: 2.2rem;
    }

    .solution-text {
        font-size: 1.1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .reality-title {
        font-size: 1.6rem;
    }

    .truth-section {
        grid-template-columns: 1fr;
    }

    .pill {
        font-size: 1.1rem;
        padding: 1.2rem;
    }
}

/* Анимации */
@keyframes float {

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

    50% {
        transform: translateY(-15px);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .solution-title {
        font-size: 1.8rem;
    }

    .solution-text {
        font-size: 1.2rem;
    }

    .truth-section {
        gap: 20px;
    }

    .reality-pills {
        gap: 15px;
    }

    .pill {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .solution-section,
    .reality-section {
        padding: 30px 20px;
    }

    .truth-item {
        min-width: 100%;
    }

    .reality-pills {
        flex-direction: column;
        align-items: center;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Reality section - Mobile adaptation */
@media (max-width: 768px) {
    .reality-section {
        margin-left: 0;
        padding: 0 20px;
        margin-top: 1rem;
    }

    .reality-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }

    .pill-grid {
        grid-template-columns: 1fr 1fr; /* 2 колонки вместо 4 */
        gap: 1rem;
    }

    .pill {
        font-size: 1rem;
        padding: 1rem;
        min-height: 80px;
        backdrop-filter: blur(5px);
    }

    .pill i {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .reality-title {
        font-size: 1.1rem;
    }

    .pill-grid {
        grid-template-columns: 1fr; /* 1 колонка на очень маленьких экранах */
        max-width: 300px;
        margin: 0 auto;
    }

    .pill {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
}

/* Общие улучшения для мобильных */
@media (max-width: 768px) {
    .pill {
        transition: none; /* Убираем анимации для производительности */
    }
    
    .pill:hover {
        transform: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    /* Улучшаем читаемость текста */
    .reality-title {
        background: linear-gradient(135deg, #ffffff, #e0e0e0);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    }
}

/* Задержки для сеточных элементов */
.truth-section .animate-on-scroll.visible {
    transition-delay: calc(0.2s * var(--index));
}

.pill-grid .animate-on-scroll.visible {
    transition-delay: calc(0.15s * var(--index));
}
