                 :root {
            --bg-main: #030303;
            --bg-card: #0a0a0a;
            --border-color: #1a1a1a;
            --text-main: #ffffff;
            --text-muted: #888888;
            --gold: #D4AF37;
            --gold-light: #FCE883;
            --green: #4ADE80;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
        body { background-color: var(--bg-main); color: var(--text-main); font-family: 'Inter', sans-serif; overflow-x: hidden; line-height: 1.6; -webkit-font-smoothing: antialiased; }

        /* СКРОЛЛБАР */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: var(--bg-main); }
        ::-webkit-scrollbar-thumb { background: linear-gradient(to bottom, transparent 0%, rgba(212,175,55,0.4) 50%, var(--gold) 90%, #fff 100%); border-radius: 10px; }

        /* ФОНОВАЯ СЕТКА */
        .grid-bg { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px); background-size: 40px 40px; z-index: -2; mask-image: radial-gradient(circle at center, black 40%, transparent 100%); -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%); }

        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; position: relative; }
        .italic-gold { font-family: 'Playfair Display', serif; font-style: italic; color: var(--gold); font-weight: 400; }

        /* КНОПКИ */
        .btn-gold { background: var(--gold); color: #000; border: none; padding: 18px 40px; border-radius: 12px; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: all 0.3s ease; text-decoration: none; display: inline-flex; justify-content: center; align-items: center; text-align: center; }
        .btn-gold:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2); }
        .btn-gold:disabled { opacity: 0.7; cursor: not-allowed; transform: none; box-shadow: none; }
        .btn-outline { background: rgba(10,10,10,0.5); backdrop-filter: blur(5px); border: 1px solid var(--border-color); color: #fff; padding: 14px 28px; border-radius: 12px; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: all 0.3s ease; text-decoration: none; display: inline-flex; justify-content: center; align-items: center; text-align: center; }
        .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

        /* ШАПКА */
        header { padding: 25px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
        .header-content { display: flex; justify-content: space-between; align-items: center; }
        .logo { font-size: 22px; font-weight: 700; text-decoration: none; color: #fff; letter-spacing: 1px; }
        .logo span { color: var(--gold); }

        .msk-time { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); background: rgba(255,255,255,0.03); padding: 8px 16px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.05); }
        .pulse-dot { width: 8px; height: 8px; background: #ff3b30; border-radius: 50%; box-shadow: 0 0 8px #ff3b30; animation: blink 1.5s infinite; }
        #mskClock { color: #fff; font-family: monospace; font-size: 14px; font-weight: 600; }
        @keyframes blink { 0% { opacity: 1; } 50% { opacity: 0.3; } 100% { opacity: 1; } }

        /* HERO БЛОК */
        .hero { padding: 120px 0 80px; text-align: center; position: relative; border-bottom: 1px solid rgba(255,255,255,0.05); }
        .hero::before { content: ''; position: absolute; top: -10%; left: 50%; transform: translateX(-50%); width: 100vw; height: 100vw; max-width: 600px; max-height: 600px; background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, rgba(0,0,0,0) 70%); z-index: -1; pointer-events: none; }
        .hero-badge { display: inline-block; background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.3); color: var(--gold); padding: 8px 16px; border-radius: 50px; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 25px; backdrop-filter: blur(5px); }
        .hero h1 { font-size: clamp(34px, 6vw, 72px); margin-bottom: 20px; font-weight: 600; line-height: 1.1; }
        .hero p { color: var(--text-muted); font-size: clamp(15px, 3vw, 18px); max-width: 650px; margin: 0 auto 35px; font-weight: 300; }

        /* АНИМАЦИЯ ПОЯВЛЕНИЯ ПРИ СКРОЛЛЕ */
        .reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
        .reveal.active { opacity: 1; transform: translateY(0); }

        /* КОНТЕНТНЫЕ БЛОКИ */
        @keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-12px); } 100% { transform: translateY(0px); } }

       /* --- СТРУКТУРА РЯДА (Как ровная таблица 50/50) --- */
.feature-row { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    gap: 60px; 
    padding: 100px 0; 
    border-bottom: 1px solid rgba(255,255,255,0.05); 
}
.feature-row.reverse { 
    flex-direction: row-reverse; 
}

/* Распределяем колонки строго поровну */
.f-text { 
    flex: 1; /* Занимает ровно половину свободного места */
    max-width: 540px; 
}
.f-visual {
    flex: 1; /* Занимает ровно половину свободного места */
    display: flex;
    justify-content: center; /* Центруем карточку-виджет внутри правой колонки */
}

/* --- ТЕКСТЫ --- */
.f-label { 
    color: var(--text-muted); 
    font-size: 11px; 
    text-transform: uppercase; 
    letter-spacing: 3px; 
    margin-bottom: 20px; 
    display: block; 
    border-bottom: 1px solid rgba(255,255,255,0.05); 
    padding-bottom: 10px; 
    width: max-content; 
}
.f-text h2 { 
    font-size: clamp(30px, 5vw, 44px); 
    margin-bottom: 20px; 
    font-weight: 600; 
    line-height: 1.1; 
}
.f-text p { 
    color: var(--text-muted); 
    font-size: 16px; 
    line-height: 1.6; 
    margin-bottom: 20px; 
}

