
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            
            font-family: 'Inter', sans-serif;
            background-color: #f8f8f8;
            color: #111111;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        html { scrollbar-width: none; -ms-overflow-style: none; }
        html::-webkit-scrollbar { display: none; }

        /* ==========================================================================
           ПЛАВНЫЙ СКРОЛЛ (LERP ENGINE)
           ========================================================================== */
        #scroll-proxy {
            position: absolute;
            top: 0;
            left: 0;
            width: 1px;
            z-index: -1;
        }

        #scroll-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            will-change: transform;
        }

        .scroll-content {
            width: 100%;
            will-change: transform;
        }

        /* --- АНИМАЦИЯ ПОЯВЛЕНИЯ ПРИ СКРОЛЛЕ --- */
        @keyframes slowBlurFadeIn {
            0% {
                opacity: 0;
                filter: blur(15px);
                transform: translateY(30px);
            }
            100% {
                opacity: 1;
                filter: blur(0px);
                transform: translateY(0);
            }
        }

        .animated-element {
            opacity: 0;
        }

        .animated-element.visible {
            animation: slowBlurFadeIn 1.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
        }

        .delay-1.visible { animation-delay: 0.1s; }
        .delay-2.visible { animation-delay: 0.3s; }
        .delay-3.visible { animation-delay: 0.5s; }
        .delay-4.visible { animation-delay: 0.7s; }

        /* Шапка сайта */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 80px;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(248, 248, 248, 0.95);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
            border-bottom: 1px solid transparent;
        }

        header.scrolled {
            border-bottom-color: rgba(0, 0, 0, 0.15);
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1440px;
            margin: 0 auto;
            width: 100%;
        }

        .scroll-content {
            padding-top: 84px;
        }

        .logo-img {
            height: 28px;
            width: auto;
            display: block;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 32px;
        }

        nav ul li a {
            text-decoration: none;
            color: #565656;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.2s;
        }

        nav ul li a:hover {
            color: #000;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .social-icons {
            display: flex;
            gap: 16px;
            align-items: center;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            color: #111111;
            opacity: 0.8;
            transition: opacity 0.2s, transform 0.2s;
        }

        .social-icons a:hover {
            opacity: 1;
            transform: scale(1.05);
        }

        .btn-book {
            background-color: #111111;
            color: #ffffff;
            padding: 12px 24px;
            border-radius: 12px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: background-color 0.2s;
        }

        .btn-book:hover {
            background-color: #2a2a2a;
        }

        .lang-switch {
            position: relative;
            display: flex;
            align-items: center;
            width: 148px;
            height: 44px;
            padding: 4px;
            border-radius: 12px;
            background: rgba(245, 245, 245, 0.7);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(0, 0, 0, 0.06);
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
            cursor: pointer;
        }

        .lang-toggle {
            position: relative;
            display: flex;
            align-items: center;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .lang-btn {
            flex: 1;
            text-align: center;
            text-decoration: none;
            font-size: 12px;
            font-weight: 500;
            color: #999999;
            transition: color 0.25s ease;
            line-height: 36px;
            padding: 0 2px;
            letter-spacing: 0.3px;
        }

        .lang-btn.active {
            color: #ffffff;
        }

        .lang-slider {
            position: absolute;
            top: 4px;
            left: 4px;
            width: calc((100% - 8px) / 3);
            height: calc(100% - 8px);
            background: #111111;
            border-radius: 12px;
            transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            pointer-events: none;
            z-index: 0;
        }

        .lang-switch[data-lang="en"] .lang-slider {
            transform: translateX(100%);
        }
        .lang-switch[data-lang="kz"] .lang-slider {
            transform: translateX(200%);
        }

        /* Главный экран */
        .hero-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 50px 24px 100px 24px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #ffffff;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 20px;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #ffffff;
            padding: 8px 16px;
            border-radius: 12px;
            font-size: 13px;
            color: #444444;
            margin-bottom: 24px;
            font-weight: 500;
            box-shadow: 0 2px 10px rgba(0,0,0,0.04);
        }

        .badge-dot {
            width: 6px;
            height: 6px;
            background-color: #10b981;
            border-radius: 50%;
        }

        .hero-title {
            font-size: 68px;
            font-weight: 500;
            line-height: 1.15;
            letter-spacing: -1.5px;
            color: #111111;
            margin-bottom: 24px;
            max-width: 1000px;
        }

        .title-assets {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            vertical-align: middle;
            margin: 0 2px;
            transform: translateY(-4px);
        }

        .title-assets img {
            height: 64px;
            width: auto;
            background: transparent;
            padding: 0;
            border-radius: 0;
            box-shadow: none;
        }

        .serif-text {
            font-family: 'Playfair Display', serif;
            font-style: italic;
            font-weight: 500;
        }

        .hero-subtitle {
            font-size: 15px;
            color: #666666;
            max-width: 600px;
            line-height: 1.6;
            margin-bottom: 36px;
        }

        .btn-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: #1c1c1c;
            color: #ffffff;
            padding: 16px 32px;
            border-radius: 12px;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: background-color 0.2s, transform 0.2s;
        }

        .btn-cta:hover {
            background-color: #000000;
            transform: translateY(-1px);
        }

        .hero-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            width: 100%;
            justify-content: center;
        }

        .btn-instagram {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 52px;
            height: 52px;
            border-radius: 12px;
            background-color: #1c1c1c;
            color: #ffffff;
            text-decoration: none;
            transition: background-color 0.2s, transform 0.2s;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .btn-instagram:hover {
            background-color: #000000;
            transform: translateY(-1px);
        }

        /* Бегущая строка */
        .ticker-container {
            width: 100%;
            overflow: hidden;
            padding: 30px 0 50px 0;
            display: flex;
        }

        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-25%); }
        }

        .ticker-wrap {
            display: flex;
            white-space: nowrap;
            animation: marquee 25s linear infinite;
        }

        .ticker-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding-right: 20px;
            color: #999999;
            font-size: 16px;
            font-weight: 500;
        }

        .ticker-item span.active {
            color: #111111;
        }

        .ticker-separator {
            display: flex;
            align-items: center;
            color: #cccccc;
        }

        /* Портфолио */
        .portfolio-section {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 32px;
            padding: 0 40px 80px 40px;
            max-width: 1600px;
            margin: 0 auto;
            width: 100%;
        }

        .portfolio-card {
            background: #ffffff;
            border-radius: 24px;
            padding: 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
            border: 1px solid #eeeeee;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .portfolio-card.main-card { width: 760px; flex-shrink: 0; }
        .portfolio-card.side-card { width: 320px; opacity: 0.5; flex-shrink: 1; }
        .site-png { width: 100%; height: auto; aspect-ratio: 16 / 9; border-radius: 16px; display: block; object-fit: cover; }

        /* --- БЛОК HOW IT WORKS (В СТИЛЕ OXINIX) --- */
        .how-oxinix-works {
            padding: 90px 40px;
            max-width: 1280px;
            margin: 0 auto;
            text-align: center;
        }

        .oxinix-title {
            font-size: 54px;
            font-weight: 500;
            line-height: 1.15;
            letter-spacing: -1.5px;
            margin-bottom: 60px;
            color: #111111;
        }

        .oxinix-title span { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 500; }

        .oxinix-grid {
            display: flex;
            justify-content: space-between;
            gap: 12px;
        }

        .oxinix-card {
            flex: 1;
            text-align: left;
            display: flex;
            flex-direction: column;
        }

        .oxinix-visual-space {
            width: 100%;
            height: 240px;
            background-color: #ffffff;
            border-radius: 24px;
            margin-bottom: 24px;
            border: 1px solid #efefef;
            border-bottom: none;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.01);
        }

        /* Заглушка по центру для фото */
        .oxinix-visual-space::before {
            content: "Место для фото";
            font-size: 13px;
            color: #b0b0b0;
            font-weight: 500;
        }

        .oxinix-visual-space img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .oxinix-card-title {
            font-size: 19px;
            font-weight: 600;
            color: #111111;
            line-height: 1.3;
            margin-bottom: 10px;
            letter-spacing: -0.3px;
        }

        .oxinix-card-desc { font-size: 14px; color: #777777; line-height: 1.5; }

        /* --- АДАПТИВНОСТЬ --- */
        @media (max-width: 1200px) {
            header { padding: 30px 40px; }
            .hero-title { font-size: 54px; }
            .portfolio-card.main-card { width: 600px; }
            .portfolio-card.side-card { width: 220px; }
        }

        @media (max-width: 992px) {
            #scroll-container {
                position: static;
                height: auto;
                overflow: visible;
            }
            #scroll-proxy {
                display: none;
            }
            #scroll-content {
                transform: none !important;
            }
            nav { display: none; }
            
            .oxinix-grid {
                display: flex;
                flex-direction: row;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                gap: 20px;
                padding: 10px 24px 30px 24px;
                margin: 0 -24px;
                scrollbar-width: none;
            }
            .oxinix-grid::-webkit-scrollbar { display: none; }
            
            .oxinix-card {
                min-width: 280px;
                width: 280px;
                flex-shrink: 0;
                scroll-snap-align: center;
            }

            .portfolio-section {
                justify-content: flex-start;
                overflow-x: auto;
                padding: 10px 24px 60px 24px;
                gap: 20px;
                scrollbar-width: none;
            }
            .portfolio-section::-webkit-scrollbar { display: none; }
            .portfolio-card.main-card, 
            .portfolio-card.side-card {
                width: 80vw;
                max-width: 500px;
                flex-shrink: 0;
                opacity: 1;
            }
        }

        @media (max-width: 576px) {
            header { padding: 20px 24px; }
            .header-right .social-icons { display: none; }
            .portfolio-section { display: none; }
            
            .hero-section { text-align: left; align-items: flex-start; }
            .hero-actions { justify-content: flex-start; }
            .hero-title { font-size: 36px; letter-spacing: -0.5px; }
            .title-assets img { height: 42px; }
            .hero-subtitle { font-size: 14px; }
            
            .oxinix-title { font-size: 34px; margin-bottom: 40px; }
        }
        /* --- BENTO ABOUT SECTION (FROM image_ebace1.png) --- */
