/* Дополнительные стили для страницы "О нас" */
.about-hero {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 150px 100px 100px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(to bottom, #000000, #0a0a0a);
}

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

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

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

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

.mission-section {
    padding: 120px 100px;
    background-color: #0a0a0a;
    position: relative;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #fff;
}

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

.mission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.mission-card {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 15px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 106, 0, 0.3);
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 106, 0, 0.2);
    border: 1px solid rgba(255, 106, 0, 0.7);
}

.mission-icon {
    font-size: 48px;
    color: #ff6a00;
    margin-bottom: 25px;
}

.mission-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.mission-card p {
    font-size: 16px;
    color: #aaa;
    line-height: 1.8;
}

.team-section {
    padding: 120px 100px;
    background-color: #000;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    position: relative;
}

.member-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 25px;
    overflow: hidden;
    position: relative;
    border: 3px solid rgba(255, 106, 0, 0.3);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.member-role {
    font-size: 16px;
    color: #ff6a00;
    margin-bottom: 15px;
}

.member-desc {
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
}

.values-section {
    padding: 120px 100px;
    background-color: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.value-card {
    width: 300px;
    padding: 40px 30px;
    background: rgba(30, 30, 30, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(255, 106, 0, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 106, 0, 0.2);
}

.value-number {
    font-size: 72px;
    font-weight: 800;
    color: rgba(255, 106, 0, 0.2);
    line-height: 1;
    margin-bottom: 20px;
}

.value-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

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

.cta-section {
    padding: 120px 100px;
    background: linear-gradient(to bottom, #0a0a0a 0%, #000 100%);
    text-align: center;
}

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

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

.cta-subtitle {
    font-size: 24px;
    color: #aaa;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.cta-button {
    background: #ff6a00;
    color: #000;
    font-size: 18px;
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    box-shadow: 0 0 30px rgba(255, 106, 0, 0.8);
    transform: translateY(-5px);
}

/* Адаптивность */
@media (max-width: 1200px) {
    .about-hero,
    .mission-section,
    .team-section,
    .values-section,
    .cta-section {
        padding: 100px 50px;
    }
    
    .hero-title {
        font-size: 56px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .cta-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .about-hero,
    .mission-section,
    .team-section,
    .values-section,
    .cta-section {
        padding: 80px 30px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .cta-title {
        font-size: 36px;
    }
    
    .cta-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cta-title {
        font-size: 28px;
    }
}

/* Общие стили */
* {
    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: -2250px;
    left: 45%;
    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: -2250px;
    left: 45%;
    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: 104px;
    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%;
}

/*  */

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

.info {
    color: #aaa;
    font-size: 18px;
    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;
    }
}

/*  */
.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;
    }
}

/*  */

/* Третий блок */
.thrid-block {
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, #0a0a0a 0%, #000 100%);
    padding: 40px;
    text-align: center;
    border-top: 1px solid rgba(255, 106, 0, 0.2);
}

.thrid-block-info {
    font-size: 36px;
    font-weight: 700;
    max-width: 900px;
    line-height: 1.6;
    color: #fff;
}

.thrid-block-info span {
    color: #ff6a00;
    text-transform: uppercase;
}

/* Адаптивность */
@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;
}

/* НОВЫЕ СТИЛИ ДЛЯ НОВЫХ БЛОКОВ */
/* Новые стили для добавленных блоков */
.fourth-block {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    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);
    position: relative;
    overflow: hidden;
}

.hand-container {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.main-hand {
    position: relative;
    width: 300px;
    height: 400px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 300"><path d="M100,50 Q150,100 100,150 Q50,200 100,250" stroke="%23ff6a00" stroke-width="5" fill="none" stroke-linecap="round"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2;
    animation: handReach 2s ease-in-out infinite alternate;
}

.support-hands {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.support-hand {
    position: absolute;
    width: 200px;
    height: 300px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 250"><path d="M75,30 Q100,80 75,130 Q50,180 75,230" stroke="%23757575" stroke-width="3" fill="none" stroke-linecap="round"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.6;
}

.hand-1 { transform: translate(-200px, 150px) rotate(-20deg); }
.hand-2 { transform: translate(200px, 150px) rotate(20deg); }
.hand-3 { transform: translate(-350px, 100px) rotate(-30deg); }
.hand-4 { transform: translate(350px, 100px) rotate(30deg); }

@keyframes handReach {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}

.fourth-block-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
}

.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);
}

.honesty-text {
    font-size: 24px;
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
    max-width: 700px;
}

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

.fifth-block {
    min-height: 100vh;
    padding: 100px 40px;
    background-color: #000;
    position: relative;
    overflow: hidden;
}

.tools-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 70px;
    color: #fff;
    line-height: 1.4;
}

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

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.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 0.3s ease;
    backdrop-filter: blur(10px);
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 106, 0, 0.2);
    border: 1px solid rgba(255, 106, 0, 0.7);
}

.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;
}

.tool-name {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: #fff;
}

.tool-description {
    font-size: 16px;
    color: #aaa;
    text-align: center;
    line-height: 1.6;
}

.sixth-block {
    min-height: 100vh;
    padding: 100px 40px;
    background: linear-gradient(to bottom, #0a0a0a 0%, #000 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.ai-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.ai-content {
    padding: 30px;
}

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

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

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

.ai-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.ai-feature-icon {
    min-width: 30px;
    height: 30px;
    background: rgba(255, 106, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #ff6a00;
    font-size: 16px;
}

.ai-feature-text {
    font-size: 16px;
    color: #e6e6e6;
    line-height: 1.6;
}

.ai-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0.7;
    transition: all 0.5s ease;
}

.sphere-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,106,0,0.3) 0%, rgba(255,106,0,0) 70%);
    animation: pulse 4s infinite ease-in-out;
}

