/* ===== ОБЩИЕ СТИЛИ  для индекс н и индекс в1===== */
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        .section {
            padding: 60px 0;
        }
        .section-dark {
            background-color: #e7e7de;
        }
        .section-light {
            background-color: #f8f9fa;
        }
        .highlight {
            color: #0d6efd;
            font-weight: 700;
        }
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        .section-subtitle {
            font-size: 1.3rem;
            color: #555;
            margin-bottom: 30px;
        }

        /* ===== КНОПКИ ===== */
        .btn-telegram {
            background-color: #0088cc;
            border-color: #0088cc;
            color: white;
            font-size: 1.1rem;
            padding: 14px 35px;
            border-radius: 50px;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            border: none;
        }
        .btn-telegram:hover {
            background-color: #006699;
            border-color: #006699;
            color: white;
            transform: scale(1.02);
        }
        .btn-telegram i {
            margin-right: 8px;
        }
        .btn-primary-custom {
            background-color: #0d6efd;
            border: none;
            color: white;
            font-size: 1.15rem;
            padding: 16px 40px;
            border-radius: 50px;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        .btn-primary-custom:hover {
            background-color: #0b5ed7;
            color: white;
            transform: scale(1.02);
        }
        .btn-outline-primary-custom {
            background-color: transparent;
            border: 2px solid #0d6efd;
            color: #0d6efd;
            font-size: 1.0rem;
            padding: 12px 30px;
            border-radius: 50px;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        .btn-outline-primary-custom:hover {
            background-color: #0d6efd;
            color: white;
        }

        /* ===== БЛОК 1: ГЛАВНАЯ ===== */
        .block-hero .book-image {
            max-width: 250px;
        }

        /* ===== БЛОК 2: ДЛЯ КОГО ===== */
        .persona-item {
            background: white;
            border-radius: 12px;
            padding: 18px 22px;
            margin: 14px 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            transition: all 0.2s;
        }
        .persona-item:hover {
            box-shadow: 0 4px 16px rgba(0,0,0,0.08);
            transform: translateY(-2px);
        }
        .persona-item h5 {
            margin-bottom: 4px;
        }
        .persona-item p {
            margin-bottom: 0;
            color: #444;
        }

        /* ===== БЛОК 3: ЧТО ВНУТРИ ===== */
        .tool-item {
            background: white;
            border-radius: 12px;
            padding: 16px 20px;
            margin: 12px 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            transition: all 0.2s;
        }
        .tool-item:hover {
            box-shadow: 0 4px 16px rgba(0,0,0,0.08);
        }
        .tool-item h5 {
            margin-bottom: 2px;
        }
        .tool-item p {
            margin-bottom: 0;
            color: #444;
        }

        /* ===== БЛОК 4: ПРОБЛЕМА ===== */
        .reason-item {
            background: white;
            border-radius: 12px;
            padding: 16px 20px;
            margin: 12px 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            border-left: 4px solid #dc3545;
            transition: all 0.2s;
        }
        .reason-item:hover {
            box-shadow: 0 4px 16px rgba(0,0,0,0.08);
        }
        .reason-item h5 {
            margin-bottom: 2px;
        }
        .reason-item p {
            margin-bottom: 0;
            color: #444;
        }

        /* ===== БЛОК 5: РЕШЕНИЕ ===== */
        .solution-item {
            background: white;
            border-radius: 12px;
            padding: 16px 20px;
            margin: 12px 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            border-left: 4px solid #0d6efd;
            transition: all 0.2s;
        }
        .solution-item:hover {
            box-shadow: 0 4px 16px rgba(0,0,0,0.08);
        }
        .solution-item h5 {
            margin-bottom: 2px;
        }
        .solution-item p {
            margin-bottom: 0;
            color: #444;
        }
        .solution-item .badge-result {
            font-size: 0.8rem;
            background: #d4edda;
            color: #155724;
            padding: 4px 12px;
            border-radius: 20px;
            margin-top: 4px;
            display: inline-block;
        }

        /* ===== БЛОК 6: ОБ АВТОРЕ ===== */
        .author-photo {
            max-width: 200px;
            border-radius: 50%;
            border: 4px solid #0d6efd;
        }

        /* ===== БЛОК 7: ОТЗЫВЫ ===== */
        .review-card {
            background: white;
            border-radius: 16px;
            padding: 20px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            height: 100%;
            transition: all 0.3s;
        }
        .review-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.10);
        }
        .review-card .avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #0d6efd;
        }
        .review-card .review-name {
            font-weight: 700;
            font-size: 1rem;
        }
        .review-card .review-role {
            font-size: 0.8rem;
            color: #6c757d;
        }
        .review-card .review-text {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #333;
        }
        .review-card .review-stars {
            color: #ffc107;
            letter-spacing: 2px;
        }

        /* ===== БЛОК 8: ПРОДАЖА ===== */
        .price-block .old-price {
            text-decoration: line-through;
            color: #999;
            font-size: 1.4rem;
        }
        .price-block .new-price {
            font-size: 2.8rem;
            font-weight: 700;
            color: #0d6efd;
        }
        .price-block .discount-badge {
            background: #dc3545;
            color: white;
            padding: 6px 18px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1.1rem;
        }
        .price-block .price-old-block {
            background: #f8f9fa;
            padding: 10px 20px;
            border-radius: 12px;
        }
        .price-block .price-new-block {
            background: #d4edda;
            padding: 10px 20px;
            border-radius: 12px;
        }
        .guarantee-img {
            max-width: 500px;
        }

        /* ===== ТАЙМЕР ===== */
        .timer-block {
            background: white;
            border-radius: 12px;
            padding: 15px 30px;
            display: inline-block;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        .timer-block #countdown {
            font-size: 2rem;
            font-weight: 700;
            color: #dc3545;
            letter-spacing: 4px;
        }

        /* ===== НАВИГАЦИЯ ===== */
        .nav-scroll {
            position: sticky;
            top: 56px;
            background: white;
            z-index: 999;
            padding: 8px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        .nav-scroll a {
            color: #333;
            text-decoration: none;
            padding: 6px 12px;
            font-size: 0.85rem;
            transition: all 0.2s;
            border-radius: 20px;
        }
        .nav-scroll a:hover {
            background: #0d6efd;
            color: white;
        }
        .nav-scroll a.active {
            background: #0d6efd;
            color: white;
        }

        /* ===== АДАПТАЦИЯ ===== */
        @media (max-width: 768px) {
            .section {
                padding: 40px 0;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .section-subtitle {
                font-size: 1.1rem;
            }
            .price-block .new-price {
                font-size: 2rem;
            }
            .btn-primary-custom {
                font-size: 1rem;
                padding: 14px 25px;
                width: 100%;
            }
            .btn-telegram {
                font-size: 1rem;
                padding: 12px 25px;
                width: 100%;
            }
            .nav-scroll {
                display: none;
            }
        }