/* Общие стили */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #ffffff;
            color: #1a1a2e;
            line-height: 1.6;
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Шапка */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }

        .logo {
            font-size: 28px;
            font-weight: 800;
            color: #4a00e0;
            letter-spacing: -1px;
        }

        .logo span {
            color: #1a1a2e;
        }

        .btn-primary {
            background: #4a00e0;
            color: white;
            border: none;
            padding: 12px 28px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary:hover {
            background: #3b00b0;
        }

        /* Герой (Первый экран) */
        .hero {
            display: flex;
            align-items: center;
            gap: 40px;
            padding: 50px 0;
            flex-wrap: wrap;
        }

        .hero-text {
            flex: 1;
            min-width: 280px;
        }

        .hero-text h1 {
            font-size: 42px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero-text h1 span {
            background: linear-gradient(135deg, #4a00e0, #8e2de2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-text p {
            font-size: 20px;
            color: #555;
            margin-bottom: 30px;
        }

        .hero-image {
            flex: 0 0 200px;
            text-align: center;
        }

        .hero-image img {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #4a00e0;
            box-shadow: 0 20px 40px rgba(74, 0, 224, 0.15);
        }

        .badge {
            display: inline-block;
            background: #f0f0ff;
            color: #4a00e0;
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        /* Секции */
        .section {
            padding: 50px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .section:last-child {
            border-bottom: none;
        }

        .section-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 20px;
            text-align: center;
        }

        .section-title span {
            background: linear-gradient(135deg, #4a00e0, #8e2de2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Карточки программы */
        .program-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }

        .program-card {
            background: #f8f9ff;
            padding: 25px;
            border-radius: 16px;
            border-left: 5px solid #4a00e0;
            transition: transform 0.2s;
        }

        .program-card:hover {
            transform: translateY(-5px);
        }

        .program-card h3 {
            font-size: 20px;
            margin-bottom: 10px;
        }

        .program-card p {
            color: #555;
            font-size: 15px;
        }

        .program-card .emojii {
            font-size: 28px;
            margin-bottom: 10px;
            display: block;
        }

        /* О преподавателе */
        .about-grid {
            display: flex;
            gap: 40px;
            align-items: center;
            flex-wrap: wrap;
        }

        .about-text {
            flex: 1;
        }

        .about-text ul {
            list-style: none;
            padding: 0;
        }

        .about-text li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
        }

        .about-text li::before {
            content: "✅ ";
        }

        /* Цены */
        .price-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .price-card {
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 16px;
            padding: 25px 20px;
            text-align: center;
            transition: all 0.3s;
        }

        .price-card:hover {
            border-color: #4a00e0;
            box-shadow: 0 10px 30px rgba(74, 0, 224, 0.08);
        }

        .price-card.popular {
            border-color: #4a00e0;
            background: #fafaff;
            position: relative;
        }

        .price-card.popular::after {
            content: "🔥 Рекомендуем";
            position: absolute;
            top: -12px;
            right: 20px;
            background: #4a00e0;
            color: white;
            padding: 2px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }

        .price-card .price {
            font-size: 32px;
            font-weight: 800;
            color: #1a1a2e;
            margin: 10px 0;
        }

        .price-card .price small {
            font-size: 14px;
            font-weight: 400;
            color: #888;
        }

        .price-card .label {
            font-size: 18px;
            font-weight: 600;
        }

        .price-card .desc {
            color: #777;
            font-size: 14px;
            margin: 10px 0 15px;
        }

        .price-card .old-price {
            text-decoration: line-through;
            color: #aaa;
            font-size: 14px;
        }

        .price-card .saving {
            color: #00a86b;
            font-weight: 600;
            font-size: 14px;
            margin-top: 5px;
        }

        /* Форма */
        .form-box {
            background: #f8f9ff;
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            max-width: 500px;
            margin: 0 auto;
        }

        .form-box input {
            width: 100%;
            padding: 14px 18px;
            margin: 10px 0;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-size: 16px;
        }

        .form-box input:focus {
            border-color: #4a00e0;
            outline: none;
        }

        .form-box .btn-primary {
            width: 100%;
            padding: 16px;
            font-size: 18px;
        }

        .form-box .small-text {
            font-size: 13px;
            color: #888;
            margin-top: 10px;
        }

        /* Подвал */
        .footer {
            text-align: center;
            padding: 30px 0;
            color: #aaa;
            font-size: 14px;
        }

        /* Адаптив */
        @media (max-width: 700px) {
            .hero {
                text-align: center;
                flex-direction: column-reverse;
            }
            .hero-text h1 {
                font-size: 28px;
            }
            .header {
                flex-direction: column;
                gap: 10px;
            }
            .price-grid {
                grid-template-columns: 1fr;
            }
            .form-box {
                padding: 20px;
            }
        }