.sphere-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(106,0,255,0.3) 0%, rgba(106,0,255,0) 70%);
    animation: pulse 3s infinite ease-in-out 0.5s;
    top: 50px;
    left: 100px;
}

.sphere-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0,200,255,0.3) 0%, rgba(0,200,255,0) 70%);
    animation: pulse 2.5s infinite ease-in-out 1s;
    bottom: 80px;
    right: 120px;
}

.sphere-4 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255,200,0,0.3) 0%, rgba(255,200,0,0) 70%);
    animation: pulse 2s infinite ease-in-out 1.5s;
    top: 150px;
    right: 50px;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 0.9; }
    100% { transform: scale(1); opacity: 0.7; }
}

.ai-center {
    position: relative;
    z-index: 2;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    padding: 30px;
    background: rgba(10, 10, 10, 0.7);
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 106, 0, 0.5);
    box-shadow: 0 0 50px rgba(255, 106, 0, 0.2);
}

.seventh-block {
    min-height: 100vh;
    padding: 100px 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: center;
}

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

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

.balance-description {
    font-size: 24px;
    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;
}

.eighth-block {
    min-height: 100vh;
    padding: 100px 40px;
    background: linear-gradient(to bottom, #0a0a0a 0%, #000 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.choice-container {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 3;
}

.choice-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #fff;
    line-height: 1.3;
}

.choice-subtitle {
    font-size: 28px;
    color: #aaa;
    margin-bottom: 50px;
    line-height: 1.6;
}

.choice-subtitle span {
    color: #ff6a00;
    font-weight: 600;
}

.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: 900px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 52px;
    font-weight: 800;
    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);
}

.cta-good {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(255, 106, 0, 0.5);
    box-shadow: 0 0 30px rgba(255, 106, 0, 0.3);
}

.cta-option-title {
    font-size: 24px;
    font-weight: 700;
    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: 20px;
    color: #ff6a00;
    font-weight: 600;
    margin: 30px 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-container {
    position: relative;
    display: inline-block;
    margin: 40px 0;
}

.cta-button {
    background: #ff6a00;
    color: #000;
    font-size: 20px;
    font-weight: 700;
    padding: 20px 50px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
    outline: none;
}

.cta-button:hover {
    box-shadow: 0 0 30px rgba(255, 106, 0, 0.8);
    transform: translateY(-5px);
}

.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;
}

.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: 200px;
    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;
    }
}

/* ТРЕТИЙ БЛОК */
.third-block {
    min-height: 100vh;
    padding: 100px 40px;
    background: linear-gradient(to bottom, #0a0a0a 0%, #000 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 106, 0, 0.2);
    border-bottom: 1px solid rgba(255, 106, 0, 0.2);
}

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

.third-block-header {
    text-align: center;
    margin-bottom: 80px;
}

.third-block-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.third-block-subtitle {
    font-size: 28px;
    color: #ff6a00;
    font-weight: 600;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    padding: 0 20px;
}

.third-block-subtitle:before,
.third-block-subtitle:after {
    content: '';
    position: absolute;
    top: 50%;
    width: 100px;
    height: 1px;
    background: rgba(255, 106, 0, 0.5);
}

.third-block-subtitle:before {
    right: 100%;
    margin-right: 20px;
}

.third-block-subtitle:after {
    left: 100%;
    margin-left: 20px;
}

.reflection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 70px;
}

.reflection-item {
    display: flex;
    margin-bottom: 35px;
    align-items: flex-start;
}

.reflection-icon {
    font-size: 32px;
    margin-right: 20px;
    min-width: 50px;
    height: 50px;
    background: rgba(255, 106, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6a00;
}

.reflection-text {
    font-size: 20px;
    color: #e6e6e6;
    line-height: 1.6;
    padding-top: 10px;
}

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

.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;
}

.truth-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 70px;
}

.truth-item {
    display: flex;
    align-items: center;
    padding: 25px;
    background: rgba(30, 30, 30, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(255, 106, 0, 0.3);
}

.truth-icon {
    font-size: 36px;
    margin-right: 20px;
    min-width: 60px;
    height: 60px;
    background: rgba(255, 106, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6a00;
}

.truth-text {
    font-size: 18px;
    color: #fff;
    line-height: 1.6;
}

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

.reality-section {
    text-align: center;
    margin-bottom: 70px;
}

.reality-title {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
}

.reality-pills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.pill {
    padding: 15px 30px;
    background: rgba(255, 106, 0, 0.1);
    border: 1px solid rgba(255, 106, 0, 0.3);
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    color: #ff6a00;
    transition: all 0.3s ease;
}

.pill:hover {
    background: rgba(255, 106, 0, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 106, 0, 0.2);
}

.solution-section {
    text-align: center;
    position: relative;
    padding: 60px 40px;
    background: rgba(10, 10, 10, 0.7);
    border-radius: 15px;
    border: 1px solid rgba(255, 106, 0, 0.3);
    overflow: hidden;
}

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

.solution-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.solution-text {
    font-size: 28px;
    color: #aaa;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.solution-text span {
    color: #ff6a00;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.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;
    }
}