* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
            font-weight: 300;
        }

        body {
            background-color: #131c29;
            color: #eef2f6;
            line-height: 1.5;
            padding-bottom: 85px;
            min-height: 100vh;
            -webkit-tap-highlight-color: transparent;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 12px;
        }

        /* Анимации */
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.6; }
        }
        @keyframes slideIn {
            from { transform: translateX(100%); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        /* HEADER улучшенный */
        .header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            position: sticky;
            top: 0;
            background-color: #131c29;
            z-index: 120;
            backdrop-filter: blur(12px);
            gap: 8px;
            flex-wrap: wrap;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo {
            font-size: 1.6rem;
            font-weight: 350;
            letter-spacing: -0.5px;
            color: #fff;
            text-decoration: none;
        }
        .logo span { color: #4884ff; font-weight: 200; }
        .logo--has-img .logo-brand { display: none; }

        /* Меню триггер */
        .menu-trigger { position: relative; }
        .menu-btn {
            background: transparent;
            border: 1px solid rgba(255,255,255,0.2);
            color: #eef2f6;
            padding: 8px 16px;
            border-radius: 40px;
            font-size: 0.9rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: all 0.2s;
            white-space: nowrap;
        }
        .menu-btn:hover {
            border-color: #4884ff;
            background: rgba(72,132,255,0.08);
        }

        .dropdown-menu {
            position: absolute;
            top: 48px;
            left: 0;
            min-width: 320px;
            background: #1a2533f5;
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 20px 12px;
            box-shadow: 0 25px 40px -12px #000000b0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: 0.25s;
            z-index: 200;
            border: 1px solid #4884ff30;
            max-height: 80vh;
            overflow-y: auto;
        }
        .menu-trigger:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
        .dropdown-menu.show { opacity: 1 !important; visibility: visible !important; transform: translateY(0) !important; pointer-events: auto; }
        .menu-cat-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 12px 12px;
            border-radius: 18px;
            color: #eef2f6;
            text-decoration: none;
            transition: 0.15s;
            border: 1px solid transparent;
        }
        .menu-cat-item:hover { background: #4884ff18; border-color: #4884ff40; }
        .menu-cat-img { width: 44px; height: 44px; background: #1e2a3a; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; color: #4884ff; }

        /* Поиск с подсказками */
        .search-wrap {
            flex: 1 1 200px;
            position: relative;
        }
        .search-box {
            background: #1e2a3a;
            border-radius: 60px;
            padding: 6px 16px;
            display: flex;
            align-items: center;
            border: 1px solid #ffffff0c;
        }
        .search-box i { color: #7f8fa0; margin-right: 10px; font-size: 0.9rem; }
        .search-box input {
            background: transparent;
            border: none;
            width: 100%;
            color: white;
            outline: none;
            font-weight: 300;
            font-size: 0.9rem;
        }
        .search-suggestions {
            position: absolute;
            top: 48px;
            left: 0;
            right: 0;
            background: #1a2533f5;
            backdrop-filter: blur(16px);
            border-radius: 20px;
            padding: 12px;
            display: none;
            z-index: 150;
            border: 1px solid #4884ff30;
        }
        .search-suggestions.active { display: block; animation: slideIn 0.2s; }
        .suggestion-item {
            padding: 10px 14px;
            border-radius: 14px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .suggestion-item:hover { background: #4884ff20; }

        .header-actions {
            display: flex;
            gap: 12px;
            align-items: center;
        }
        .header-icon {
            color: #eef2f6;
            font-size: 1.3rem;
            opacity: 0.8;
            transition: 0.2s;
            position: relative;
        }
        .cart-badge {
            position: absolute;
            top: -6px;
            right: -8px;
            background: #4884ff;
            color: white;
            border-radius: 20px;
            padding: 2px 6px;
            font-size: 0.6rem;
            font-weight: 400;
        }

        /* Фичи бар */
        .features-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin: 12px 0 8px;
            flex-wrap: wrap;
            gap: 8px;
        }
        .live-sales {
            background: #1e2a3a80;
            border-radius: 60px;
            padding: 6px 16px;
            font-size: 0.8rem;
            border: 1px solid #ffffff10;
            backdrop-filter: blur(4px);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .pulse-dot {
            width: 8px;
            height: 8px;
            background: #3acf6b;
            border-radius: 50%;
            animation: pulse 1.5s infinite;
        }

        .filter-chips {
            display: flex;
            gap: 8px;
            overflow-x: auto;
            padding: 4px 0;
            scrollbar-width: none;
        }
        .filter-chip {
            background: #1e2a3a;
            border-radius: 60px;
            padding: 6px 14px;
            border: 1px solid #ffffff10;
            cursor: pointer;
            font-size: 0.8rem;
            white-space: nowrap;
        }
        .filter-chip.active {
            background: #4884ff;
            color: white;
        }

        /* Герой */
        .hero {
            padding: 16px 0 8px;
        }
        .hero h2 {
            font-weight: 250;
            font-size: 1.8rem;
            letter-spacing: -0.02em;
        }
        .hero p {
            opacity: 0.7;
            font-weight: 200;
            border-left: 3px solid #4884ff;
            padding-left: 16px;
            font-size: 0.9rem;
        }

        /* Секции */
        .section-title {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin: 28px 0 16px;
        }
        .section-title h3 {
            font-weight: 300;
            font-size: 1.4rem;
        }
        .section-hint {
            font-size: 0.8rem;
            opacity: 0.65;
            font-weight: 300;
        }

        /* Категории на главной: портретные карточки, сетка на ПК, карусель на мобильных */
        .categories-showcase {
            position: relative;
            margin-bottom: 4px;
        }
        .categories-showcase::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 28px;
            height: calc(100% - 12px);
            background: linear-gradient(90deg, transparent, #0d1420);
            pointer-events: none;
            opacity: 0;
        }
        .cat-scroll {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
            gap: 14px 12px;
            padding-bottom: 4px;
        }
        .category-card {
            display: flex;
            flex-direction: column;
            align-items: stretch;
            gap: 8px;
            text-decoration: none;
            color: #eef2f6;
            min-width: 0;
            transition: transform 0.18s ease, opacity 0.18s ease;
        }
        .category-card:active {
            transform: scale(0.97);
            opacity: 0.92;
        }
        .category-card__media {
            width: 100%;
            aspect-ratio: 3 / 4;
            border-radius: 22px;
            overflow: hidden;
            background: linear-gradient(160deg, #1e2a3a 0%, #152030 100%);
            border: 1px solid #ffffff10;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
        }
        .category-card__img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .category-card__fallback {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #6a9cff;
        }
        .category-card__name {
            font-size: 0.78rem;
            font-weight: 400;
            line-height: 1.25;
            text-align: center;
            padding: 0 2px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            word-break: break-word;
        }
        @media (min-width: 769px) {
            .categories-showcase::after {
                display: none;
            }
            .cat-scroll {
                grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
                max-width: 720px;
            }
        }
        @media (min-width: 1100px) {
            .cat-scroll {
                max-width: 100%;
                grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
            }
        }
        /* legacy */
        .cat-scroll-container { position: relative; }
        .category-tile {
            background: #1a2533;
            border-radius: 24px;
            padding: 14px 18px;
            text-align: center;
            text-decoration: none;
            color: #eef2f6;
            border: 1px solid #ffffff08;
            min-width: 100px;
        }
        .cat-icon { font-size: 2rem; margin-bottom: 6px; color: #6a9cff; }

        /* Карточки товаров - 2 в ряд на мобильных */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            gap: 12px;
        }
        .product-card {
            background: transparent;
            border-radius: 20px;
            transition: 0.2s;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            border: 1px solid transparent;
            padding: 6px;
            min-width: 0;
        }
        .product-card:active {
            background: #4884ff10;
            box-shadow: 0 0 0 1px #4884ff50;
        }
        .product-img {
            aspect-ratio: 1/1;
            background: #1a2533;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.4rem;
            color: #b6cdf5;
            margin-bottom: 10px;
            border: 1px solid #ffffff08;
            position: relative;
        }
        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 18px;
        }
        .quick-view {
            position: absolute;
            bottom: 8px;
            right: 8px;
            background: #4884ff;
            width: 28px;
            height: 28px;
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.9rem;
            opacity: 0;
            transition: 0.2s;
        }
        .product-card:hover .quick-view { opacity: 1; }

        .product-price {
            font-size: 1.3rem;
            font-weight: 350;
        }
        .product-name {
            font-weight: 300;
            font-size: 0.85rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .product-sold {
            font-size: 0.7rem;
            color: #8aa2c0;
            margin: 4px 0 10px;
        }
        .buy-btn {
            background: #4884ff;
            border: none;
            color: white;
            font-weight: 400;
            padding: 10px 0;
            width: 100%;
            border-radius: 50px;
            font-size: 0.85rem;
            cursor: pointer;
            transition: 0.2s;
            border: 1px solid #ffffff10;
            display: block;
            text-align: center;
        }
        .buy-btn:active { background: #3d6ed9; transform: scale(0.98); }

        /* Модалка быстрого просмотра */
        .quick-view-modal {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #1a2533f5;
            backdrop-filter: blur(20px);
            border-radius: 28px 28px 0 0;
            padding: 24px 20px;
            z-index: 500;
            transform: translateY(100%);
            transition: 0.3s;
            border-top: 1px solid #4884ff50;
            max-height: 80vh;
            overflow-y: auto;
        }
        .quick-view-modal.active { transform: translateY(0); }
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: #000000b0;
            backdrop-filter: blur(4px);
            z-index: 400;
            display: none;
        }

        /* Мобильное нижнее меню */
        .mobile-bottom-nav {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #0f1722f0;
            backdrop-filter: blur(20px);
            border-top: 1px solid #ffffff10;
            padding: 8px 8px 12px;
            justify-content: space-around;
            z-index: 300;
        }
        .mobile-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            color: #9aabbf;
            text-decoration: none;
            font-size: 0.65rem;
        }
        .mobile-nav-item i { font-size: 1.4rem; margin-bottom: 2px; }
        .mobile-nav-item.active { color: #4884ff; }

        /* Адаптация: мобильные и планшеты — 2 карточки в ряд */
        @media (max-width: 1200px) {
            .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
        }
        @media (max-width: 1000px) {
            .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
        }
        @media (max-width: 1023px) {
            .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
        }
        @media (max-width: 768px) {
            .container { padding: 0 10px; }
            .header { padding: 8px 0; flex-wrap: wrap; }
            .logo { font-size: 1.4rem; }
            .menu-btn { padding: 8px 12px; font-size: 0.8rem; }
            .search-wrap { order: 2; width: 100%; margin: 6px 0 0; flex: 1 1 100%; }
            .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
            .mobile-bottom-nav { display: flex; }
            body { padding-bottom: 80px; }
            .dropdown-menu { left: auto; right: 0; min-width: 280px; }
            .hero h2 { font-size: 1.6rem; }
            .categories-showcase::after { opacity: 1; }
            .cat-scroll {
                display: flex;
                flex-wrap: nowrap;
                gap: 10px;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                scroll-padding-left: 2px;
                scrollbar-width: none;
                -webkit-overflow-scrolling: touch;
                padding-bottom: 8px;
            }
            .cat-scroll::-webkit-scrollbar { display: none; }
            .category-card {
                flex: 0 0 84px;
                width: 84px;
                scroll-snap-align: start;
            }
            .category-card__media { border-radius: 20px; }
            .category-card__name { font-size: 0.72rem; }
            .category-card__fallback { font-size: 1.75rem; }
            .filter-chips { gap: 6px; }
            .filter-chip { padding: 5px 12px; font-size: 0.75rem; }
            .product-price { font-size: 1.2rem; }
            .buy-btn { padding: 8px 0; font-size: 0.8rem; }
        }

        @media (max-width: 480px) {
            .logo { font-size: 1.3rem; }
            .header-icon { font-size: 1.2rem; }
            .menu-cat-img { width: 38px; height: 38px; font-size: 1.4rem; }
            .product-img { font-size: 2rem; }
            .category-card {
                flex: 0 0 76px;
                width: 76px;
            }
            .category-card__media { border-radius: 18px; }
            .category-card__name { font-size: 0.65rem; }
            .category-card__fallback { font-size: 1.5rem; }
        }

        @media (max-width: 380px) {
            .category-card {
                flex: 0 0 70px;
                width: 70px;
            }
            .category-card__name { font-size: 0.6rem; }
        }

        /* Уведомление о покупке */
        .toast-notification {
            position: fixed;
            bottom: 100px;
            left: 16px;
            right: 16px;
            background: #1e2a3af0;
            backdrop-filter: blur(12px);
            border-radius: 60px;
            padding: 12px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            z-index: 350;
            border: 1px solid #4884ff60;
            transform: translateY(20px);
            opacity: 0;
            transition: 0.3s;
            pointer-events: none;
        }
        .toast-notification.show {
            transform: translateY(0);
            opacity: 1;
            pointer-events: none;
        }

        /* Главная: плотнее, как index.txt */
        .index-home .features-bar {
            margin: 8px 0 6px;
            gap: 6px;
        }
        .index-home .live-sales {
            padding: 5px 12px;
            font-size: 0.78rem;
        }
        .index-home .filter-chips {
            padding: 2px 0;
            gap: 6px;
        }
        .index-home .filter-chip {
            padding: 5px 12px;
            font-size: 0.78rem;
        }
        .index-home .hero {
            padding: 12px 0 4px;
        }
        .index-home .hero h2 {
            font-size: 1.65rem;
            line-height: 1.2;
        }
        .index-home .hero p {
            margin-top: 8px;
            padding-left: 12px;
            font-size: 0.85rem;
        }
        .index-home .section-title {
            margin: 18px 0 10px;
        }
        .index-home .section-title h3 {
            font-size: 1.2rem;
        }
        .index-home .cat-scroll {
            gap: 12px 10px;
        }
        .index-home .category-card__media {
            border-radius: 20px;
        }
        .index-home .category-card__name {
            font-size: 0.76rem;
        }
        .index-home .product-grid {
            gap: 10px;
        }
        .index-home .product-card {
            padding: 4px;
            border-radius: 16px;
        }
        .index-home .product-img {
            border-radius: 16px;
            margin-bottom: 8px;
            font-size: 2.1rem;
        }
        .index-home .product-img img {
            border-radius: 16px;
        }
        .index-home .product-price {
            font-size: 1.15rem;
        }
        .index-home .product-name {
            font-size: 0.8rem;
        }
        .index-home .product-sold {
            font-size: 0.68rem;
            margin: 2px 0 6px;
        }
        .index-home .product-sold i {
            margin-right: 4px;
            opacity: 0.85;
        }
        .index-home .buy-btn {
            padding: 8px 0;
            font-size: 0.8rem;
            border-radius: 40px;
        }
        .index-home .quick-view {
            width: 26px;
            height: 26px;
            bottom: 6px;
            right: 6px;
            font-size: 0.8rem;
        }
        .index-catalog-cta {
            text-align: center;
            margin: 20px 0 8px;
        }
        .index-catalog-cta__btn {
            width: auto;
            padding: 10px 32px;
            background: transparent;
            border: 1px dashed #4884ff;
            color: #aac3ff;
            display: inline-block;
            text-decoration: none;
        }
        .index-catalog-cta__btn:hover {
            background: #4884ff12;
        }
        main.index-home + .footer {
            margin-top: 28px;
            padding: 24px 0 16px;
            gap: 18px;
        }

        @media (max-width: 768px) {
            .index-home .hero h2 {
                font-size: 1.45rem;
            }
            .index-home .section-title {
                margin: 14px 0 8px;
            }
            .index-home .section-title h3 {
                font-size: 1.1rem;
            }
            .index-home .product-grid {
                gap: 8px;
            }
            .index-home .cat-scroll {
                gap: 10px;
                padding-bottom: 6px;
            }
            .index-home .category-card {
                flex: 0 0 80px;
                width: 80px;
            }
            main.index-home + .footer {
                margin-top: 22px;
                padding: 20px 0 12px;
            }
        }

        @media (max-width: 480px) {
            .index-home .category-card {
                flex: 0 0 74px;
                width: 74px;
            }
            .index-home .category-card__name {
                font-size: 0.64rem;
            }
        }

        /* Бренд GoSCRIPT */
        .logo-brand {
            font-size: 1.65rem;
            font-weight: 600;
            letter-spacing: -0.03em;
            line-height: 1;
        }
        .logo-go { color: #3acf6b; font-weight: 600; }
        .logo-script { color: #4884ff; font-weight: 300; }

        /* H1 и Hero */
        .home-intro { padding: 8px 0 4px; }
        .home-h1 {
            font-weight: 400;
            font-size: clamp(1.35rem, 4vw, 1.85rem);
            line-height: 1.25;
            letter-spacing: -0.02em;
            margin-bottom: 10px;
        }
        .home-lead {
            font-size: 0.95rem;
            opacity: 0.88;
            line-height: 1.45;
            max-width: 720px;
        }
        .home-lead strong { font-weight: 500; }

        @keyframes heroProgress {
            from { transform: scaleX(0); }
            to { transform: scaleX(1); }
        }
        @keyframes heroBenefitIn {
            from { opacity: 0; transform: translateX(-8px); }
            to { opacity: 1; transform: translateX(0); }
        }

        /* Hero premium */
        .hero-grid--premium {
            position: relative;
            display: grid;
            grid-template-columns: 1.05fr 0.95fr;
            gap: 28px;
            align-items: stretch;
            margin: 20px 0 32px;
            padding: 28px;
            border-radius: 32px;
            border: 1px solid #4884ff35;
            overflow: hidden;
            background: linear-gradient(145deg, #1c2838 0%, #121c28 45%, #0f1722 100%);
            box-shadow: 0 24px 60px -20px #00000080, inset 0 1px 0 #ffffff12;
        }
        .hero-grid__bg {
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 70% 50% at 10% 20%, #4884ff28, transparent 55%),
                radial-gradient(ellipse 50% 40% at 90% 80%, #3acf6b18, transparent 50%);
            pointer-events: none;
        }
        .hero-grid__text,
        .hero-grid__visual { position: relative; z-index: 1; }
        .hero-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 14px;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.72rem;
            padding: 5px 12px;
            border-radius: 40px;
            background: #ffffff0a;
            border: 1px solid #ffffff15;
            color: #c8d4e8;
        }
        .hero-badge--live { border-color: #3acf6b50; color: #b8f0d0; }
        .hero-badge-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #3acf6b;
            animation: pulse 1.5s infinite;
        }
        .hero-grid__title {
            font-size: clamp(1.25rem, 2.5vw, 1.55rem);
            font-weight: 400;
            margin-bottom: 16px;
            line-height: 1.28;
            letter-spacing: -0.02em;
        }
        .hero-benefits {
            list-style: none;
            margin: 0 0 20px;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .hero-benefits li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 0.86rem;
            line-height: 1.4;
            animation: heroBenefitIn 0.45s ease backwards;
            animation-delay: calc(var(--i, 0) * 0.07s);
        }
        .hero-benefit-icon {
            width: 22px;
            height: 22px;
            border-radius: 8px;
            background: linear-gradient(135deg, #3acf6b, #2aa85a);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 0.65rem;
            color: #0d1420;
        }
        .hero-actions {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 18px;
            max-width: 440px;
        }
        .hero-grid__cta,
        .hero-btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-height: 48px;
            padding: 12px 18px;
            border-radius: 14px;
            font-size: 0.88rem;
            font-weight: 450;
            text-decoration: none;
            text-align: center;
            line-height: 1.2;
            transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s;
            border: none;
            cursor: pointer;
            width: 100%;
            box-sizing: border-box;
        }
        .hero-grid__cta {
            background: linear-gradient(135deg, #4884ff 0%, #3a6fd8 100%);
            color: #fff;
            box-shadow: 0 10px 28px #4884ff50, inset 0 1px 0 #ffffff25;
        }
        .hero-grid__cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 32px #4884ff60;
            filter: brightness(1.05);
        }
        .hero-grid__cta:active { transform: translateY(0); }
        .hero-grid__cta i { font-size: 1rem; opacity: 0.95; }
        .hero-btn-outline {
            background: #0d142080;
            color: #eef2f6;
            border: 1px solid #ffffff28;
            box-shadow: inset 0 1px 0 #ffffff10;
        }
        .hero-btn-outline:hover {
            border-color: #3acf6b70;
            background: #3acf6b12;
            color: #fff;
            transform: translateY(-2px);
        }
        .hero-btn-outline i { color: #3acf6b; font-size: 0.95rem; }
        .hero-payments {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-top: 4px;
        }
        .hero-payments span {
            font-size: 0.68rem;
            padding: 4px 10px;
            border-radius: 8px;
            background: #0d142060;
            border: 1px solid #ffffff0a;
            opacity: 0.75;
        }
        .hero-slider-shell {
            position: relative;
            border-radius: 24px;
            padding: 3px;
            background: linear-gradient(135deg, #4884ff60, #3acf6b40, #4884ff30);
        }
        .hero-slider {
            position: relative;
            aspect-ratio: 4/3;
            border-radius: 22px;
            overflow: hidden;
            background: #0a1018;
        }
        .hero-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transform: scale(1.04);
            transition: opacity 0.55s ease, transform 0.7s ease;
            text-decoration: none;
            color: inherit;
        }
        .hero-slide.active {
            opacity: 1;
            z-index: 1;
            transform: scale(1);
        }
        .hero-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .hero-slide-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 36px 14px 12px;
            background: linear-gradient(transparent, #000000e0);
        }
        .hero-slide-price {
            display: inline-block;
            font-size: 0.85rem;
            font-weight: 500;
            color: #3acf6b;
            margin-bottom: 4px;
        }
        .hero-slide-caption {
            display: block;
            font-size: 0.75rem;
            line-height: 1.3;
            opacity: 0.95;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .hero-slide-fallback {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: #4884ff;
            background: linear-gradient(160deg, #1e2a3a, #152030);
        }
        .hero-slide-fallback--large {
            min-height: 240px;
            border-radius: 22px;
        }
        .hero-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 5;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 1px solid #ffffff30;
            background: #0d1420bb;
            color: #fff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(8px);
            transition: 0.2s;
        }
        .hero-nav:hover { background: #4884ff; border-color: #4884ff; }
        .hero-nav--prev { left: 10px; }
        .hero-nav--next { right: 10px; }
        .hero-dots {
            position: absolute;
            bottom: 52px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 6;
            display: flex;
            gap: 6px;
        }
        .hero-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            border: none;
            padding: 0;
            background: #ffffff40;
            cursor: pointer;
            transition: 0.2s;
        }
        .hero-dot.active {
            width: 22px;
            border-radius: 8px;
            background: #4884ff;
        }
        .hero-progress {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: #ffffff15;
            z-index: 4;
            border-radius: 0 0 22px 22px;
            overflow: hidden;
        }
        .hero-progress__bar {
            display: block;
            height: 100%;
            width: 100%;
            transform-origin: left;
            background: linear-gradient(90deg, #4884ff, #3acf6b);
            transform: scaleX(0);
        }

        /* Trust */
        .trust-block { margin: 36px 0; }
        .trust-block__title {
            font-size: 1.2rem;
            font-weight: 400;
            text-align: center;
            margin-bottom: 18px;
            padding: 0 8px;
        }
        .trust-carousel { position: relative; }
        .trust-carousel__track {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
        }
        .trust-col {
            background: linear-gradient(165deg, #1e2a3a, #172230);
            border: 1px solid #ffffff10;
            border-radius: 22px;
            padding: 22px 18px;
            text-align: center;
            transition: transform 0.2s, border-color 0.2s;
        }
        .trust-col:hover {
            border-color: #4884ff50;
            transform: translateY(-3px);
        }
        .trust-col__icon {
            width: 56px;
            height: 56px;
            margin: 0 auto 14px;
            border-radius: 18px;
            background: linear-gradient(135deg, #4884ff25, #3acf6b15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #6a9cff;
        }
        .trust-col h3 { font-size: 1rem; font-weight: 500; margin-bottom: 8px; }
        .trust-col p { font-size: 0.82rem; opacity: 0.78; line-height: 1.45; }
        .trust-carousel__nav { display: none; }

        .section-heading { font-weight: 300; font-size: 1.4rem; margin: 0; }

        /* CTA предподвал */
        .home-cta-prefooter {
            margin: 36px 0 24px;
            padding: 28px 24px;
            text-align: center;
            background: linear-gradient(160deg, #4884ff22, #3acf6b12);
            border-radius: 24px;
            border: 1px solid #4884ff40;
        }
        .home-cta-prefooter h2 { font-size: 1.2rem; font-weight: 400; margin-bottom: 10px; }
        .home-cta-prefooter p { opacity: 0.8; max-width: 560px; margin: 0 auto 16px; font-size: 0.9rem; }
        .home-cta-actions { display: flex; flex-direction: column; align-items: center; gap: 10px; }
        .home-cta-link { color: #8aa9ff; font-size: 0.85rem; text-decoration: none; }
        .home-cta-prefooter .buy-btn { width: auto; padding: 12px 28px; text-decoration: none; display: inline-block; }

        /* SEO простыня */
        .seo-content-block { margin: 24px 0 40px; }
        .seo-content-details {
            background: #eef2f608;
            border: 1px solid #ffffff10;
            border-radius: 16px;
            overflow: hidden;
        }
        .seo-content-details summary {
            cursor: pointer;
            padding: 14px 18px;
            font-size: 0.9rem;
            color: #8aa9ff;
            list-style: none;
        }
        .seo-content-details summary::-webkit-details-marker { display: none; }
        .seo-content-inner {
            padding: 0 18px 18px;
            font-size: 0.78rem;
            line-height: 1.55;
            opacity: 0.82;
        }
        .seo-content-inner h2 { font-size: 1rem; font-weight: 500; margin: 12px 0 8px; }
        .seo-content-inner h3 { font-size: 0.9rem; font-weight: 500; margin: 10px 0 6px; }
        .seo-content-inner ul { margin: 8px 0 8px 18px; }
        .seo-content-inner p { margin-bottom: 8px; }

        /* Мобильное меню */
        .menu-backdrop {
            display: none;
        }
        .dropdown-menu-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.8rem;
            font-weight: 500;
            padding: 0 4px 12px;
            flex-shrink: 0;
        }
        .dropdown-menu__handle { display: none; }
        .dropdown-menu-close {
            display: none;
            width: 36px;
            height: 36px;
            border: none;
            border-radius: 50%;
            background: #ffffff12;
            color: #eef2f6;
            cursor: pointer;
        }
        .dropdown-menu-foot {
            border-top: 1px solid #ffffff12;
            margin-top: 0;
            padding-top: 10px;
            flex-shrink: 0;
        }
        .menu-cat-label {
            flex: 1;
            line-height: 1.25;
            font-size: 0.86rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .menu-cat-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }
        .menu-cat-item--compact { padding: 10px 12px; }
        .suggestion-item span { display: flex; flex-direction: column; gap: 2px; }
        .suggestion-item small { opacity: 0.65; font-size: 0.72rem; }
        .suggestion-empty { padding: 12px; opacity: 0.6; font-size: 0.85rem; }
        body.menu-open { overflow: hidden; touch-action: none; }

        @media (max-width: 768px) {
            .hero-grid--premium {
                grid-template-columns: 1fr;
                padding: 18px 16px;
                gap: 18px;
            }
            .hero-grid__visual { order: -1; }
            .hero-nav { width: 32px; height: 32px; font-size: 0.75rem; }
            .hero-actions {
                grid-template-columns: 1fr;
                max-width: 100%;
            }
            .hero-grid__cta,
            .hero-btn-outline {
                min-height: 50px;
                font-size: 0.92rem;
                border-radius: 16px;
            }

            /* Trust carousel */
            .trust-carousel__track {
                display: flex;
                gap: 12px;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                padding: 4px 2px 8px;
            }
            .trust-carousel__track::-webkit-scrollbar { display: none; }
            .trust-col {
                flex: 0 0 min(88vw, 320px);
                scroll-snap-align: center;
            }
            .trust-carousel__nav {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 16px;
                margin-top: 12px;
            }
            .trust-carousel__btn {
                width: 40px;
                height: 40px;
                border-radius: 50%;
                border: 1px solid #ffffff20;
                background: #1a2533;
                color: #eef2f6;
                cursor: pointer;
            }
            .trust-carousel__dots { display: flex; gap: 8px; }
            .trust-carousel__dot {
                width: 8px;
                height: 8px;
                border-radius: 50%;
                border: none;
                padding: 0;
                background: #ffffff30;
                cursor: pointer;
            }
            .trust-carousel__dot.active {
                width: 20px;
                border-radius: 6px;
                background: #4884ff;
            }

            /* Мобильное меню — полноэкранная шторка */
            .menu-trigger { position: static; }
            .menu-backdrop {
                display: block;
                position: fixed;
                inset: 0;
                z-index: 280;
                background: rgba(5, 10, 18, 0.72);
                backdrop-filter: blur(4px);
                opacity: 0;
                visibility: hidden;
                transition: opacity 0.25s, visibility 0.25s;
            }
            .menu-backdrop.show {
                opacity: 1;
                visibility: visible;
            }
            .dropdown-menu {
                position: fixed;
                left: 0;
                right: 0;
                bottom: 0;
                top: auto;
                min-width: 0;
                width: 100%;
                max-width: 100%;
                max-height: min(92dvh, 92vh);
                margin: 0;
                border-radius: 20px 20px 0 0;
                transform: translateY(105%);
                transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.25s;
                z-index: 300;
                padding: 0;
                display: flex;
                flex-direction: column;
                overflow: hidden;
                border: 1px solid #4884ff40;
                border-bottom: none;
            }
            .dropdown-menu.show {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            .menu-trigger:hover .dropdown-menu {
                transform: translateY(105%);
                opacity: 0;
                visibility: hidden;
            }
            .dropdown-menu.show {
                pointer-events: auto;
            }
            .dropdown-menu__handle {
                display: block;
                width: 40px;
                height: 4px;
                background: #ffffff30;
                border-radius: 4px;
                margin: 10px auto 6px;
                flex-shrink: 0;
            }
            .dropdown-menu-head {
                padding: 4px 16px 10px;
            }
            .dropdown-menu-close { display: flex; align-items: center; justify-content: center; }
            #menuCategoriesScroll {
                flex: 1 1 auto;
                min-height: 0;
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
                overscroll-behavior: contain;
                padding: 0 10px;
            }
            .menu-categories {
                display: flex;
                flex-direction: column;
                gap: 2px;
                max-height: none;
            }
            .menu-cat-item {
                padding: 10px 12px;
                gap: 12px;
                min-height: 52px;
            }
            .menu-cat-img {
                width: 42px;
                height: 42px;
                min-width: 42px;
                font-size: 1.15rem;
            }
            .dropdown-menu-foot {
                padding: 8px 10px calc(12px + env(safe-area-inset-bottom));
                background: #152030;
            }
            .menu-btn-text { display: none; }
            .menu-btn { padding: 8px 12px; }
        }

        @media (max-width: 380px) {
            .hero-payments span { font-size: 0.62rem; padding: 3px 8px; }
        }
