/* === ВЫЖИГАЕМ ДЕФОЛТНЫЕ СИСТЕМНЫЕ И BOOTSTRAP СТИЛИ === */
        *:focus, *:active, a:focus, button:focus, input:focus {
            outline: none !important;
            box-shadow: none !important;
            -webkit-tap-highlight-color: transparent !important;
        }
        a { text-decoration: none !important; }

        /* Сброс стандартного Bootstrap-тумблера и фикс ШАРИКА */
        .form-switch .form-check-input {
            width: 3.5em !important; height: 1.7em !important; cursor: pointer;
            background-color: rgba(255, 255, 255, 0.05) !important;
            border: 1px solid rgba(255, 255, 255, 0.1) !important;
            transition: all 0.3s ease !important;
            box-shadow: none !important;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23ffffff'/%3e%3c/svg%3e") !important;
        }
        .form-switch .form-check-input:checked {
            background-color: rgba(46, 160, 67, 0.75) !important;
            border-color: var(--accent-success) !important;
            box-shadow: 0 0 12px rgba(46, 160, 67, 0.5), inset 0 0 8px rgba(255, 255, 255, 0.4) !important;
            backdrop-filter: blur(4px) !important;
            -webkit-backdrop-filter: blur(4px) !important;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23ffffff'/%3e%3c/svg%3e") !important;
        }

        /* === ТОЧНЫЕ ЦВЕТА === */
        :root {
            --bg-body: #050b14;
            --bg-panel: #0a1120;
            --bg-card: #111a2e;
            --text-main: #f8fafc;
            --text-sub: #94a3b8;
            --border-color: #1e293b;
            --accent-primary: #6f42c1;
            --accent-secondary: #0dcaf0;
            --accent-success: #2ea043;
            --glow-primary: rgba(111, 66, 193, 0.25);
            --glow-secondary: rgba(13, 202, 240, 0.2);
        }

        [data-theme="light"] {
            --bg-body: #f3f4f6;
            --bg-panel: #ffffff;
            --bg-card: #ffffff;
            --text-main: #111827;
            --text-sub: #6b7280;
            --border-color: #e5e7eb;
            --glow-primary: rgba(111, 66, 193, 0.15);
            --glow-secondary: rgba(13, 202, 240, 0.15);
        }

        * { scrollbar-width: none !important; border-radius: 8px !important; }
        *::-webkit-scrollbar { display: none !important; }

        body {
            background-color: var(--bg-body);
            color: var(--text-main);
            font-family: 'Inter', sans-serif;
            margin: 0;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        /* === NAVIGATION === */
        .navbar-custom {
            background-color: rgba(5, 11, 20, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-color);
            padding: 0.75rem 0;
            position: fixed;
            top: 0; width: 100%; z-index: 1000;
        }
        [data-theme="light"] .navbar-custom { background-color: rgba(243, 244, 246, 0.85); }

        /* === BUTTONS === */
        .btn-prime {
            background: transparent; color: var(--text-main); border: 1px solid var(--border-color);
            padding: 10px 24px; font-weight: 600; transition: all 0.3s ease; text-decoration: none; display: inline-block;
            text-align: center;
        }
        .btn-prime:hover { background: var(--bg-panel); border-color: var(--accent-primary); color: var(--accent-primary); }

        .btn-primary-custom {
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
            color: white !important; border: none; padding: 10px 28px; font-weight: 700;
            box-shadow: 0 10px 20px var(--glow-primary); transition: all 0.3s ease; text-decoration: none; display: inline-block;
            text-align: center;
        }
        .btn-primary-custom:hover { transform: translateY(-2px); box-shadow: 0 15px 30px rgba(13, 202, 240, 0.4); }

        .billing-toggle-container {
            background: rgba(255,255,255,0.03);
            padding: 12px 30px;
            border-radius: 50px !important;
            border: 1px solid var(--border-color);
            display: inline-flex; align-items: center; gap: 15px;
            margin-bottom: 40px;
        }

        .btn-trial-link {
            font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.5px;
            color: var(--text-sub) !important; transition: all 0.2s ease;
            padding: 8px; text-decoration: none !important; display: block;
        }
        .btn-trial-link:hover { color: var(--accent-secondary) !important; background: transparent !important; }

        .price-total-year {
            font-size: 0.85rem; color: var(--accent-success); font-weight: 600;
            margin-bottom: 20px; height: 20px; opacity: 0; transition: opacity 0.3s ease;
        }
        .price-total-year.visible { opacity: 1; }

        /* === HERO SECTION === */
        .hero-section {
            padding: 160px 0 80px;
            background: radial-gradient(circle at 50% -20%, var(--bg-panel) 0%, var(--bg-body) 70%);
            position: relative;
        }
        .hero-title { font-size: clamp(2rem, 6vw, 4.5rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 24px; }
        .hero-accent { 
            background: linear-gradient(to right, var(--accent-secondary), var(--accent-primary)); 
            -webkit-background-clip: text; 
            background-clip: text; 
            -webkit-text-fill-color: transparent; 
        }
        .hero-subtext { color: var(--text-sub); font-size: clamp(1rem, 2vw, 1.25rem); max-width: 650px; margin: 0 auto 40px; line-height: 1.6; }

        .hero-mockup-container {
            border: 1px solid var(--border-color); background: var(--bg-panel); padding: 10px;
            border-radius: 16px !important; max-width: 1000px; margin: 40px auto 0;
            box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 40px var(--glow-primary);
            transform: perspective(1000px) rotateX(2deg); transition: transform 0.5s ease;
        }
        .hero-mockup-container:hover { transform: perspective(1000px) rotateX(0deg); }
        .hero-mockup-container img { border-radius: 8px !important; width: 100%; height: auto; }

        /* === FEATURES === */
        .section-title { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: 1rem; }
        .section-subtitle { color: var(--text-sub); font-size: 1.1rem; margin-bottom: 3rem; max-width: 600px; margin-left: auto; margin-right: auto; }

        .feature-card {
            background: var(--bg-card); border: 1px solid var(--border-color); padding: 30px 24px; height: 100%;
            transition: all 0.3s ease; position: relative; overflow: hidden;
        }
        .feature-card:hover { border-color: var(--accent-primary); transform: translateY(-5px); box-shadow: 0 10px 30px var(--glow-primary); }
        .icon-box {
            width: 56px; height: 56px; background: var(--glow-secondary); color: var(--accent-secondary);
            display: flex; align-items: center; justify-content: center; font-size: 1.5rem; border-radius: 12px !important; margin-bottom: 20px;
        }

        /* === PRICING === */
        .price-card {
            background: var(--bg-card); border: 1px solid var(--border-color); padding: 40px 30px; height: 100%;
            transition: all 0.3s ease; display: flex; flex-direction: column; position: relative;
        }
        .price-card:hover { border-color: var(--text-sub); transform: translateY(-5px); }

        .price-pro-card { border: 2px solid var(--accent-primary); box-shadow: 0 0 30px var(--glow-primary); transform: scale(1.04); z-index: 10; }
        .price-pro-card:hover { transform: scale(1.04) translateY(-5px); border-color: var(--accent-secondary); }

        .badge-bestseller {
            position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
            color: white; padding: 4px 16px; font-size: 0.8rem; font-weight: 700; border-radius: 20px !important; text-transform: uppercase; white-space: nowrap;
        }

        /* === PRICING TYPOGRAPHY === */
        .price-number { 
            font-size: clamp(2.5rem, 4vw, 3.5rem); 
            font-weight: 800; 
            margin: 15px 0 5px 0; 
            color: var(--text-main);
            display: flex;
            justify-content: center;
            align-items: baseline;
        }
        .price-currency { 
            font-size: 0.55em; 
            font-weight: 700; 
            margin-right: 6px; 
            transform: translateY(-0.6em); /* Поднимаем значок евро */
        }
        .price-int { 
            line-height: 1; 
        }
        .price-cents { 
            font-size: 0.45em; 
            font-weight: 700; 
            margin-left: 2px; 
            transform: translateY(-0.9em); /* Поднимаем центы */
        }
        .price-period { 
            font-size: 1rem; 
            color: var(--text-sub); 
            font-weight: 500; 
            margin-left: 6px; 
        }

        .feature-list { list-style: none; padding: 0; margin: 0 0 30px 0; flex-grow: 1; }
        .feature-list li { padding: 10px 0; color: var(--text-sub); font-size: 0.95rem; display: flex; align-items: flex-start; }
        .feature-list i { margin-top: 4px; margin-right: 12px; color: var(--accent-success); font-size: 0.9rem; min-width: 14px; text-align: center; }

        /* === FOOTER === */
        footer {
            background-color: var(--bg-panel);
            border-top: 1px solid var(--border-color);
            padding: 40px 0 20px;
        }
        .footer-link {
            color: var(--text-sub);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.2s ease;
        }
        .footer-link:hover { color: var(--text-main); }