/* --- СПИСОК ПРЕИМУЩЕСТВ (Идеальное выравнивание) --- */
.benefits-list { 
    list-style: none; 
    margin-top: 25px; 
    padding-left: 0; /* ВАЖНО: убираем стандартный отступ браузера, чтобы текст шел вровень с абзацем */
}
.benefits-list li { 
    font-size: 15px; 
    color: #cccccc; 
    margin-bottom: 15px; 
    display: flex; 
    align-items: flex-start; /* Текст и буллит ровняются по верхнему краю */
    gap: 12px; 
    line-height: 1.5; 
}

/* Настройка маркера */
.benefits-list li::before { 
    content: '✦'; 
    color: var(--gold); 
    font-size: 12px; 
    margin-top: 2px; 
    flex-shrink: 0; /* ВАЖНО: запрещаем маркеру сжиматься, если текст занимает 2-3 строки */
}
.benefits-list strong { 
    color: #fff; 
    font-weight: 500; 
}

/* --- АДАПТИВ (Чтобы таблица не сломалась на мобильных) --- */
@media (max-width: 900px) {
    .feature-row,
    .feature-row.reverse {
        flex-direction: column; /* На планшетах и телефонах ставим блоки друг под друга */
        text-align: left;
        gap: 40px;
        padding: 60px 0;
    }
    
    .f-text {
        max-width: 100%;
    }
    
    .f-visual {
        justify-content: flex-start;
        width: 100%;
    }
}


        .f-visual { flex: 1; display: flex; justify-content: center; width: 100%; animation: float 6s ease-in-out infinite; perspective: 1000px; }

        .widget-card { background: rgba(10,10,10,0.8); backdrop-filter: blur(10px); border: 1px solid var(--border-color); border-radius: 20px; padding: 30px; width: 100%; max-width: 400px; box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
        .ui-title { font-size: 10px; text-transform: uppercase; letter-spacing: 2px; color: #555; border-bottom: 1px solid #1a1a1a; padding-bottom: 10px; margin-bottom: 15px; }
        .typo-box { margin-bottom: 20px; }
        .typo-box h4 { font-size: 28px; line-height: 1; margin-bottom: 5px; color: var(--text-main); font-family: 'Playfair Display', serif; }
        .typo-box span { font-size: 10px; color: #666; }
        .colors { display: flex; gap: 10px; margin-bottom: 20px; }
        .dot { width: 20px; height: 20px; border-radius: 50%; }
        .btn-mock { width: 100%; padding: 12px; border-radius: 8px; font-size: 11px; font-weight: 600; text-align: center; margin-bottom: 10px; background: var(--gold); color: #000; }

        .phone { width: 100%; max-width: 260px; height: 520px; background: rgba(10,10,10,0.9); backdrop-filter: blur(10px); border-radius: 35px; border: 5px solid #1a1a1a; padding: 15px; position: relative; display: flex; flex-direction: column; margin: 0 auto; box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
        .notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 20px; background: #1a1a1a; border-radius: 0 0 10px 10px; }
        .p-head { display: flex; justify-content: space-between; align-items: center; margin: 25px 0 15px; }
        .p-lines div { height: 4px; background: #333; border-radius: 2px; margin-bottom: 6px; }
        .p-card { background: #111; border: 1px solid #1f1f1f; border-radius: 12px; padding: 15px; margin-bottom: 12px; }
        .p-line-g { width: 30px; height: 3px; background: var(--gold); border-radius: 2px; margin-bottom: 12px; }
        .p-line { width: 100%; height: 3px; background: #222; border-radius: 2px; margin-bottom: 6px; }
        .p-btn { margin-top: auto; height: 44px; background: linear-gradient(90deg, var(--gold), #AA7C11); border-radius: 10px; }

        .stat-val { font-size: clamp(28px, 6vw, 36px); font-weight: 700; margin: 10px 0 20px; display: flex; align-items: baseline; gap: 10px; }
        .stat-val span { font-size: 13px; color: var(--green); font-weight: 500; }
        .chart { display: flex; align-items: flex-end; gap: 8px; height: 100px; position: relative; }
        .bar { flex: 1; background: #1a1a1a; border-radius: 6px 6px 0 0; transition: height 1.5s cubic-bezier(0.2, 0.8, 0.2, 1); height: 0; }
        .bar.gold { background: var(--gold); box-shadow: 0 0 15px rgba(212,175,55,0.2); }

        /* ИНТЕРАКТИВНЫЙ КАЛЬКУЛЯТОР */
        .calc-section { padding: 100px 0 0; }
        .calc-wrapper { background: rgba(10,10,10,0.6); border: 1px solid var(--border-color); border-radius: 24px; padding: 50px; max-width: 900px; margin: 0 auto; backdrop-filter: blur(10px); }
        .calc-header { text-align: center; margin-bottom: 40px; }
        .calc-header h2 { font-size: clamp(28px, 5vw, 36px); margin-bottom: 10px; }
        .calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }

        .slider-box { margin-bottom: 35px; }
        .slider-box label { display: flex; justify-content: space-between; font-size: 15px; margin-bottom: 15px; color: #eee; }
        input[type=range] { -webkit-appearance: none; width: 100%; background: transparent; }
        input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; height: 26px; width: 26px; border-radius: 50%; background: var(--gold); cursor: pointer; margin-top: -11px; box-shadow: 0 0 15px rgba(212,175,55,0.6); }
        input[type=range]::-webkit-slider-runnable-track { width: 100%; height: 4px; cursor: pointer; background: #333; border-radius: 2px; }

        .toggle-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; font-size: 15px; color: #eee; }
        .switch { position: relative; display: inline-block; width: 50px; height: 28px; }
        .switch input { opacity: 0; width: 0; height: 0; }
        .slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #333; transition: .4s; border-radius: 34px; }
        .slider:before { position: absolute; content: ""; height: 22px; width: 22px; left: 3px; bottom: 3px; background-color: white; transition: .4s; border-radius: 50%; }
        input:checked + .slider { background-color: var(--gold); }
        input:checked + .slider:before { transform: translateX(22px); }

        .calc-result { background: #050505; border: 1px solid #1f1f1f; padding: 40px 30px; border-radius: 20px; text-align: center; box-shadow: inset 0 0 20px rgba(0,0,0,0.5); min-height: 300px; display: flex; flex-direction: column; justify-content: center; }
        .calc-result span { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
        .calc-price { font-size: clamp(36px, 6vw, 46px); font-family: 'Playfair Display', serif; color: var(--gold); margin: 15px 0 25px; font-weight: 600; transition: all 0.3s; line-height: 1; }

        .calc-input { width: 100%; background: #111; border: 1px solid #333; color: #fff; padding: 18px; border-radius: 12px; font-size: 16px; margin-bottom: 15px; outline: none; transition: all 0.3s; font-family: 'Inter', sans-serif; text-align: center; }
        .calc-input:focus { border-color: var(--gold); box-shadow: 0 0 15px rgba(212,175,55,0.2); background: #1a1a1a; }
        .calc-input::placeholder { color: #555; }

        /* ТАРИФЫ */
        .tariffs-section { padding: 100px 0; text-align: center; }
        .tariffs-header h2 { font-size: clamp(30px, 6vw, 46px); margin-bottom: 15px; }
        .tariffs-header p { color: var(--text-muted); margin-bottom: 50px; font-size: 16px; }
        .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: center; perspective: 1000px; }

        .pricing-card { background: rgba(10,10,10,0.8); backdrop-filter: blur(10px); border: 1px solid var(--border-color); border-radius: 24px; padding: 40px 30px; text-align: left; position: relative; display: flex; flex-direction: column; transform-style: preserve-3d; transition: transform 0.1s ease, border-color 0.3s; }
        .pricing-card.premium { border-color: var(--gold); background: radial-gradient(circle at top right, rgba(212,175,55,0.08) 0%, transparent 70%), rgba(10,10,10,0.9); box-shadow: 0 15px 40px rgba(0,0,0,0.5); padding: 50px 30px; }

        .t-name, .t-price, .btn-outline, .btn-gold, .t-features { transform: translateZ(30px); }
        .popular-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%) translateZ(40px); background: var(--gold); color: #000; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 6px 16px; border-radius: 20px; white-space: nowrap; }

        .t-name { font-size: 22px; font-weight: 600; margin-bottom: 8px; }
        .t-desc { font-size: 13px; color: var(--text-muted); min-height: 40px; margin-bottom: 20px; }
        .t-price { border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); padding: 25px 0; margin-bottom: 25px; }
        .t-price span { font-size: 13px; color: var(--text-muted); display: block; margin-bottom: 5px; }
        .t-price strong { font-size: 36px; font-family: 'Playfair Display', serif; color: var(--gold); line-height: 1; }
        .t-features { list-style: none; margin-bottom: 30px; flex-grow: 1; }
        .t-features li { font-size: 14px; margin-bottom: 12px; color: #ddd; display: flex; align-items: flex-start; gap: 10px; }
        .t-features li::before { content: '✦'; color: var(--gold); font-size: 11px; margin-top: 4px; }

        /* ВИДЖЕТЫ */
        .smart-contact { position: fixed; bottom: 30px; right: 30px; z-index: 100; display: flex; flex-direction: column; align-items: flex-end; }
        .sc-tooltip { background: rgba(15,15,15,0.95); backdrop-filter: blur(10px); border: 1px solid var(--gold); color: #fff; padding: 12px 18px; border-radius: 16px 16px 0 16px; font-size: 12px; margin-bottom: 8px; box-shadow: 0 10px 25px rgba(212,175,55,0.2); transform-origin: bottom right; opacity: 0; transform: scale(0.5); pointer-events: none; transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); position: relative; max-width: 250px; }
        .sc-tooltip.visible { opacity: 1; transform: scale(1); pointer-events: auto; }
        .sc-tooltip::after { content: ''; position: absolute; bottom: -8px; right: 20px; border-width: 8px 8px 0; border-style: solid; border-color: var(--gold) transparent transparent transparent; }
        .sc-menu { display: flex; flex-direction: column; gap: 10px; margin-bottom: 15px; opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.3s ease; pointer-events: none; position: absolute; bottom: 65px; right: 0; }
        .smart-contact.open .sc-menu { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
        .sc-item { background: #111; border: 1px solid var(--border-color); color: #fff; padding: 12px 20px; border-radius: 30px; display: flex; align-items: center; gap: 12px; text-decoration: none; font-size: 13px; font-weight: 500; transition: 0.3s; white-space: nowrap; }
        .sc-icon { width: 26px; height: 26px; display: flex; justify-content: center; align-items: center; border-radius: 50%; font-size: 13px; }
        .tg-icon { background: #0088cc; color: #fff; } .ph-icon { background: var(--green); color: #000; }
        .sc-trigger { width: 60px; height: 60px; border-radius: 50%; background: #111; border: 2px solid var(--gold); color: #fff; display: flex; justify-content: center; align-items: center; box-shadow: 0 8px 25px rgba(0,0,0,0.5); transition: 0.3s; cursor: pointer; position: relative; font-size: 24px; outline: none; }
        .sc-dot { position: absolute; top: 0; right: 0; width: 14px; height: 14px; background: #ff3b30; border-radius: 50%; border: 2px solid #111; display: none; }
        .sc-dot.visible { display: block; }
        .sc-dot::after { content: ''; position: absolute; top: -2px; left: -2px; width: 100%; height: 100%; border-radius: 50%; border: 2px solid #ff3b30; animation: pulse 1.5s infinite; }
        @keyframes pulse { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(2); opacity: 0; } }
        .smart-contact.open .sc-trigger { transform: rotate(90deg); border-color: #555; background: #1a1a1a; }

        .shake-widget { position: fixed; bottom: 30px; left: 30px; background: rgba(15, 15, 15, 0.85); backdrop-filter: blur(12px); border: 1px solid rgba(212, 175, 55, 0.4); padding: 10px 18px; border-radius: 30px; display: flex; align-items: center; gap: 10px; cursor: pointer; z-index: 99; transition: all 0.3s; animation: bounce-slight 3s infinite ease-in-out; box-shadow: 0 8px 25px rgba(0,0,0,0.3); }
        .shake-widget:hover { border-color: var(--gold); transform: scale(1.02) translateY(-5px); }
        @keyframes bounce-slight { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
        .sw-text { display: flex; flex-direction: column; } .sw-text strong { font-size: 12px; color: var(--gold-light); } .sw-text span { font-size: 10px; color: #aaa; }

        .modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); backdrop-filter: blur(8px); display: none; justify-content: center; align-items: center; z-index: 1000; opacity: 0; transition: opacity 0.3s; padding: 20px; }
        .modal.active { display: flex; opacity: 1; }
        .modal-content { background: var(--bg-card); border: 1px solid var(--gold); border-radius: 20px; padding: 35px 20px; width: 100%; max-width: 360px; text-align: center; position: relative; transform: translateY(20px); transition: transform 0.3s; }
        .modal.active .modal-content { transform: translateY(0); }
        .close-modal { position: absolute; top: 12px; right: 15px; font-size: 28px; color: var(--text-muted); cursor: pointer; padding: 5px; }

        /* ======================================================= */
        /* НОВЫЙ ИДЕАЛЬНЫЙ АДАПТИВ ДЛЯ МОБИЛЬНЫХ УСТРОЙСТВ (Apple-style) */
        /* ======================================================= */
        @media (max-width: 768px) {
            .container { padding: 0 20px; }

            /* Шапка - компактно и красиво */
            .header-content { justify-content: space-between; }
             /* Скрываем кнопку тарифов в шапке */
            .msk-time { font-size: 11px; padding: 6px 12px; }
            .logo { font-size: 20px; }

            /* Главный экран - 100% ширины для кнопки, идеальные отступы */
            .hero { padding: 60px 0 50px; }
            .hero h1 { font-size: 32px; line-height: 1.2; }
            .hero p { font-size: 15px; margin-bottom: 25px; padding: 0 10px; line-height: 1.5; }
            .hero .btn-gold { width: 100%; max-width: 340px; padding: 18px 20px; font-size: 13px; }

            /* Блоки с описанием - выравнивание по левому краю для удобства чтения */
            .feature-row, .feature-row.reverse { flex-direction: column; gap: 30px; padding: 50px 0; text-align: left; }
            .f-label { margin-bottom: 10px; }
            .f-text h2 { font-size: 26px; margin-bottom: 15px; }
            .f-text p { font-size: 15px; line-height: 1.5; margin-bottom: 15px; }
            .f-visual { padding: 0; width: 100%; }
            .widget-card { max-width: 100%; border-radius: 20px; padding: 25px; }
            .phone { max-width: 240px; height: 480px; } /* Чуть меньше телефон */

            /* Калькулятор - сливается с фоном, акцент на поля ввода */
            .calc-section { padding: 50px 0 0; }
            .calc-wrapper { padding: 0; border: none; background: transparent; backdrop-filter: none; }
            .calc-header h2 { font-size: 26px; }
            .calc-header p { font-size: 14px; padding: 0 10px; }
            .calc-grid { grid-template-columns: 1fr; gap: 30px; }
            .slider-box label, .toggle-row { font-size: 14px; margin-bottom: 12px; }
            .calc-result { padding: 30px 20px; background: rgba(10,10,10,0.8); border: 1px solid var(--border-color); border-radius: 20px; min-height: 250px; }
            .calc-price { font-size: 32px; margin: 10px 0 20px; }
            .calc-input { font-size: 15px; padding: 16px; border-radius: 10px; }
            #submitOrderBtn { padding: 16px; border-radius: 10px; font-size: 13px; }

            /* Тарифы - карточки на всю ширину с закруглениями */
            .tariffs-section { padding: 60px 0 100px; } /* Низ увеличен для плавающих кнопок */
            .tariffs-header h2 { font-size: 28px; }
            .pricing-grid { grid-template-columns: 1fr; gap: 15px; }
            .pricing-card { padding: 25px 20px; border-radius: 20px; transform: none !important; transition: none !important; }
            .pricing-card.premium { padding: 30px 20px; border-color: var(--gold); transform: none; margin: 10px 0; }
            .t-name { font-size: 20px; }
            .t-desc { min-height: auto; margin-bottom: 15px; }
            .t-price { padding: 15px 0; margin-bottom: 20px; }
            .t-price strong { font-size: 32px; }
            .pricing-card .btn-outline, .pricing-card .btn-gold { padding: 16px; font-size: 13px; border-radius: 10px; }

            /* Плавающие виджеты связи - маленькие круглые иконки по краям */
            .smart-contact { bottom: 20px; right: 15px; }
            .sc-tooltip { display: none; } /* Убираем текст подсказки, он только мешает */
            .sc-trigger { width: 52px; height: 52px; font-size: 22px; border-width: 1px; }
            .sc-menu { bottom: 60px; right: 0; }

            .shake-widget { bottom: 20px; left: 15px; padding: 0; width: 52px; height: 52px; border-radius: 50%; justify-content: center; background: rgba(15, 15, 15, 0.9); border: 1px solid rgba(212, 175, 55, 0.4); } 
            .sw-text { display: none; } /* Оставляем только коробку с подарком */
            .sw-icon { margin: 0; font-size: 24px; display: block; }
            
        }
        /* --- Стили для кастомного чекбокса --- */
.custom-checkbox-wrapper {
    display: flex;
    align-items: flex-start; /* Выравнивание по верхнему краю для длинных текстов */
    gap: 12px;
    margin-top: 15px;
    margin-bottom: 20px;
    cursor: pointer;
    user-select: none;
}

/* Скрываем стандартный системный чекбокс */
.custom-checkbox-wrapper input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Квадратик для галочки (в неактивном состоянии) */
.custom-checkbox {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 22px;
    height: 22px;
    border: 2px solid #555; /* Цвет рамки до нажатия */
    border-radius: 6px;
    background-color: transparent;
    transition: all 0.3s ease;
    flex-shrink: 0; /* Чтобы чекбокс не сплющивался, если текст в 2 строки */
    margin-top: 2px;
}

/* Сама SVG галочка */
.custom-checkbox svg {
    width: 14px;
    height: 14px;
    color: #111; /* Цвет самой галочки (черный на золотом фоне смотрится дорого) */
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Эффект пружинки */
}

/* --- Состояние: КОГДА НАЖАТА --- */
.custom-checkbox-wrapper input:checked ~ .custom-checkbox {
    border-color: var(--gold); /* Ваша золотая переменная */
    background-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3); /* Легкое свечение */
}

.custom-checkbox-wrapper input:checked ~ .custom-checkbox svg {
    opacity: 1;
    transform: scale(1);
}

/* Стили для текста согласия */
.checkbox-text {
    font-size: 10px;
    color: #999;
    line-height: 1.4;
    text-align: left;
}

.checkbox-text a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.checkbox-text a:hover {
    border-bottom-color: var(--gold);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}
/* Убиваем стандартные отступы списка */
.benefits-list { 
    list-style: none !important; 
    padding-left: 0 !important; 
    margin-top: 30px !important; 
}

/* Делаем каждый пункт списка flex-контейнером */
.benefits-list li { 
    display: flex !important; 
    align-items: flex-start !important; 
    margin-bottom: 24px !important; 
    font-size: 15px !important; 
    color: #cccccc !important; 
    line-height: 1.5 !important; 
}

/* 1 КОЛОНКА: Звездочка (запрещаем ей сжиматься) */
.benefits-list li::before { 
    content: '✦'; 
    color: #d4af37; /* Или var(--gold) */
    font-size: 12px !important;
    margin-top: 4px !important; /* Ровняем по первой строке текста */
    margin-right: 16px !important; /* Отступ от звездочки до текста */
    flex-shrink: 0 !important; 
}

/* 2 КОЛОНКА: Заголовок (Жестко фиксируем ширину!) */
.benefits-list strong { 
    flex: 0 0 180px !important; /* 180px — ширина левой колонки. Можете увеличить/уменьшить */
    display: block !important; 
    color: #fff !important; 
    font-weight: 500 !important; 
    padding-right: 15px !important; /* Защитный отступ, чтобы текст не прилипал */
}

/* АДАПТИВ: на телефонах выключаем таблицу, делаем друг под другом */
@media (max-width: 600px) {
    .benefits-list li {
        flex-wrap: wrap !important; /* Разрешаем перенос строк */
    }
    .benefits-list strong {
        flex: 0 0 100% !important; /* Заголовок занимает всю ширину */
        margin-bottom: 8px !important; /* Отступ до описания */
    }
}


/* Делаем пункты кликабельными/живыми на вид */
.benefits-list li { 
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important; 
    padding: 12px 16px !important;
    margin-left: -16px !important; /* Компенсируем паддинг, чтобы текст не уехал изначально */
    border-radius: 12px !important;
    border: 1px solid transparent !important;
}

/* Эффект при наведении */
.benefits-list li:hover {
    background: rgba(255, 255, 255, 0.03) !important; /* Легкая подсветка фона */
    border: 1px solid rgba(255, 255, 255, 0.08) !important; /* Тонкая рамка */
    transform: translateX(8px) !important; /* Легкий сдвиг вправо */
}

/* Звездочка начинает светиться при наведении на строку */
.benefits-list li:hover::before {
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.8) !important; /* Золотое свечение */
    transform: scale(1.2) !important;
    transition: all 0.3s ease !important;
}
.italic-gold {
    font-style: italic !important;
    /* Золотой градиент */
    background: linear-gradient(135deg, #d4af37 0%, #fff6d9 50%, #b89123 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    /* Легкое свечение вокруг текста */
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.15));
}
.widget-card {
    background: linear-gradient(145deg, rgba(30,30,30,0.8) 0%, rgba(15,15,15,0.9) 100%) !important;
    backdrop-filter: blur(20px) !important; /* Размытие фона под карточкой */
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important; /* Блик сверху */
    border-radius: 24px !important;
    padding: 40px !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6) !important;

    /* Анимация левитации (парения) */
    animation: floatingCard 6s ease-in-out infinite !important;
}

/* Ключевые кадры для парения карточки */
@keyframes floatingCard {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}
.feature-row {
    position: relative !important;
    z-index: 1 !important;
}

/* Создаем пятно света на фоне */
.feature-row::before {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 10% !important;
    width: 400px !important;
    height: 400px !important;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%) !important;
    transform: translateY(-50%) !important;
    z-index: -1 !important; /* Прячем под текст */
    pointer-events: none !important;
}
/* --- 1. АТМОСФЕРНЫЙ ФОН (Дышащий свет и сетка) --- */
.hero {
    position: relative;
    overflow: hidden; /* Чтобы свечение и сетка не вылезали за края */
}

/* Дышащий свет (модифицируем ваш ::before) */
.hero::before {
    /* Ваши текущие свойства оставляем... */
    animation: pulseGlow 6s ease-in-out infinite alternate !important; /* Добавляем анимацию */
}

/* Ключевые кадры для пульсации света */
@keyframes pulseGlow {
    0% { transform: translateX(-50%) scale(0.9); opacity: 0.6; }
    100% { transform: translateX(-50%) scale(1.1); opacity: 1; }
}

/* Высокотехнологичная фоновая сетка */
.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    /* Рисуем тончайшую сетку */
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px; /* Размер ячеек */
    z-index: -2;
    /* Делаем так, чтобы сетка плавно растворялась к низу блока */
    mask-image: linear-gradient(to bottom, black 20%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 20%, transparent 100%);
    pointer-events: none;
    /* Медленное движение сетки вниз */
    animation: moveGrid 20s linear infinite;
}

@keyframes moveGrid {
    0% { transform: translateY(0); }
    100% { transform: translateY(40px); } /* Сдвиг на один размер ячейки */
}

/* --- 2. КИНЕМАТОГРАФИЧНОЕ ПОЯВЛЕНИЕ ЭЛЕМЕНТОВ --- */
/* Прячем элементы изначально */
.hero-badge, 
.hero h1, 
.hero p, 
.hero .btn-gold {
    opacity: 0;
    transform: translateY(30px);
    /* cubic-bezier дает ту самую плавность Apple */
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards; 
}

/* Задаем задержки (очередность) появления */
.hero-badge { animation-delay: 0.2s; }
.hero h1    { animation-delay: 0.4s; }
.hero p     { animation-delay: 0.6s; }
.hero .btn-gold { animation-delay: 0.8s; }

/* Сама анимация появления */
@keyframes fadeUp {
    0% { 
        opacity: 0; 
        transform: translateY(30px) scale(0.98); 
        filter: blur(5px); /* Легкое размытие в начале (эффект фокуса) */
    }
    100% { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
        filter: blur(0); 
    }
}

/* --- 3. БЛИК НА ЗОЛОТОМ ТЕКСТЕ --- */
/* Добавляем блеск на слово "продают за вас" */
.hero h1 .italic-gold {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.hero h1 .italic-gold::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shine 4s ease-in-out infinite;
    animation-delay: 2s; /* Блик пробежит через 2 секунды после загрузки */
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}
/* --- КНОПКА ВЫЗОВА (Скрыта по умолчанию) --- */
.ai-trigger-btn {
    position: fixed;
    /* На десктопе располагаем внизу справа */
    bottom: 30px; 
    right: 30px; 
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);

    /* Прячем кнопку за правый край экрана изначально */
    opacity: 0;
    transform: translateX(100px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease, background 0.3s ease;
}

/* Класс, который будет добавляться через JS при скролле 15% */
.ai-trigger-btn.is-visible {
    opacity: 1;
    transform: translateX(0); /* На десктопе просто встает на место */
}

.ai-trigger-btn:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: #d4af37;
}

.ai-icon { color: #d4af37; font-size: 18px; animation: spinStar 4s linear infinite; }
.ai-btn-text { font-size: 14px; font-weight: 500; letter-spacing: 0.5px; white-space: nowrap; }

/* Пульсирующее свечение */
.ai-pulse-ring {
    position: absolute; left: -1px; top: -1px; right: -1px; bottom: -1px;
    border-radius: 30px;
    border: 1px solid #d4af37;
    animation: pulseBorder 2s ease-out infinite;
    pointer-events: none;
}
@keyframes pulseBorder {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.3); opacity: 0; }
}

/* --- АДАПТАЦИЯ ДЛЯ ТЕЛЕФОНОВ --- */
@media (max-width: 768px) {
    .ai-trigger-btn {
        /* На телефоне переносим на середину экрана справа */
        top: 50%;
        bottom: auto; /* Сбрасываем десктопный bottom */
        right: 15px; /* Ближе к краю, чтобы не мешать тексту */

        /* Делаем идеальный круг */
        width: 50px;
        height: 50px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;

        /* Начальное скрытое положение для телефона (сохраняем Y по центру) */
        transform: translateY(-50%) translateX(100px);
    }

    .ai-trigger-btn.is-visible {
        /* Выезд на телефоне */
        transform: translateY(-50%) translateX(0);
    }

    /* Скрываем текст, оставляем только иконку на телефоне */
    .ai-btn-text { display: none; }

    /* Скругляем пульсацию под круглую кнопку */
    .ai-pulse-ring { border-radius: 50%; }

    /* Адаптация окна чата под экран телефона, чтобы клавиатура не ломала дизайн */
    .chat-box { height: 50vh; max-height: 400px; }
}

.ai-icon { color: #d4af37; font-size: 16px; animation: spinStar 4s linear infinite; }
.ai-btn-text { font-size: 14px; font-weight: 500; letter-spacing: 0.5px; }

@keyframes spinStar { 100% { transform: rotate(360deg); } }

/* Пульсирующее свечение вокруг кнопки */
.ai-pulse-ring {
    position: absolute; left: 0; top: 0; right: 0; bottom: 0;
    border-radius: 30px;
    border: 1px solid #d4af37;
    animation: pulseBorder 2s ease-out infinite;
    pointer-events: none;
}
@keyframes pulseBorder {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.3); opacity: 0; }
}

/* --- МОДАЛЬНОЕ ОКНО С ЧАТОМ --- */
.ai-modal {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex; justify-content: center; align-items: center;
    opacity: 1; visibility: visible;
    transition: all 0.3s ease;
}
.ai-modal.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.ai-terminal {
    width: 90%; max-width: 500px;
    background: linear-gradient(145deg, rgba(25,25,25,0.95), rgba(10,10,10,0.98));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.8);
    transform: translateY(0) scale(1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}
.ai-modal.hidden .ai-terminal { transform: translateY(30px) scale(0.95); }

/* Шапка терминала */
.terminal-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 20px; background: rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.header-left { display: flex; align-items: center; gap: 15px; }
.dots span { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 4px;}
.dots .red { background: #ff5f56; } .dots .yellow { background: #ffbd2e; } .dots .green { background: #27c93f; }
.terminal-header .title { color: #888; font-size: 13px; font-family: monospace; }
.close-btn { background: none; border: none; color: #888; font-size: 24px; cursor: pointer; transition: color 0.2s; line-height: 1;}
.close-btn:hover { color: #fff; }

/* Чат */
.chat-box { padding: 20px; height: 380px; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; }
.chat-box::-webkit-scrollbar { width: 4px; }
.chat-box::-webkit-scrollbar-thumb { background: rgba(212, 175, 55, 0.3); border-radius: 4px; }

/* Сообщения */
.msg { max-width: 85%; padding: 12px 16px; border-radius: 12px; font-size: 14px; line-height: 1.5; animation: popIn 0.3s ease forwards; }
.msg.ai { background: rgba(255,255,255,0.04); color: #ddd; align-self: flex-start; border-bottom-left-radius: 2px; }
.msg.user { background: rgba(212, 175, 55, 0.15); border: 1px solid rgba(212, 175, 55, 0.3); color: #fff; align-self: flex-end; border-bottom-right-radius: 2px; }

/* Зона действий */
.action-area { padding: 20px; background: rgba(0,0,0,0.4); border-top: 1px solid rgba(255,255,255,0.05); display: flex; flex-direction: column; gap: 8px; }
.chat-btn { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: #fff; padding: 12px; border-radius: 8px; cursor: pointer; text-align: left; transition: 0.2s; }
.chat-btn:hover { background: rgba(212,175,55,0.1); border-color: #d4af37; transform: translateX(5px); }

/* Инпут */
.chat-input-wrapper { display: flex; gap: 10px; }
.chat-input { flex: 1; background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1); color: #fff; padding: 12px 15px; border-radius: 8px; outline: none; }
.chat-input:focus { border-color: #d4af37; }
.send-btn { background: #d4af37; color: #000; border: none; padding: 0 20px; border-radius: 8px; font-weight: 600; cursor: pointer; }
/* --- СТИЛИ ДЛЯ ЧЕКБОКСА СОГЛАСИЯ --- */
.ai-legal-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 12px;
    cursor: pointer;
    font-size: 11px;
    color: #888;
    line-height: 1.4;
    user-select: none;
}

.ai-legal-checkbox input[type="checkbox"] {
    display: none; /* Прячем стандартный квадратик */
}

.ai-legal-checkbox .custom-checkbox {
    width: 16px;
    height: 16px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    transition: all 0.2s ease;
}

.ai-legal-checkbox .custom-checkbox svg {
    width: 10px;
    height: 10px;
    color: #000;
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* Состояние, когда галочка стоит */
.ai-legal-checkbox input[type="checkbox"]:checked + .custom-checkbox {
    background: #d4af37;
    border-color: #d4af37;
}

.ai-legal-checkbox input[type="checkbox"]:checked + .custom-checkbox svg {
    opacity: 1;
}

.ai-legal-checkbox a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.2s;
}

.ai-legal-checkbox a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Анимация ошибки, если галочка не стоит */
@keyframes shakeError {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    75% { transform: translateX(3px); }
}
.checkbox-error .custom-checkbox {
    border-color: #ff5f56;
    animation: shakeError 0.3s ease;
}
/* Прячем на ПК (если нужно) */
.premium-bottom-nav { display: none; }

/* Включаем на телефонах */
@media (max-width: 768px) {
    .premium-bottom-nav { 
        display: flex; position: fixed; bottom: 0; left: 0; width: 100%; 
        z-index: 9998; background: rgba(15, 15, 15, 0.85); 
        backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); 
        border-top: 1px solid rgba(255, 255, 255, 0.05); 
        padding-bottom: env(safe-area-inset-bottom); 
    }
}

/* Общие стили панели */
.nav-item { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; height: 68px; color: rgba(255, 255, 255, 0.5); text-decoration: none; -webkit-tap-highlight-color: transparent; }
.nav-icon-wrapper { position: relative; display: inline-flex; margin-bottom: 4px; }
.nav-item svg { width: 22px; height: 22px; }
.nav-item > span { font-size: 10px; font-weight: 500; }
.nav-item.call-action { color: #EEB544; }

/* --- СПЕЦИАЛЬНЫЕ СТИЛИ ДЛЯ КНОПКИ ИИ --- */
/* Квадратный фон иконки из виджета */
.ai-icon-box {
    width: 32px;
    height: 32px;
    background: rgba(238, 181, 68, 0.15); /* Полупрозрачный золотой фон */
    color: #EEB544;
    border-radius: 8px; /* Скругленные края */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}
.ai-icon-box svg {
    width: 18px; /* Чуть меньше, чтобы влезла в квадратик */
    height: 18px;
}
/* Текст по вертикали */
.ai-text-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
}
.ai-title {
    color: #EEB544;
    font-size: 10px;
    font-weight: 700;
}
.ai-subtitle {
    color: rgba(255, 255, 255, 0.4);
    font-size: 8px;
    margin-top: 2px;
}
/* Прячем на ПК */
.premium-bottom-nav { display: none; }

/* Включаем на телефонах */
@media (max-width: 768px) {
    .premium-bottom-nav { 
        display: flex; position: fixed; bottom: 0; left: 0; width: 100%; 
        z-index: 9998; background: rgba(15, 15, 15, 0.85); 
        backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); 
        border-top: 1px solid rgba(255, 255, 255, 0.05); 
        padding-bottom: env(safe-area-inset-bottom); 

        /* Прячем панель за пределы экрана по умолчанию */
        transform: translateY(150%);
        opacity: 0;
        /* Настраиваем плавный выезд снизу */
        transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
    }

    /* Класс, который скрипт будет добавлять для показа панели */
    .premium-bottom-nav.show-nav {
        transform: translateY(0);
        opacity: 1;
    }
}
/* --- АНИМАЦИИ (Точка ТГ и Трубка) --- */
.notification-badge { position: absolute; top: -4px; right: -6px; background-color: #FF3B30; color: white; font-size: 10px; font-weight: 700; width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 2px solid #141414; opacity: 0; transform: scale(0); transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.notification-badge.show { opacity: 1; transform: scale(1); }
.phone-anim { animation: ring-pulse 4s infinite; transform-origin: center; }
@keyframes ring-pulse { 0% { transform: rotate(0) scale(1); } 2% { transform: rotate(-15deg) scale(1.1); color: #EEB544; } 4% { transform: rotate(15deg) scale(1.1); color: #EEB544; } 6% { transform: rotate(-15deg) scale(1.1); color: #EEB544; } 8% { transform: rotate(15deg) scale(1.1); color: #EEB544; } 10% { transform: rotate(0) scale(1); color: #EEB544; } 100% { transform: rotate(0) scale(1); } }