        :root {
            --pin-red: #E3000B;
            --pin-red-dark: #B80009;
            --pin-red-glow: rgba(227, 0, 11, 0.3);
            --pin-green: #1DB954;
            --pin-green-dark: #17A34A;
            --pin-gold: #FFD700;
            --pin-gold-dark: #E6C200;
            --bg-primary: #0C1929;
            --bg-secondary: #1A1A1A;
            --bg-card: #222222;
            --bg-card-hover: #2A2A2A;
            --text-primary: #F5F5F5;
            --text-secondary: #A0A0A0;
            --text-muted: #666666;
            --border-subtle: #333333;
            --border-accent: #444444;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
            --shadow-glow-red: 0 0 40px rgba(227,0,11,0.15);
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        body {
            font-family: 'Montserrat', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.7;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }

        /* ========== HEADER ========== */
        .header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(12, 25, 41, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-subtle);
            padding: 0 24px;
        }

        .header-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }

        .logo {
            font-family: 'Oswald', sans-serif;
            font-size: 28px;
            font-weight: 700;
            text-decoration: none;
            color: var(--text-primary);
            letter-spacing: 1px;
        }

        .logo span { color: var(--pin-red); }

        nav { display: flex; gap: 8px; align-items: center; }

        nav a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
            padding: 8px 14px;
            border-radius: var(--radius-sm);
            transition: var(--transition);
            white-space: nowrap;
        }

        nav a:hover { color: var(--text-primary); background: var(--bg-card); }

        .btn-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--pin-red);
            color: white;
            font-weight: 700;
            font-size: 14px;
            padding: 12px 28px;
            border-radius: var(--radius-xl);
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn-cta:hover { background: var(--pin-red-dark); transform: translateY(-2px); box-shadow: var(--shadow-glow-red); }

        .btn-green {
            background: var(--pin-green);
        }

        .btn-green:hover { background: var(--pin-green-dark); box-shadow: 0 0 40px rgba(29,185,84,0.2); }

        .hamburger { display: none; background: none; border: none; color: var(--text-primary); font-size: 28px; cursor: pointer; }

        /* CTA в шапке — всегда видна */
        .header-cta { flex-shrink: 0; }

        /* ========== LAYOUT ========== */
        .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 340px;
            gap: 40px;
            padding: 48px 0;
        }

        .main-content { min-width: 0; }
        .sidebar { position: sticky; top: 96px; align-self: start; }

        /* ========== HERO ========== */
        .hero {
            position: relative;
            padding: 80px 24px;
            overflow: hidden;
            background: var(--bg-primary);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(227,0,11,0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }

        .hero h1 {
            font-family: 'Oswald', sans-serif;
            font-size: 48px;
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .hero h1 .accent { color: var(--pin-red); }

        .hero-subtitle {
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 32px;
            line-height: 1.6;
        }

        .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

        .hero-image {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
        }

        .hero-image img { width: 100%; height: auto; display: block; }

        .img-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--bg-card) 0%, #2d1a1a 100%);
            color: var(--text-muted);
            font-size: 13px;
            text-align: center;
            padding: 20px;
        }

        .img-placeholder .img-icon { font-size: 48px; margin-bottom: 12px; opacity: 0.4; }
        .img-placeholder .img-name { color: var(--pin-red); font-weight: 600; margin-bottom: 4px; font-size: 12px; }
        .img-placeholder .img-alt { font-size: 11px; color: var(--text-muted); }

        /* ========== AI-ANSWER BOX ========== */
        .ai-box {
            background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-card) 100%);
            border: 1px solid rgba(29,185,84,0.3);
            border-left: 4px solid var(--pin-green);
            border-radius: var(--radius-md);
            padding: 28px 32px;
            margin: 40px 0;
            position: relative;
        }

        .ai-box::before {
            content: '⚡ Жылдам жауап';
            position: absolute;
            top: -12px;
            left: 20px;
            background: var(--pin-green);
            color: #0D0D0D;
            font-size: 11px;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .ai-box h3 { font-size: 16px; margin-bottom: 12px; color: var(--pin-green); }
        .ai-box p { font-size: 14px; color: var(--text-secondary); line-height: 1.8; }

        /* ========== BRAND TABLE ========== */
        .brand-table {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            border: 1px solid var(--border-subtle);
            overflow: hidden;
            margin: 40px 0;
        }

        .brand-table-header {
            background: linear-gradient(135deg, var(--pin-red) 0%, var(--pin-red-dark) 100%);
            padding: 16px 24px;
            font-family: 'Oswald', sans-serif;
            font-size: 18px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .brand-table table { width: 100%; border-collapse: collapse; }

        .brand-table td {
            padding: 14px 24px;
            border-bottom: 1px solid var(--border-subtle);
            font-size: 14px;
        }

        .brand-table tr:last-child td { border-bottom: none; }
        .brand-table td:first-child { color: var(--text-muted); font-weight: 500; width: 40%; }
        .brand-table td:last-child { font-weight: 600; }

        /* ========== ARTICLE CONTENT ========== */
        .article h2 {
            font-family: 'Oswald', sans-serif;
            font-size: 32px;
            font-weight: 700;
            margin: 56px 0 24px;
            padding-bottom: 16px;
            border-bottom: 2px solid var(--pin-red);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .article h3 {
            font-size: 20px;
            font-weight: 700;
            margin: 36px 0 16px;
            color: var(--text-primary);
        }

        .article p {
            margin-bottom: 20px;
            color: var(--text-secondary);
            font-size: 15px;
            line-height: 1.8;
        }

        .article a {
            color: var(--pin-green);
            text-decoration: none;
            font-weight: 500;
            border-bottom: 1px solid rgba(29,185,84,0.3);
            transition: var(--transition);
        }

        .article a:hover { color: #22d66a; border-bottom-color: #22d66a; }

        /* ========== TABLES IN ARTICLE ========== */
        .article table, .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            background: var(--bg-card);
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 1px solid var(--border-subtle);
        }

        .article th, .data-table th {
            background: var(--bg-secondary);
            padding: 14px 20px;
            text-align: left;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--text-muted);
            border-bottom: 2px solid var(--pin-red);
        }

        .article td, .data-table td {
            padding: 14px 20px;
            border-bottom: 1px solid var(--border-subtle);
            font-size: 14px;
            color: var(--text-secondary);
        }

        .article tr:last-child td, .data-table tr:last-child td { border-bottom: none; }
        .article tr:hover td, .data-table tr:hover td { background: var(--bg-card-hover); }

        /* ========== IMAGE PLACEHOLDERS ========== */
        .article-image {
            margin: 32px 0;
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            
        }

        .article-image img { width: 100%; height: auto; display: block; }

        /* ========== BONUS CARDS ========== */
        .bonus-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 20px;
            margin: 32px 0;
        }

        .bonus-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 28px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .bonus-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--pin-red), var(--pin-gold));
        }

        .bonus-card:hover { border-color: var(--pin-red); transform: translateY(-4px); box-shadow: var(--shadow-card); }

        .bonus-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
        .bonus-card .bonus-amount { font-family: 'Oswald', sans-serif; font-size: 28px; font-weight: 700; color: var(--pin-gold); margin-bottom: 8px; }
        .bonus-card .bonus-desc { font-size: 13px; color: var(--text-muted); }

        /* ========== FAQ ========== */
        .faq-section { margin: 48px 0; }

        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            margin-bottom: 12px;
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-item:hover { border-color: var(--border-accent); }

        .faq-question {
            padding: 20px 24px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 15px;
        }

        .faq-question::after { content: '+'; font-size: 24px; color: var(--pin-red); font-weight: 300; transition: var(--transition); }
        .faq-item.active .faq-question::after { content: '−'; }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .faq-item.active .faq-answer { max-height: 500px; }

        .faq-answer p {
            padding: 0 24px 20px;
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        /* ========== SIDEBAR ========== */
        .sidebar-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 28px;
            margin-bottom: 24px;
        }

        .sidebar-card h4 {
            font-family: 'Oswald', sans-serif;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .sidebar-bonus {
            text-align: center;
            border: 1px solid rgba(227,0,11,0.3);
            background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-card) 100%);
        }

        .sidebar-bonus .big-number {
            font-family: 'Oswald', sans-serif;
            font-size: 42px;
            font-weight: 800;
            color: var(--pin-gold);
            line-height: 1.1;
        }

        .sidebar-bonus .big-label { font-size: 13px; color: var(--text-muted); margin: 4px 0 20px; }

        .sidebar-nav a {
            display: block;
            padding: 12px 16px;
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            border-radius: var(--radius-sm);
            transition: var(--transition);
            margin-bottom: 4px;
        }

        .sidebar-nav a:hover { color: var(--text-primary); background: var(--bg-card-hover); }

        .sidebar-nav a::before { content: '→ '; color: var(--pin-red); }

        /* ========== COMPARISON TABLE ========== */
        .comparison-table { overflow-x: auto; margin: 32px 0; }

        .comparison-table table { min-width: 600px; }

        .comparison-table .check { color: var(--pin-green); font-weight: 700; }
        .comparison-table .cross { color: var(--pin-red); }

        /* ========== FOOTER ========== */
        .footer {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-subtle);
            padding: 48px 24px 24px;
            margin-top: 80px;
        }

        .footer-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
        }

        .footer h5 {
            font-family: 'Oswald', sans-serif;
            font-size: 15px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
            color: var(--text-primary);
        }

        .footer p, .footer a {
            font-size: 13px;
            color: var(--text-muted);
            text-decoration: none;
            line-height: 2;
        }

        .footer a:hover { color: var(--text-secondary); }

        .footer-bottom {
            max-width: 1200px;
            margin: 32px auto 0;
            padding-top: 24px;
            border-top: 1px solid var(--border-subtle);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
            color: var(--text-muted);
        }

        .age-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border: 2px solid var(--pin-red);
            border-radius: 50%;
            font-weight: 800;
            font-size: 13px;
            color: var(--pin-red);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .content-wrapper { grid-template-columns: 1fr; }
            .sidebar { display: none; }
            .hero-inner { grid-template-columns: 1fr; text-align: center; }
            .hero h1 { font-size: 36px; }
            .hero-ctas { justify-content: center; }
            .hero-image { max-width: 500px; margin: 0 auto; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 768px) {
            nav { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: rgba(12, 25, 41, 0.98); padding: 24px; border-bottom: 1px solid var(--border-subtle); gap: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); border-radius: 0 0 16px 16px; }
            nav.active { display: flex; }
            .hamburger { display: block; }
            .header-cta { padding: 9px 14px; font-size: 12px; letter-spacing: 0; }
            .hero { padding: 48px 24px; }
            .hero h1 { font-size: 28px; }
            .article h2 { font-size: 24px; }
            .bonus-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 12px; }
        }
    
        /* ========== INNER PAGE HERO ========== */
        .page-hero {
            background: var(--bg-primary);
            padding: 40px 24px 32px;
            border-bottom: 1px solid var(--border-subtle);
        }

        .page-hero h1 {
            font-family: 'Oswald', sans-serif;
            font-size: 36px;
            font-weight: 800;
            text-transform: uppercase;
            line-height: 1.2;
            margin-top: 12px;
        }

        .breadcrumbs {
            font-size: 13px;
            color: var(--text-muted);
        }

        .breadcrumbs a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: var(--transition);
        }

        .breadcrumbs a:hover { color: var(--pin-red); }

        .update-date {
            font-size: 13px;
            color: var(--text-muted);
            font-style: italic;
            margin-bottom: 24px;
        }

        .step {
            background: var(--bg-card);
            border-left: 3px solid var(--pin-red);
            padding: 12px 20px;
            margin: 12px 0;
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
        }

        @media (max-width: 768px) {
            .page-hero h1 { font-size: 26px; }
        }