
        :root {
            --yaem-orange: #FD7014;
            --yaem-orange-hover: #e65c00;
            --bg-dark: #0f0f11;
            --text-main: #1a1a1a;
            --text-muted: #737373;
        }

        /* Плавный скролл и отступ под фиксированную шапку */
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-main);
            background-color: #fcfcfd;
            overflow-x: hidden;
        }

        /* --- Типографика --- */
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 800;
            letter-spacing: -0.03em;
        }

        .text-gradient {
            background: linear-gradient(135deg, var(--yaem-orange) 0%, #ff9a5a 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* --- Навигация --- */
        .navbar-glass {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        /* --- Кнопки --- */
        .btn-yaem {
            background-color: var(--yaem-orange);
            color: white;
            font-weight: 600;
            border-radius: 12px;
            padding: 14px 28px;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-yaem:hover {
            background-color: var(--yaem-orange-hover);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(253, 112, 20, 0.2);
        }

        .btn-yaem-outline {
            background-color: transparent;
            color: var(--text-main);
            font-weight: 600;
            border-radius: 12px;
            padding: 14px 28px;
            border: 1px solid #e5e5e5;
            transition: all 0.3s ease;
        }

        .btn-yaem-outline:hover {
            border-color: var(--text-main);
            background-color: #f5f5f5;
        }

        /* --- BENTO GRID --- */
        .bento-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .bento-card {
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.04);
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }

        .bento-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
        }

        .bento-large {
            grid-column: span 2;
        }

        @media (max-width: 992px) {
            .bento-grid {
                grid-template-columns: 1fr;
            }

            .bento-large {
                grid-column: span 1;
            }
        }

        .icon-box {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 24px;
        }

        /* --- Pricing --- */
        .pricing-card {
            background: white;
            border-radius: 24px;
            padding: 40px;
            border: 1px solid #eee;
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .pricing-card:hover {
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
        }

        .pricing-card.premium {
            background: var(--bg-dark);
            color: white;
            border: none;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
            transform: scale(1.02);
        }

        .pricing-card.premium:hover {
            transform: scale(1.02) translateY(-5px);
        }

        .pricing-list li {
            margin-bottom: 16px;
            display: flex;
            align-items: center;
        }

        .pricing-list i {
            margin-right: 12px;
        }

        /* --- Бегущая строка --- */
        .marquee-wrapper {
            position: relative;
            width: 100vw;
            max-width: 100%;
            overflow-x: hidden;
        }

        .marquee-content {
            width: max-content;
            animation: scrollMarquee 30s linear infinite;
        }

        .marquee-content img {
            transition: filter 0.3s, opacity 0.3s;
        }

        .marquee-content img:hover {
            filter: grayscale(0) !important;
            opacity: 1 !important;
            cursor: pointer;
        }

        .marquee-wrapper::before,
        .marquee-wrapper::after {
            content: "";
            position: absolute;
            top: 0;
            width: 150px;
            height: 100%;
            z-index: 2;
        }

        .marquee-wrapper::before {
            left: 0;
            background: linear-gradient(to right, #fafafa 0%, transparent 100%);
        }

        .marquee-wrapper::after {
            right: 0;
            background: linear-gradient(to left, #fafafa 0%, transparent 100%);
        }

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

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