.about-bento-section {
    padding: 100px 40px;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.bento-grid {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

/* Общие стили карточек */
.bento-card {
    border-radius: 28px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

/* Левая темная карточка */
.bento-card.dark-card {
    background-color: #111111;
    color: #ffffff;
    flex: 0 0 400px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.bento-me-title {
    font-size: 54px;
    font-weight: 600;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    line-height: 1.15;
}

.bento-me-title span {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 500;
    color: #666666;
}

.bento-me-text {
    font-size: 15px;
    color: #aaaaaa;
    line-height: 1.6;
    font-weight: 400;
}

/* Низ темной карточки с кнопкой и аватаром */
.dark-card-bottom {
    margin-top: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bento-avatar-mini {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: -12px;
    z-index: 2;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.bento-btn-resume {
    width: 100%;
    background-color: #ffffff;
    color: #111111;
    text-align: center;
    padding: 16px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: background-color 0.2s;
    z-index: 1;
}

.bento-btn-resume:hover {
    background-color: #ececec;
}

/* Правая сетка с метриками */
.metrics-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.bento-card.light-card {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-bottom: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
}

.metric-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
}

.metric-num {
    font-size: 54px;
    font-weight: 600;
    color: #111111;
    letter-spacing: -1.5px;
}

.metric-label {
    font-size: 13px;
    color: #999999;
    font-weight: 500;
}

.metric-desc {
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
}

/* --- АДАПТИВНОСТЬ ПОД МОБИЛКИ И ПЛАНШЕТЫ --- */
@media (max-width: 1024px) {
    .bento-card.dark-card {
        flex: 0 0 340px;
        padding: 32px;
    }
    .metric-num { font-size: 44px; }
}

@media (max-width: 992px) {
    .bento-grid {
        flex-direction: column;
    }
    .bento-card.dark-card {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .about-bento-section {
        padding: 60px 24px;
    }
    .metrics-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding-bottom: 12px;
        scrollbar-width: none;
    }
    .metrics-grid::-webkit-scrollbar { display: none; }
    .bento-card.light-card {
        min-width: 260px;
        min-height: 200px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }
    .bento-card {
        padding: 32px 24px;
    }
}
    


    /* --- BENTO ABOUT SECTION --- */
    .about-bento-section {
        padding: 100px 40px;
        max-width: 1280px;
        margin: 0 auto;
        width: 100%;
    }

    .bento-grid {
        display: flex;
        gap: 24px;
        align-items: stretch;
    }

    /* Общие стили карточек */
    .bento-card {
        border-radius: 28px;
        padding: 40px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: transform 0.3s ease;
    }

    /* Левая темная карточка */
    .bento-card.dark-card {
        background-color: #111111;
        color: #ffffff;
        flex: 0 0 400px;
        position: relative;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

    .bento-me-title {
        font-size: 54px;
        font-weight: 600;
        letter-spacing: -1.5px;
        margin-bottom: 24px;
        line-height: 1.15;
    }

    .bento-me-title span {
        font-family: 'Playfair Display', serif;
        font-style: italic;
        font-weight: 500;
        color: #666666;
    }

    .bento-me-text {
        font-size: 15px;
        color: #aaaaaa;
        line-height: 1.6;
        font-weight: 400;
    }

    /* Низ темной карточки с кнопкой и аватаром */
    .dark-card-bottom {
        margin-top: 40px;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .bento-avatar-mini {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        object-fit: cover;
        margin-bottom: -12px;
        z-index: 2;
        box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    }

    .bento-btn-resume {
        width: 100%;
        background-color: #ffffff;
        color: #111111;
        text-align: center;
        padding: 16px;
        border-radius: 12px;
        text-decoration: none;
        font-size: 15px;
        font-weight: 500;
        transition: background-color 0.2s;
        z-index: 1;
    }

    .bento-btn-resume:hover {
        background-color: #ececec;
    }

    /* Правая сетка с метриками */
    .metrics-grid {
        flex: 1;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .bento-card.light-card {
        background: #ffffff;
        border: 1px solid #eeeeee;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
    }

    .metric-header {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        margin-bottom: 20px;
    }

    .metric-num {
        font-size: 54px;
        font-weight: 600;
        color: #111111;
        letter-spacing: -1.5px;
    }

    .metric-label {
        font-size: 13px;
        color: #999999;
        font-weight: 500;
    }

    .metric-desc {
        font-size: 14px;
        color: #666666;
        line-height: 1.5;
    }

    /* --- АДАПТИВНОСТЬ И ГОРИЗОНТАЛЬНАЙ СКРОЛЛ ДЛЯ МЕТРИК --- */
    @media (max-width: 1024px) {
        .bento-card.dark-card {
            flex: 0 0 340px;
            padding: 32px;
        }
        .metric-num { font-size: 44px; }
    }

    @media (max-width: 992px) {
        .bento-grid {
            flex-direction: column;
        }
        .bento-card.dark-card {
            flex: none;
            width: 100%;
        }
        
        /* Превращаем сетку метрик в горизонтальную ленту */
        .metrics-grid {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            gap: 20px;
            padding: 10px 4px 20px 4px;
            margin: 0 -4px;
            scrollbar-width: none; /* Скрываем дефолтный скроллбар */
            scroll-behavior: smooth; /* Плавное автоматическое смещение */
        }
        
        .metrics-grid::-webkit-scrollbar {
            display: none;
        }

        .bento-card.light-card {
            min-width: 280px;
            width: 280px;
            flex-shrink: 0;
            scroll-snap-align: center;
        }
    }

    @media (max-width: 576px) {
        .about-bento-section {
            padding: 60px 24px;
        }
        .bento-card {
            padding: 32px 24px;
        }
        .bento-me-title {
            font-size: 34px;
        }
    }


 
.journal-portfolio-section { 
    padding: 100px 40px; 
    max-width: 1100px; 
    margin: 0 auto; 
    width: 100%; 
    font-family: 'Inter', sans-serif; 
} 

/* Заголовок отцентрирован на ПК, полностью на английском */ 
.portfolio-journal-title { 
    font-size: 54px; 
    font-weight: 600; 
    line-height: 1.15; 
    letter-spacing: -1.5px; 
    color: #111111; 
    margin-bottom: 80px; 
    text-align: center; 
    width: 100%; 
} 

.portfolio-journal-title span.serif-text { 
    font-family: 'Playfair Display', serif; 
    font-style: italic; 
    font-weight: 500; 
    color: #666666; 
} 

/* Сетка карточек — ровная, без смещения вниз */ 
.portfolio-journal-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 50px 60px; 
} 

.portfolio-journal-card { 
    display: flex; 
    flex-direction: column; 
    text-decoration: none; 
    color: inherit; 
    position: relative; 
} 

.portfolio-journal-img-wrapper { 
    width: 100%; 
    aspect-ratio: 16 / 11; 
    border-radius: 20px; 
    overflow: hidden; 
    background-color: #f1f1f1; 
    margin-bottom: 20px; 
} 

.portfolio-journal-img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    display: block; 
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1); 
} 

.portfolio-journal-card:hover .portfolio-journal-img { 
    transform: scale(1.04); 
} 

.portfolio-journal-info { 
    display: flex; 
    justify-content: space-between; 
    align-items: flex-start; 
    padding: 0 4px; 
} 

.portfolio-journal-name { 
    font-size: 20px; 
    font-weight: 500; 
    color: #111111; 
    letter-spacing: 0.5px; 
    transition: opacity 0.2s; 
} 

.portfolio-journal-tag { 
    font-size: 13px; 
    color: #888888; 
    font-weight: 400; 
    letter-spacing: 0.8px;
} 

.portfolio-journal-desc { 
    font-size: 13px; 
    color: #888888; 
    margin: 6px 0 0 0; 
    line-height: 1.6; 
    letter-spacing: 0.3px;
} 

/* Кнопка внутри карточки скрыта на ПК */ 
.portfolio-card-btn { 
    display: none; 
} 

.portfolio-journal-card:hover .portfolio-journal-name { 
    opacity: 0.7; 
} 

/* --- АДАПТИВНОСТЬ ПОД МОБИЛЬНЫЕ (ИСПРАВЛЕНО) --- */ 
@media (max-width: 992px) { 
    .journal-portfolio-section { 
        padding: 60px 0 60px 24px; 
    } 

    /* Выравнивание по левой стороне на мобилках */ 
    .portfolio-journal-title { 
        font-size: 42px; 
        text-align: left; 
        margin-bottom: 50px; 
        padding-right: 24px; 
    } 

    /* Горизонтальная лента со скроллом */ 
    .portfolio-journal-grid { 
        display: flex; 
        overflow-x: auto; 
        scroll-snap-type: x mandatory; 
        -webkit-overflow-scrolling: touch; 
        gap: 20px; 
        padding: 10px 24px 30px 0; 
        scrollbar-width: none; 
    } 

    .portfolio-journal-grid::-webkit-scrollbar { 
        display: none; 
    } 

    /* Карточка жестко зафиксирована, flex-shrink: 0 и box-sizing не дают ей деформироваться */ 
    .portfolio-journal-card { 
        min-width: 270px; 
        width: 76vw; 
        max-width: 460px; 
        flex-shrink: 0; 
        scroll-snap-align: start; 
        box-sizing: border-box;
        padding-bottom: 60px; /* Запас снизу под фиксированную по высоте кнопку */
    } 

    .portfolio-journal-img-wrapper { 
        border-radius: 16px; 
        margin-bottom: 16px; 
    } 

    /* Контент занимает фиксированную высоту, чтобы заголовки не ломали линию выравнивания кнопок */ 
    .portfolio-journal-info { 
        display: flex;
        flex-direction: column; 
        gap: 4px; 
        padding: 0; 
        height: 75px; /* Резерв под текст (название + тег + описание) */
        justify-content: flex-start;
    } 

    /* Кнопка намертво привязана к нижней границе карточки в одну линию и не влияет на общие размеры */ 
    .portfolio-card-btn { 
        display: inline-flex; 
        align-items: center; 
        justify-content: center; 
        width: 100%; 
        background-color: #111111; 
        color: #ffffff; 
        border-radius: 12px; 
        font-size: 13px; 
        font-weight: 500; 
        height: 44px; 
        position: absolute;
        bottom: 0;
        left: 0;
        box-sizing: border-box;
    } 
} 

@media (max-width: 576px) { 
    .portfolio-journal-title { 
        font-size: 34px; 
        letter-spacing: -0.5px; 
    } 
    .portfolio-journal-name { 
        font-size: 18px; 
    } 
} 

/* --- ПАНЕЛЬ ДЕТАЛЕЙ КЕЙСА (сбоку на ховере) --- */ 
.portfolio-journal-detail { 
    position: absolute; 
    top: 0; 
    width: 200px; 
    background: #ffffff; 
    border-radius: 16px; 
    padding: 20px; 
    box-shadow: 0 8px 32px rgba(0,0,0,0.1); 
    opacity: 0; 
    visibility: hidden; 
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease; 
    pointer-events: none; 
    z-index: 5; 
} 

.portfolio-journal-card:hover .portfolio-journal-detail { 
    opacity: 1; 
    visibility: visible; 
} 

/* Левый столбец — панель слева */ 
.portfolio-journal-card:nth-child(odd) .portfolio-journal-detail { 
    right: calc(100% + 24px); 
    transform: translateX(10px); 
} 

.portfolio-journal-card:nth-child(odd):hover .portfolio-journal-detail { 
    transform: translateX(0); 
} 

/* Правый столбец — панель справа */ 
.portfolio-journal-card:nth-child(even) .portfolio-journal-detail { 
    left: calc(100% + 24px); 
    transform: translateX(-10px); 
} 

.portfolio-journal-card:nth-child(even):hover .portfolio-journal-detail { 
    transform: translateX(0); 
} 

.detail-item { 
    margin-bottom: 14px; 
} 

.detail-item:last-child { 
    margin-bottom: 0; 
} 

.detail-label { 
    font-size: 9px; 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 0.8px; 
    color: #999; 
    margin-bottom: 3px; 
    display: block; 
} 

.detail-value { 
    font-size: 13px; 
    font-weight: 400; 
    color: #222; 
    line-height: 1.4; 
    display: block; 
} 

.portfolio-journal-desc { 
    font-size: 13px; 
    color: #888888; 
    font-weight: 400; 
    line-height: 1.4; 
    margin-top: 2px; 
} 

@media (max-width: 992px) { 
    .portfolio-journal-detail { 
        display: none; 
    } 
} 



    .services-pricing-section {
        background-color: transparent; /* Убран белый фон сзади */
        color: #111111;
        padding: 100px 40px;
        font-family: 'Inter', sans-serif;
        width: 100%;
        box-sizing: border-box;
    }

    .services-container {
        max-width: 1100px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }

    /* Шапка секции */
    .services-header {
        text-align: center;
        max-width: 650px;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    /* Добавлен заголовок без изменения общего стиля */
    .services-main-title {
        font-size: 54px;
        font-weight: 600;
        line-height: 1.15;
        letter-spacing: -1.5px;
        margin: 0;
    }

    .services-main-title span {
        font-family: 'Playfair Display', serif;
        font-style: italic;
        font-weight: 500;
        color: #666666;
    }

    .services-subtitle {
        font-size: 15px;
        color: #666666;
        line-height: 1.6;
        font-weight: 400;
        margin: 0;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        align-items: stretch;
    }

    .service-card {
        background-color: #f9f9f9;
        border-radius: 24px;
        display: flex;
        flex-direction: column;
        position: relative;
    }

    .service-top-badge {
        background-color: #ffffff;
        border: 1px solid #eaeaea;
        padding: 36px 32px;
        border-radius: 24px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
        z-index: 2;
    }

    .service-icon {
        width: 64px;
        height: 64px;
        object-fit: contain;
        margin-bottom: 8px;
    }

    .service-name {
        font-size: 20px;
        font-weight: 600;
        letter-spacing: -0.3px;
        color: #111111;
        margin: 0;
    }

    .service-desc {
        font-size: 13px;
        color: #666666;
        line-height: 1.5;
        min-height: 56px;
        margin: 0;
    }

    .service-price-tag {
        font-size: 34px;
        font-weight: 600;
        letter-spacing: -1px;
        color: #111111;
        margin: 4px 0 8px 0;
        display: flex;
        align-items: baseline;
    }

    .service-price-tag span {
        font-size: 14px;
        color: #888888;
        font-weight: 400;
        margin-left: 4px;
    }

    .service-usd {
        font-size: 13px;
        color: #999999;
        font-weight: 400;
        margin-left: 8px;
    }

    .service-action-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 44px;
        background-color: #e5e5e5;
        color: #111111;
        text-decoration: none;
        border-radius: 12px;
        font-size: 13.5px;
        font-weight: 500;
        transition: background-color 0.2s;
    }

    .service-action-btn:hover {
        background-color: #dbdbdb;
    }

    .service-bottom-details {
        padding: 32px;
        display: flex;
        flex-direction: column;
        gap: 16px;
        flex-grow: 1;
        margin-top: -12px;
    }

    .features-label {
        font-size: 13px;
        color: #111111;
        font-weight: 600;
    }

    .service-features-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .service-features-list li {
        font-size: 13px;
        color: #666666;
        display: flex;
        align-items: flex-start;
        gap: 10px;
        line-height: 1.4;
    }

    .service-features-list li::before {
        content: "✓";
        color: #111111;
        font-weight: 600;
    }

    .service-card.featured-card {
        background-color: #f4f4f4;
        border: 1px solid #111111;
        border-radius: 26px;
    }

    .service-card.featured-card .service-top-badge {
        border-color: #111111;
        border-width: 1px;
        margin: -1px -1px 0 -1px;
        border-radius: 24px;
        background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?q=80&w=100&auto=format&fit=crop');
        background-size: cover;
        background-position: center;
    }

    .service-card.featured-card .service-action-btn {
        background-color: #111111;
        color: #ffffff;
    }

    .service-card.featured-card .service-action-btn:hover {
        background-color: #222222;
    }

    .service-card.featured-card .service-bottom-details {
        padding: 34px 30px 30px 30px;
    }

    .best-choice-badge {
        position: absolute;
        top: 28px;
        right: 28px;
        background: #111111;
        color: #ffffff;
        font-size: 10px;
        font-weight: 600;
        padding: 4px 12px;
        border-radius: 12px;
        z-index: 5;
        letter-spacing: 0.3px;
        text-transform: uppercase;
    }

    @media (max-width: 992px) {
        .services-pricing-section {
            padding: 60px 0 60px 24px;
        }

        .services-container {
            gap: 40px;
        }

        .services-header {
            padding-right: 24px;
            text-align: left;
        }

        .services-main-title {
            font-size: 34px;
            white-space: normal;
        }

        .services-grid {
            display: flex;
            overflow-x: auto;
            gap: 16px;
            padding: 40px 24px 20px 0;
            scrollbar-width: none;
            -webkit-overflow-scrolling: touch;
        }

        .services-grid::-webkit-scrollbar {
            display: none;
        }

        .service-card {
            min-width: 290px;
            max-width: 320px;
            flex-shrink: 0;
        }
        
        .service-card.featured-card .service-top-badge {
            margin: -1px -1px 0 -1px;
        }
    }

    .reviews-section {
        background-color: transparent; /* Полностью прозрачный фон */
        color: #111111;
        padding: 100px 40px;
        font-family: 'Inter', sans-serif;
        width: 100%;
        box-sizing: border-box;
    }

    .reviews-container {
        max-width: 1120px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 48px;
    }

    /* Шапка блока */
    .reviews-header {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .reviews-title {
        font-size: 54px;
        font-weight: 600;
        line-height: 1.15;
        letter-spacing: -1.5px;
        margin: 0;
        color: #111111;
        text-align: center;
    }

    .reviews-title span.serif-text {
        font-family: 'Playfair Display', serif;
        font-style: italic;
        font-weight: 500;
        color: #666666;
    }

    /* Лента с карточками */
    .reviews-grid {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        padding-bottom: 10px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
    }

    .reviews-grid::-webkit-scrollbar {
        display: none;
    }

    .reviews-track {
        display: flex;
        gap: 20px;
        flex-shrink: 0;
    }

    /* Карточка отзыва */
    .review-card {
        background-color: #f4f4f4;
        border-radius: 24px;
        padding: 40px;
        min-width: 340px;
        width: 340px;
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 40px;
        box-sizing: border-box;
    }

    .review-text {
        font-size: 15px;
        color: #222222;
        line-height: 1.7;
        font-weight: 400;
        margin: 0;
    }

    /* Профиль автора внизу карточки */
    .review-author {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .review-avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        object-fit: cover;
        background-color: #e5e5e5;
    }

    .review-info {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .review-name {
        font-size: 13.5px;
        font-weight: 600;
        color: #111111;
        margin: 0;
    }

    .review-role {
        font-size: 12px;
        color: #777777;
        margin: 0;
    }

    /* Адаптивность */
    @media (max-width: 768px) {
        .reviews-section {
            padding: 60px 24px;
        }

        .reviews-header {
            text-align: left;
            margin: 0;
            max-width: 100%;
        }

        .reviews-title {
            font-size: 34px;
            text-align: left;
        }

        .review-card {
            min-width: 340px;
            padding: 36px;
        }
    }

    .faq-minimal-section {
        background-color: transparent; /* Прозрачный фон для гибкой интеграции */
        color: #111111;
        padding: 100px 40px;
        font-family: 'Inter', sans-serif;
        width: 100%;
        box-sizing: border-box;
    }

    .faq-minimal-container {
        max-width: 800px; /* Суженная сетка для удобства чтения текста */
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 56px;
    }

    /* Шапка блока */
    .faq-minimal-header {
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .faq-minimal-title {
        font-size: 54px;
        font-weight: 600;
        line-height: 1.15;
        letter-spacing: -1.5px;
        margin: 0;
        color: #111111;
    }

    .faq-minimal-title span.serif-text {
        font-family: 'Playfair Display', serif;
        font-style: italic;
        font-weight: 500;
        color: #666666;
    }

    .faq-minimal-subtitle {
        font-size: 15px;
        color: #666666;
        line-height: 1.6;
        font-weight: 400;
        margin: 0;
    }

    /* Список вопросов */
    .faq-accordion-list {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    /* Элемент аккордеона */
    .faq-item {
        border-bottom: 1px solid #eaeaea;
        width: 100%;
    }

    .faq-item:first-child {
        border-top: 1px solid #eaeaea;
    }

    /* Кликабельная область (Вопрос) */
    .faq-trigger {
        padding: 32px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        list-style: none; /* Убираем дефолтную стрелочку в Chrome/Firefox */
        user-select: none;
    }

    .faq-trigger::-webkit-details-marker {
        display: none; /* Убираем дефолтную стрелочку в Safari */
    }

    .faq-question {
        font-size: 16px;
        font-weight: 500;
        color: #111111;
        letter-spacing: -0.2px;
        margin: 0;
        padding-right: 24px;
    }

    /* Минималистичная иконка плюс/минус */
    .faq-icon {
        position: relative;
        display: block;
        width: 16px;
        height: 16px;
        flex-shrink: 0;
        transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .faq-icon::before,
    .faq-icon::after {
        content: "";
        position: absolute;
        background-color: #111111;
        transition: transform 0.25s ease;
    }

    /* Горизонтальная линия */
    .faq-icon::before {
        top: 7px;
        left: 0;
        width: 16px;
        height: 1.5px;
    }

    /* Вертикальная линия */
    .faq-icon::after {
        top: 0;
        left: 7px;
        width: 1.5px;
        height: 16px;
    }

    /* Состояние открытого вопроса (CSS магия трансформации) */
    .faq-item[open] .faq-icon {
        transform: rotate(45deg);
    }

    .faq-item[open] .faq-icon::after {
        transform: rotate(90deg); /* Сливается с горизонтальной линией, образуя ровный крестик */
    }

    /* Область ответа */
    .faq-content {
        padding: 0 0 32px 0;
    }

    .faq-answer {
        font-size: 14.5px;
        color: #666666;
        line-height: 1.6;
        font-weight: 400;
        margin: 0;
    }

    /* Адаптивность */
    @media (max-width: 768px) {
        .faq-minimal-section {
            padding: 60px 24px;
        }

        .faq-minimal-header {
            text-align: left;
        }

        .faq-minimal-title {
            font-size: 34px;
        }

        .faq-trigger {
            padding: 24px 0;
        }

        .faq-question {
            font-size: 15px;
        }

        .faq-content {
            padding: 0 0 24px 0;
        }
    }

    .creative-footer { 
        background-color: #030303; /* Глубокий премиальный темный */
        color: #ffffff; 
        padding: 120px 40px 20px 40px; 
        border-top: 1px solid rgba(255, 255, 255, 0.05); 
        font-family: 'Inter', sans-serif; 
        width: 100%; 
        position: relative; 
        overflow: hidden; 
        box-sizing: border-box;
    } 

    .footer-creative-container { 
        max-width: 1100px; 
        margin: 0 auto; 
        display: flex; 
        flex-direction: column; 
        gap: 64px; 
        position: relative;
        z-index: 5;
    } 

    /* Верхний блок: Креативный призыв к действию */ 
    .footer-top-row { 
        display: flex; 
        justify-content: space-between; 
        align-items: flex-end; 
        gap: 40px; 
    } 

    .footer-brand-side { 
        display: flex; 
        flex-direction: column; 
        gap: 16px; 
    } 

    .footer-creative-logo { 
            font-size: 34px;
        font-weight: 700; 
        letter-spacing: -1px; 
    } 

    .footer-creative-logo span { 
        color: #888888;
    } 

    .footer-creative-tagline { 
        font-size: 40px; 
        font-weight: 600;
        letter-spacing: -1.5px;
        max-width: 550px; 
        line-height: 1.15; 
        color: #ffffff;
    }

    .footer-creative-tagline span {
        color: #666666;
    }

    /* Асимметричная Бенто-сетка соцсетей */ 
    .footer-grid-socials { 
        display: grid; 
        grid-template-columns: repeat(4, 1fr); 
        gap: 16px; 
        width: 100%; 
    } 

    .footer-social-card { 
        background-color: #0c0c0c; 
        border: 1px solid rgba(255, 255, 255, 0.03); 
        border-radius: 20px; 
        padding: 24px; 
        display: flex; 
        flex-direction: column; 
        justify-content: space-between; 
        height: 140px; 
        text-decoration: none; 
        color: #888888; 
        position: relative;
        box-sizing: border-box;
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); 
    } 

    /* Главная карточка (WhatsApp) выделена размером и стилем */
    .footer-social-card.featured-social {
        grid-column: span 2;
        background: linear-gradient(135deg, #0f0f0f 0%, #141414 100%);
        border-color: rgba(255, 255, 255, 0.08);
        color: #ffffff;
    }

    .footer-social-card.behance-card,
    .footer-social-card.email-card {
        grid-column: span 2;
    }

    .footer-card-top {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        width: 100%;
    }

    .footer-social-card svg { 
        width: 26px; 
        height: 26px; 
        fill: currentColor; 
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    } 

    /* Креативная стрелка перехода ↗ */
    .footer-arrow-icon {
        font-size: 18px;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.2);
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .footer-social-card span { 
        font-size: 15px; 
        font-weight: 500; 
        letter-spacing: -0.3px; 
        color: #eeeeee;
    } 

    .footer-social-card .social-desc {
        font-size: 12px;
        color: #555555;
        margin-top: 4px;
        display: block;
        transition: color 0.3s;
    }

    /* Эффекты наведения (Интерактив) */ 
    .footer-social-card:hover { 
        background-color: #121212; 
        border-color: rgba(255, 255, 255, 0.15); 
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    } 

    .footer-social-card.featured-social:hover {
        background: linear-gradient(135deg, #121212 0%, #1a1a1a 100%);
        border-color: rgba(255, 255, 255, 0.2);
    }

    .footer-social-card:hover svg { 
        color: #ffffff;
        transform: scale(1.05);
    } 

    .footer-social-card:hover .footer-arrow-icon {
        color: #ffffff;
        transform: translate(3px, -3px); /* Вылет стрелки по диагонали */
    }

    .footer-social-card:hover .social-desc {
        color: #888888;
    }

    /* Нижняя строка: Копирайт */ 
    .footer-bottom-row { 
        display: flex; 
        justify-content: space-between; 
        align-items: center; 
        border-top: 1px solid rgba(255, 255, 255, 0.04); 
        padding-top: 24px; 
        margin-top: 20px;
    } 

    .footer-creative-copy { 
        font-size: 13px; 
        color: #444444; 
    } 

    /* Огромный бэкграунд-текст студийного уровня */ 
    .footer-huge-bg-text { 
        font-size: 17vw; 
        font-weight: 800; 
        text-transform: uppercase; 
        letter-spacing: -0.05em; 
        line-height: 0.75; 
        text-align: center; 
        margin-top: 40px; 
        user-select: none; 
        pointer-events: none; 
        color: transparent; 
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.025); 
        background: linear-gradient(to bottom, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 100%);
        -webkit-background-clip: text;
    } 

    /* --- АДАПТИВНОСТЬ ПОД МОБИЛЬНЫЕ --- */ 
    @media (max-width: 992px) { 
        .footer-grid-socials { 
            grid-template-columns: repeat(2, 1fr); 
        } 
        .footer-social-card.featured-social,
        .footer-social-card.behance-card,
        .footer-social-card.email-card {
            grid-column: span 2;
        }
    } 

    @media (max-width: 768px) { 
        .creative-footer { 
            padding: 80px 24px 20px 24px; 
        } 
        .footer-creative-container { 
            gap: 48px; 
        } 
        .footer-top-row { 
            flex-direction: column; 
            align-items: flex-start;
            gap: 16px; 
        } 
        .footer-creative-tagline {
            font-size: 30px;
        }
        .footer-grid-socials { 
            grid-template-columns: 1fr; 
            gap: 12px; 
        } 
        .footer-social-card.featured-social,
        .footer-social-card.behance-card,
        .footer-social-card.email-card {
            grid-column: span 1;
        }
        .footer-social-card { 
            height: auto; 
            padding: 20px; 
            border-radius: 16px; 
        } 
        .footer-card-top {
            margin-bottom: 16px;
        }
        .footer-huge-bg-text { 
            font-size: 20vw; 
            margin-top: 24px; 
        } 
    } 



  #smooth-cursor {
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    will-change: transform;
    opacity: 0;
    transition: opacity 0.15s ease;
    transform: translate(-50%, -50%) scale(0.5);
  }
  #smooth-cursor svg { display: block; }
  @media (any-hover: none) and (any-pointer: coarse) {
    #smooth-cursor { display: none; }
  }
