* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
body.nikolay-landing-page {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.5;
}

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Шапка */
        .header {
            background: white;
            padding: 20px 0;
            border-bottom: 1px solid #eee;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .logo {
            font-size: 22px;
            font-weight: bold;
        }

        .logo span {
            color: #2563eb;
        }

        .nav a {
            margin-left: 25px;
            text-decoration: none;
            color: #555;
        }

        .nav a:hover {
            color: #2563eb;
        }

        /* Плавный скролл и отступ для якорей */
        html {
            scroll-padding-top: 100px;
            scroll-behavior: smooth;
        }

        /* Кнопки */
        .btn-blue {
            display: inline-block;
            background-color: #2563eb;
            color: white;
            padding: 12px 28px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: bold;
            border: none;
            transition: all 0.2s;
        }

        .btn-blue:hover {
            background-color: #1d4ed8;
            transform: translateY(-2px);
        }

        .btn-border {
            display: inline-block;
            background: transparent;
            border: 1px solid #ccc;
            color: #333;
            padding: 11px 27px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.2s;
        }

        .btn-border:hover {
            border-color: #2563eb;
            color: #2563eb;
        }

        /* Герой */
        .hero {
            padding: 60px 0;
        }

        .hero-flex {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
            justify-content: space-between;
        }

        .hero-text {
            flex: 1;
        }

        .hero-text h1 {
            font-size: 44px;
            margin: 15px 0 20px;
        }

        .hero-text p {
            font-size: 18px;
            color: #555;
            margin-bottom: 30px;
        }

        .hero-photo {
            flex: 0.8;
            text-align: center;
        }

        .hero-photo img {
            width: 100%;
            max-width: 320px;
            border-radius: 30px;
            box-shadow: 0 20px 30px rgba(0,0,0,0.1);
        }

        .badge {
            background: #eef2ff;
            color: #2563eb;
            padding: 5px 12px;
            border-radius: 30px;
            font-size: 14px;
            display: inline-block;
        }

        /* Быстрые ссылки */
        .quick-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            background: #f8f9fa;
            border-radius: 50px;
            padding: 8px 15px;
            margin: 30px 0;
        }

        .quick-links a {
            padding: 10px 15px;
            text-decoration: none;
            color: #333;
            font-weight: bold;
            transition: color 0.2s;
        }

        .quick-links a:hover {
            color: #2563eb;
        }

        /* Карточки услуг */
        .section-title {
            font-size: 32px;
            margin: 50px 0 30px;
        }

        /* Карточки услуг - одинаковой высоты */
        .cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }

        .card {
            border: 1px solid #eee;
            border-radius: 25px;
            padding: 25px;
            background: white;
            transition: box-shadow 0.2s;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .card:hover {
            box-shadow: 0 15px 30px rgba(0,0,0,0.08);
        }

        .card h3 {
            font-size: 24px;
            margin: 10px 0;
        }

        .card p {
            color: #555;
            margin: 10px 0;
            flex-grow: 0;
        }

        .card-result {
            background: #f5f7fa;
            padding: 10px;
            border-radius: 15px;
            margin: 15px 0;
            font-size: 14px;
        }

        /* Кнопки и ссылки прижимаем к низу */
        .card .tg-link,
        .card > div:last-child {
            margin-top: auto;
        }

        .tg-link {
            display: inline-block;
            margin-top: 15px;
            color: #2563eb;
            text-decoration: none;
            font-weight: bold;
        }

        /* Две кнопки в карточке подкаста */
        .card-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: auto;
        }

        .card-buttons a {
            text-align: center;
            box-sizing: border-box;
            flex: 1;
            padding: 10px 20px;
            border-radius: 40px;
            text-decoration: none;
            display: inline-block;
            font-size: 14px;
            transition: all 0.2s;
        }

        .btn-guest {
            background: #2563eb;
            color: white;
        }

        .btn-guest:hover {
            background: #1d4ed8;
            transform: translateY(-2px);
        }

        .btn-site {
            background: transparent;
            color: #2563eb;
            border: 1px solid #2563eb;
        }

        .btn-site:hover {
            background: #eef2ff;
            transform: translateY(-2px);
        }

        /* Почему я - центрированный блок */
        .why-box {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            background: #f8fafc;
            border-radius: 35px;
            padding: 40px 25px;
            text-align: center;
            gap: 30px;
            width: 100%;
        }

        /* ===== СТИЛИ ДЛЯ FAQ (АККОРДЕОН) ===== */
        .faq-container {
            margin-top: 20px;
        }

        .faq-item {
            background: #ffffff;
            border: 1px solid #eef2f6;
            border-radius: 20px;
            margin-bottom: 16px;
            overflow: hidden;
            transition: all 0.2s;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 24px;
            font-weight: 700;
            font-size: 18px;
            cursor: pointer;
            background: #ffffff;
            gap: 20px;
        }

        .faq-question span:first-child {
            flex: 1;
            text-align: left;
        }

        .faq-question:hover {
            background: #f8fafc;
        }

        .faq-icon {
            font-size: 28px;
            font-weight: normal;
            color: #2563eb;
            transition: transform 0.3s ease;
            display: inline-block;
            flex-shrink: 0;
        }

        .faq-answer {
            display: none;
            padding: 0 24px 20px 24px;
            color: #4b5563;
            line-height: 1.6;
            border-top: 1px solid #eef2f6;
        }

        /* Активный (открытый) вопрос */
        .faq-item.active .faq-answer {
            display: block;
        }

        .faq-item.active .faq-icon {
            transform: rotate(90deg);
        }

        /* Финальная секция */
        .final {
            background: #0f172a;
            color: white;
            text-align: center;
            padding: 50px 25px;
            border-radius: 40px;
            margin: 60px 0;
        }

        .final .btn-blue {
            background: white;
            color: #0f172a;
            margin-top: 20px;
        }

        .final .btn-blue:hover {
            background: #e2e8f0;
        }

        .final-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin-top: 20px;
        }

        .final-buttons .btn-blue {
            margin-top: 0;
        }

        footer {
            text-align: center;
            padding: 30px;
            border-top: 1px solid #eee;
            color: #777;
        }

        footer a:hover {
            text-decoration: underline;
        }

        /* ============================================ */
        /* ========== ПОЛНЫЙ АДАПТИВ ========== */
        /* ============================================ */

        /* Планшеты и маленькие ноутбуки (до 1024px) */
        @media (max-width: 1024px) {
            .container {
                padding: 0 24px;
            }
            
            .hero-text h1 {
                font-size: 38px;
            }
            
            .hero-text p {
                font-size: 16px;
            }
            
            .section-title {
                font-size: 28px;
            }
        }

        /* Планшеты вертикальные (до 900px) */
        @media (max-width: 900px) {
            /* Герой — фото сверху, текст снизу */
            .hero-flex {
                flex-direction: column-reverse;
                text-align: center;
            }
            
            .hero-text h1 {
                font-size: 34px;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            /* Быстрые ссылки */
            .quick-links {
                justify-content: center;
                gap: 10px;
                border-radius: 30px;
            }
            
            .quick-links a {
                padding: 8px 12px;
                font-size: 14px;
            }
            
            /* Карточки услуг */
            .cards {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .card h3 {
                font-size: 20px;
            }
            
            .card p {
                font-size: 14px;
            }
            
            /* Почему я */
            .why-box {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                padding: 30px 20px;
            }
            
            /* FAQ */
            .faq-question {
                padding: 16px 20px;
                font-size: 16px;
            }
            
            .faq-icon {
                font-size: 24px;
            }
            
            .faq-answer {
                padding: 0 20px 16px 20px;
                font-size: 14px;
            }
        }

        /* Телефоны горизонтальные и маленькие планшеты (до 700px) */
        @media (max-width: 700px) {
            /* Шапка */
            .header-inner {
                flex-direction: column;
                text-align: center;
            }
            
            .nav {
                margin-top: 5px;
            }
            
            .nav a {
                margin: 0 12px;
                font-size: 14px;
            }
            
            html {
                scroll-padding-top: 120px;
            }
            
            /* Герой */
            .hero {
                padding: 40px 0;
            }
            
            .hero-text h1 {
                font-size: 28px;
            }
            
            .hero-text p {
                font-size: 15px;
            }
            
            .btn-blue, .btn-border {
                padding: 10px 20px;
                font-size: 14px;
            }
            
            /* Карточки услуг */
            .cards {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .card {
                padding: 20px;
            }
            
            .section-title {
                font-size: 26px;
                margin: 40px 0 20px;
            }
            
            /* Почему я */
            .why-box {
                grid-template-columns: 1fr;
                gap: 16px;
                padding: 25px 20px;
            }
            
            .why-box div h3 {
                font-size: 28px;
            }
            
            .why-box div p {
                font-size: 14px;
            }
            
            /* Финальная секция */
            .final {
                padding: 40px 20px;
                margin: 40px 0;
            }
            
            .final h2 {
                font-size: 24px;
            }
            
            .final p {
                font-size: 14px;
            }
            
            footer {
                padding: 20px;
                font-size: 12px;
            }
        }

        /* Маленькие телефоны (до 480px) */
        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }
            
            .hero-text h1 {
                font-size: 24px;
            }
            
            .hero-text p {
                font-size: 14px;
            }
            
            .btn-blue, .btn-border {
                padding: 8px 16px;
                font-size: 13px;
            }
            
            .badge {
                font-size: 12px;
            }
            
            .quick-links a {
                padding: 6px 10px;
                font-size: 12px;
            }
            
            .section-title {
                font-size: 24px;
            }
            
            .card h3 {
                font-size: 18px;
            }
            
            .card-result {
                font-size: 12px;
            }
            
            .card-buttons {
                flex-direction: column;
            }
            
            .card-buttons a {
                width: 100%;
                text-align: center;
            }
            
            .faq-question {
                padding: 14px 16px;
                font-size: 14px;
            }
            
            .faq-icon {
                font-size: 20px;
            }
            
            .final h2 {
                font-size: 20px;
            }
