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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: #0a0a0a;
            color: #ffffff;
            line-height: 1.6;
            min-height: 100vh;
            overflow-x: hidden;
        }

        /* ===== HERO ===== */
        .hero {
            position: relative;
            padding: 120px 20px 80px;
            text-align: center;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -40%;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 600px;
            background: radial-gradient(ellipse, rgba(139, 92, 246, 0.12) 0%, rgba(99, 102, 241, 0.05) 40%, transparent 70%);
            pointer-events: none;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(99, 102, 241, 0.08) 100%);
            border: 1px solid rgba(139, 92, 246, 0.3);
            color: #a78bfa;
            padding: 8px 20px;
            border-radius: 24px;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 20px;
            position: relative;
        }

        .hero-title {
            font-size: 48px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 16px;
            position: relative;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-title .gradient-text {
            background: linear-gradient(135deg, #ffffff 0%, #a78bfa 50%, #8b5cf6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 20px;
            color: #888;
            max-width: 600px;
            margin: 0 auto 20px;
            line-height: 1.6;
            position: relative;
        }

        .hero-subtitle-accent {
            font-size: 28px;
            color: #4ade80;
            margin: 0 auto 16px;
            font-weight: 600;
        }

        .hero-title-big {
            font-size: 60px;
            font-weight: 700;
        }

        /* Hero examples - Marquee */
        .hero-examples {
            max-width: 960px;
            margin: 0 auto 24px auto;
            padding: 0 20px;
            overflow: hidden;
            position: relative;
            mask-image: linear-gradient(to right, transparent, black 2%, black 98%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 2%, black 98%, transparent);
        }

        .hero-examples-track {
            display: flex;
            gap: 16px;
            animation: marquee 25s linear infinite;
            width: max-content;
        }

        .hero-examples-track:hover {
            animation-play-state: paused;
        }

        @keyframes marquee {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-50% - 8px));
            }
        }

        .hero-example-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(139, 92, 246, 0.08);
            border: 1px solid rgba(139, 92, 246, 0.2);
            color: #a78bfa;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
            color: #fff;
            padding: 16px 36px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            border: none;
            cursor: pointer;
        }

        .hero-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(139, 92, 246, 0.3);
        }

        .hero-cta svg {
            transition: transform 0.2s ease;
        }

        .hero-cta:hover svg {
            transform: translateX(3px);
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 48px;
            margin-top: 36px;
            position: relative;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 32px;
            font-weight: 700;
            color: #fff;
        }

        .stat-label {
            font-size: 14px;
            color: #666;
            margin-top: 4px;
        }

        /* ===== HOOK BANNER ===== */
        .hook-banner {
            max-width: 960px;
            margin: 0 auto;
            padding: 24px 20px;
            text-align: center;
        }

        .hook-banner p {
            font-size: 15px;
            color: #888;
            font-style: italic;
        }

        .hook-banner p strong {
            color: #a78bfa;
            font-style: normal;
        }

        .mobile-br { display: none; }
        @media (max-width: 768px) { .mobile-br { display: block; } }

        /* ===== SECTIONS COMMON ===== */
        .section {
            max-width: 960px;
            margin: 0 auto;
            padding: 80px 20px;
            text-align: center;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 600;
            color: #8b5cf6;
            letter-spacing: 2px;
            margin-bottom: 16px;
        }

        .section-heading {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .section-desc {
            font-size: 17px;
            color: #888;
            max-width: 600px;
            margin: 0 auto 48px;
            line-height: 1.6;
        }

        /* ===== VIBECODING EXPLAINER ===== */
        .explainer {
            max-width: 960px;
            margin: 0 auto;
            padding: 60px 20px;
            text-align: center;
        }

        .explainer-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 24px;
        }

        .explainer-flow {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-bottom: 28px;
            flex-wrap: wrap;
        }

        .explainer-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .explainer-step-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: rgba(139, 92, 246, 0.1);
            border: 1px solid rgba(139, 92, 246, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #a78bfa;
        }

        .explainer-step-label {
            font-size: 14px;
            font-weight: 600;
            color: #fff;
        }

        .explainer-step-desc {
            font-size: 12px;
            color: #888;
        }

        .explainer-arrow {
            color: #8b5cf6;
            flex-shrink: 0;
        }

        .explainer-text {
            font-size: 16px;
            color: #888;
            max-width: 520px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* ===== 3 STEPS ===== */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .step-card {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, #141414 100%);
            border: 1px solid rgba(139, 92, 246, 0.5);
            border-radius: 16px;
            padding: 32px 24px;
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, #8b5cf6, #6366f1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 800;
            color: #fff;
            margin: 0 auto 16px;
        }

        .step-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .step-card p {
            font-size: 14px;
            color: #888;
            line-height: 1.6;
        }

        /* ===== PROBLEM SECTION ===== */
        .problem-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .problem-card {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, #141414 100%);
            border: 1px solid rgba(139, 92, 246, 0.5);
            border-radius: 16px;
            padding: 28px;
            display: flex;
            align-items: flex-start;
            gap: 16px;
            text-align: left;
        }

        .problem-card .icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            background: rgba(139, 92, 246, 0.1);
            color: #a78bfa;
        }

        .problem-card h3 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 6px;
        }

        .problem-card p {
            font-size: 14px;
            color: #888;
            line-height: 1.6;
        }

        /* ===== SOLUTION (ARROW) ===== */
        .solution-arrow {
            text-align: center;
            padding: 32px 20px;
            max-width: 960px;
            margin: 0 auto;
        }

        .solution-arrow .arrow-down {
            color: #8b5cf6;
            margin-bottom: 12px;
        }

        .solution-arrow p {
            font-size: 18px;
            font-weight: 600;
            color: #a78bfa;
        }

        /* ===== FOR WHOM ===== */
        .whom-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .whom-card {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, #141414 100%);
            border: 1px solid rgba(139, 92, 246, 0.5);
            border-radius: 16px;
            padding: 28px;
            display: flex;
            align-items: flex-start;
            gap: 16px;
            text-align: left;
        }

        .whom-icon {
            font-size: 28px;
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(139, 92, 246, 0.1);
            border-radius: 12px;
            color: #a78bfa;
        }

        .whom-card h3 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 6px;
        }

        .whom-card p {
            font-size: 14px;
            color: #888;
            line-height: 1.6;
        }

        .whom-group-title {
            font-size: 14px;
            font-weight: 600;
            color: #666;
            letter-spacing: 1px;
            margin-bottom: 16px;
            margin-top: 8px;
        }

        /* ===== BEFORE/AFTER ===== */
        .before-after {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            max-width: 700px;
            margin: 0 auto;
        }

        .before-card, .after-card {
            background: #141414;
            border-radius: 16px;
            padding: 28px;
            text-align: left;
        }

        .before-card {
            border: 1px solid rgba(248, 113, 113, 0.2);
        }

        .after-card {
            border: 1px solid rgba(74, 222, 128, 0.2);
        }

        .before-card .ba-label, .after-card .ba-label {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }

        .before-card .ba-label {
            color: #f87171;
        }

        .after-card .ba-label {
            color: #4ade80;
        }

        .before-card ul, .after-card ul {
            list-style: none;
            padding: 0;
        }

        .before-card li, .after-card li {
            font-size: 14px;
            color: #888;
            margin-bottom: 8px;
            display: flex;
            align-items: flex-start;
            gap: 8px;
            line-height: 1.5;
        }

        .before-card li svg {
            color: #f87171;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .after-card li svg {
            color: #4ade80;
            flex-shrink: 0;
            margin-top: 2px;
        }

        /* ===== COURSES SECTION ===== */
        .courses-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            max-width: 680px;
            margin: 0 auto;
        }

        .course-card {
            background: #141414;
            border: 1px solid #222;
            border-radius: 16px;
            padding: 32px 24px;
            transition: all 0.3s ease;
            text-decoration: none;
            color: #fff;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .course-card:hover {
            border-color: #333;
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
        }

        .course-card .card-icon {
            font-size: 28px;
            margin-bottom: 16px;
        }

        .course-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .course-card p {
            font-size: 14px;
            color: #888;
            line-height: 1.6;
            flex: 1;
        }

        .course-card .lessons-count {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 16px;
            font-size: 13px;
            color: #666;
        }

        .course-card .lessons-count svg {
            color: #4ade80;
        }

        .course-card.featured {
            border-color: rgba(139, 92, 246, 0.3);
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.06) 0%, #141414 100%);
        }

        .course-card.featured:hover {
            border-color: rgba(139, 92, 246, 0.5);
        }

        /* ===== PROGRAM SECTION ===== */
        .program-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .program-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, #141414 100%);
            border: 1px solid rgba(139, 92, 246, 0.5);
            border-radius: 12px;
            padding: 24px;
            transition: border-color 0.2s ease;
            text-align: left;
        }

        .program-item:hover {
            border-color: #333;
        }

        .program-number {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.1));
            border: 1px solid rgba(139, 92, 246, 0.3);
            border-radius: 10px;
            font-size: 14px;
            font-weight: 700;
            color: #a78bfa;
            flex-shrink: 0;
        }

        .program-content h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .program-content p {
            font-size: 14px;
            color: #888;
        }

        /* ===== RESULTS ===== */
        .results-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .result-card {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, #141414 100%);
            border: 1px solid rgba(139, 92, 246, 0.5);
            border-radius: 16px;
            padding: 28px;
            text-align: center;
        }

        .result-card .result-icon {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(139, 92, 246, 0.1);
            border-radius: 12px;
            color: #a78bfa;
            margin: 0 auto 16px;
        }

        .result-card h3 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 6px;
        }

        .result-card p {
            font-size: 13px;
            color: #888;
            line-height: 1.6;
        }

        /* ===== TESTIMONIALS ===== */
        .testimonials-grid {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            padding-bottom: 8px;
        }

        .testimonials-grid::-webkit-scrollbar {
            height: 4px;
        }

        .testimonials-grid::-webkit-scrollbar-track {
            background: #1a1a1a;
            border-radius: 4px;
        }

        .testimonials-grid::-webkit-scrollbar-thumb {
            background: #333;
            border-radius: 4px;
        }

        .testimonial-card {
            background: #141414;
            border: 1px solid #222;
            border-radius: 16px;
            padding: 24px;
            text-align: left;
            min-width: 280px;
            max-width: 320px;
            flex-shrink: 0;
            scroll-snap-align: start;
        }

        .testimonial-text {
            font-size: 14px;
            color: #ccc;
            line-height: 1.7;
            margin-bottom: 16px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .testimonial-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: linear-gradient(135deg, #8b5cf6, #6366f1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
            flex-shrink: 0;
        }

        .testimonial-name {
            font-size: 14px;
            font-weight: 600;
        }

        .testimonial-role {
            font-size: 12px;
            color: #666;
        }

        /* ===== AUTHOR ===== */
        .author-block {
            display: flex;
            gap: 32px;
            align-items: center;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, #141414 100%);
            border: 1px solid rgba(139, 92, 246, 0.5);
            border-radius: 16px;
            padding: 40px;
            text-align: left;
        }

        .author-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            overflow: hidden;
        }

        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 10%;
        }

        .author-info h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .author-info p {
            font-size: 15px;
            color: #888;
            line-height: 1.7;
        }

        .author-meta {
            font-size: 13px;
            color: #a78bfa;
            margin-top: 12px;
        }

        /* ===== TRUST LOGOS ===== */
        .trust-logos {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 32px;
            flex-wrap: wrap;
            margin-top: 32px;
        }

        .trust-logo {
            font-size: 14px;
            font-weight: 600;
            color: #444;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .trust-logo svg {
            color: #555;
        }

        /* ===== PRICING ===== */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            align-items: start;
        }

        .pricing-full {
            margin-top: 16px;
        }

        .pricing-full .pricing-card {
            max-width: 480px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            grid-row: auto;
            padding: 40px 48px;
            transform: scale(1.03);
            box-shadow: 0 0 40px rgba(139, 92, 246, 0.1);
        }

        .pricing-full .pricing-features {
            width: 100%;
            text-align: center;
        }

        .pricing-full .pricing-features li {
            justify-content: center;
            text-align: center;
        }

        .pricing-full .pricing-btn {
            width: 100%;
        }

        .pricing-old-price {
            font-size: 18px;
            color: #555;
            text-decoration: line-through;
            margin-bottom: 4px;
        }

        .pricing-subtitle {
            font-size: 14px;
            color: #888;
        }

        .pricing-card {
            background: #141414;
            border: 1px solid #222;
            border-radius: 16px;
            padding: 32px 24px;
            display: grid;
            grid-template-rows: subgrid;
            grid-row: span 7;
            row-gap: 8px;
            position: relative;
            text-align: center;
        }

        .pricing-card.recommended {
            border-color: rgba(139, 92, 246, 0.5);
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, #141414 100%);
        }

        .pricing-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #8b5cf6, #6366f1);
            color: #fff;
            padding: 4px 16px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 600;
            white-space: nowrap;
        }

        .pricing-name {
            font-size: 20px;
            font-weight: 700;
        }

        .pricing-price {
            font-size: 36px;
            font-weight: 800;
        }

        .pricing-price span {
            font-size: 16px;
            font-weight: 500;
            color: #888;
        }

        .pricing-per-unit {
            font-size: 12px;
            color: #4ade80;
            font-weight: 500;
        }

        .pricing-note {
            font-size: 13px;
            color: #666;
        }

        .pricing-savings {
            color: #4ade80;
            font-weight: 600;
        }

        .pricing-divider {
            width: 100%;
            height: 1px;
            background: #222;
            align-self: center;
        }

        .pricing-features {
            list-style: none;
            padding: 0;
            margin: 0;
            align-self: start;
        }

        .pricing-features li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 14px;
            color: #ccc;
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .pricing-features li .check {
            color: #4ade80;
            flex-shrink: 0;
            margin-top: 1px;
        }

        .pricing-features li .cross {
            color: #555;
            flex-shrink: 0;
            margin-top: 1px;
        }

        .pricing-features li.disabled {
            color: #555;
        }

        .pricing-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            padding: 14px;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s ease;
            border: none;
            cursor: pointer;
            align-self: end;
        }

        .pricing-btn.primary {
            background: linear-gradient(135deg, #8b5cf6, #6366f1);
            color: #fff;
        }

        .pricing-btn.primary:hover {
            box-shadow: 0 6px 24px rgba(139, 92, 246, 0.3);
            transform: translateY(-1px);
        }

        .pricing-btn.secondary {
            background: #1a1a1a;
            border: 1px solid #333;
            color: #fff;
        }

        .pricing-btn.secondary:hover {
            background: #222;
            border-color: #444;
        }

        .pricing-guarantee {
            text-align: center;
            margin-top: 24px;
            font-size: 13px;
            color: #666;
        }

        .pricing-anchor {
            text-align: center;
            margin-top: 20px;
            font-size: 15px;
            color: #888;
        }

        .pricing-anchor strong {
            color: #a78bfa;
            font-weight: 600;
        }

        .pricing-anchor em {
            color: #c4b5fd;
            font-style: normal;
            font-weight: 500;
        }

        /* Guarantee block */
        .guarantee-block {
            display: flex;
            align-items: center;
            gap: 16px;
            background: rgba(74, 222, 128, 0.05);
            border: 1px solid rgba(74, 222, 128, 0.15);
            border-radius: 12px;
            padding: 20px 28px;
            max-width: 520px;
            margin: 24px auto 0;
            text-align: left;
        }

        .guarantee-block svg {
            color: #4ade80;
            flex-shrink: 0;
        }

        .guarantee-block p {
            font-size: 14px;
            color: #888;
        }

        .guarantee-block strong {
            color: #4ade80;
        }

        /* Pricing comparison table */
        .comparison-toggle {
            text-align: center;
            margin-top: 32px;
        }

        .comparison-toggle button {
            background: none;
            border: 1px solid #333;
            color: #888;
            padding: 10px 24px;
            border-radius: 8px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s ease;
            font-family: inherit;
        }

        .comparison-toggle button:hover {
            color: #fff;
            border-color: #555;
        }

        .comparison-table {
            display: none;
            margin-top: 32px;
            overflow-x: auto;
        }

        .comparison-table.visible {
            display: block;
        }

        .comparison-table table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
        }

        .comparison-table th,
        .comparison-table td {
            padding: 12px 16px;
            text-align: center;
            border-bottom: 1px solid #1a1a1a;
        }

        .comparison-table th {
            color: #888;
            font-weight: 600;
            font-size: 13px;
        }

        .comparison-table th:first-child,
        .comparison-table td:first-child {
            text-align: left;
            color: #ccc;
        }

        .comparison-table td {
            color: #666;
        }

        .comparison-table .yes {
            color: #4ade80;
        }

        .comparison-table .no {
            color: #444;
        }

        .comparison-table tr:hover td {
            background: rgba(255,255,255,0.02);
        }

        @media (max-width: 1024px) {
            .pricing-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 10px;
            }

            .pricing-card {
                padding: 24px 16px;
            }

            .pricing-name {
                font-size: 16px;
            }

            .pricing-price {
                font-size: 28px;
            }

            .pricing-features li {
                font-size: 13px;
            }
        }

        @media (max-width: 768px) {
            .pricing-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 8px;
            }

            .pricing-card {
                padding: 20px 12px;
            }

            .pricing-name {
                font-size: 14px;
            }

            .pricing-subtitle {
                font-size: 12px;
            }

            .pricing-price {
                font-size: 24px;
            }

            .pricing-note {
                font-size: 11px;
            }

            .pricing-features li {
                font-size: 12px;
                gap: 6px;
            }

            .pricing-btn {
                font-size: 13px;
                padding: 10px 16px;
            }

            .pricing-full .pricing-features {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin-left: auto;
                margin-right: auto;
            }

            .pricing-card {
                padding: 28px 20px;
                display: flex;
                flex-direction: column;
                grid-row: auto;
            }

            .pricing-name {
                font-size: 18px;
            }

            .pricing-price {
                font-size: 32px;
            }

            .pricing-features li {
                font-size: 14px;
            }

            .pricing-card.recommended {
                order: -1;
            }
        }

        /* ===== QUOTE ===== */
        .quote-section {
            max-width: 700px;
            margin: 0 auto;
            padding: 60px 20px;
            text-align: center;
        }

        .quote-text {
            font-size: 22px;
            font-weight: 500;
            line-height: 1.6;
            color: #ccc;
            font-style: italic;
            margin-bottom: 16px;
        }

        .quote-author {
            font-size: 14px;
            color: #666;
        }

        /* ===== CTA FINAL ===== */
        .cta-section {
            max-width: 960px;
            margin: 0 auto;
            padding: 80px 20px;
            text-align: center;
        }

        .cta-block {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(99, 102, 241, 0.05) 100%);
            border: 1px solid rgba(139, 92, 246, 0.2);
            border-radius: 24px;
            padding: 64px 40px;
            position: relative;
            overflow: hidden;
        }

        .cta-block::before {
            content: '';
            position: absolute;
            top: -50%;
            left: 50%;
            transform: translateX(-50%);
            width: 600px;
            height: 400px;
            background: radial-gradient(ellipse, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
            pointer-events: none;
        }

        .cta-block h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 16px;
            position: relative;
        }

        .cta-block p {
            font-size: 17px;
            color: #888;
            max-width: 480px;
            margin: 0 auto 32px;
            position: relative;
        }

        .cta-block .hero-cta {
            position: relative;
        }

        /* ===== FOOTER ===== */
        .landing-footer {
            border-top: 1px solid #1a1a1a;
            max-width: 960px;
            margin: 0 auto;
            padding: 32px 20px;
        }

        .footer-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 24px;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            color: #555;
            transition: color 0.2s ease;
            padding: 12px;
        }

        .social-link:hover {
            color: #888;
        }

        .copyright {
            font-size: 13px;
            color: #444;
        }

        /* ===== DIVIDER ===== */
        .section-divider {
            width: 60px;
            height: 2px;
            background: linear-gradient(to right, #8b5cf6, #6366f1);
            border-radius: 2px;
            margin: 0 auto;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .hero {
                padding: 120px 16px 80px;
            }

            .hero-title {
                font-size: 32px;
            }

            .hero-subtitle {
                font-size: 16px;
            }

            .hero-subtitle-accent {
                font-size: 26px;
            }

            .hero-title-big {
                font-size: 48px;
            }

            .hero-stats {
                gap: 24px;
                flex-wrap: wrap;
            }

            .stat-number {
                font-size: 24px;
            }

            .section {
                padding: 48px 16px;
            }

            .section-heading {
                font-size: 26px;
            }

            .problem-grid,
            .whom-grid {
                grid-template-columns: 1fr;
            }

            .courses-grid {
                grid-template-columns: 1fr;
            }

            .results-grid {
                grid-template-columns: 1fr;
            }

            .steps-grid {
                grid-template-columns: 1fr;
            }

            .testimonial-card {
                min-width: 260px;
                max-width: 280px;
            }

            .author-block {
                flex-direction: column;
                text-align: center;
                padding: 28px;
            }

            .author-avatar {
                width: 120px;
                height: 120px;
                margin: 0 auto 20px;
            }

            .author-avatar img {
                display: block;
            }

            .cta-block {
                padding: 40px 24px;
            }

            .cta-block h2 {
                font-size: 26px;
            }

            .quote-text {
                font-size: 18px;
            }

            .footer-content {
                flex-direction: row;
                gap: 12px;
            }

            .explainer-flow {
                flex-direction: column;
                gap: 12px;
            }

            .explainer-arrow {
                transform: rotate(90deg);
            }

            .pricing-full .pricing-card {
                transform: none;
                padding: 20px 16px;
                gap: 0;
            }

            .pricing-full .pricing-card .pricing-name {
                margin-bottom: 2px;
            }

            .pricing-full .pricing-card .pricing-subtitle {
                margin-bottom: 4px;
            }

            .pricing-full .pricing-card .pricing-price {
                font-size: 36px !important;
                margin-bottom: 0;
            }

            .pricing-full .pricing-card .pricing-note {
                margin-bottom: 4px;
            }

            .pricing-full .pricing-card .pricing-divider {
                margin: 6px 0;
            }

            .pricing-full .pricing-card .pricing-features li {
                margin-bottom: 4px;
                font-size: 13px;
                white-space: nowrap;
            }

            .pricing-full .pricing-card .pricing-btn {
                margin-top: 8px;
            }

            #pricing {
                padding-top: 16px;
                padding-bottom: 16px;
            }

            #pricing .section-desc {
                margin-bottom: 16px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 28px;
            }

            .hero-stats {
                gap: 12px;
            }

            .stat-number {
                font-size: 20px;
            }

            .stat-label {
                font-size: 12px;
            }

            .explainer-title {
                font-size: 22px;
            }
        }

        /* ===== HEADER / NAV ===== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(10, 10, 10, 0.9);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(139, 92, 246, 0.1);
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 16px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }

        .header-logo {
            font-size: 20px;
            font-weight: 700;
            color: #a78bfa;
            text-decoration: none;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .header-logo img {
            width: 32px;
            height: 32px;
            border-radius: 50%;
        }

        .header-nav {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
        }

        .header-nav a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
            transition: color 0.2s;
            white-space: nowrap;
        }

        .header-nav a:hover {
            color: #fff;
        }

        .header-cta {
            background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
            color: #fff !important;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 600 !important;
            text-decoration: none;
            flex-shrink: 0;
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
        }

        .header-cta:hover {
            opacity: 0.9;
        }

        @media (max-width: 1024px) {
            .header-nav {
                gap: 12px;
            }
            .header-nav a {
                font-size: 12px;
            }
        }

        @media (max-width: 768px) {
            .header-nav {
                display: none;
            }
            .header-cta {
                position: static;
                transform: none;
                margin-left: auto;
                display: flex;
                align-items: center;
            }
        }
    .miniapps-orbit {
        position: relative;
        width: 600px;
        height: 600px;
        margin: 40px auto;
        overflow: visible;
    }
    .orbit-lines {
        position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none;
    }
    .orbit-line {
        stroke: url(#orbit-gradient); stroke-width: 1.5; fill: none; opacity: 0.4;
        transition: opacity 0.3s, stroke-width 0.3s;
    }
    .orbit-line.active { opacity: 0.9; stroke-width: 2.5; }
    .orbit-center {
        position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
        text-align: center; z-index: 2; display: flex; flex-direction: column; align-items: center;
    }
    .orbit-logo { filter: drop-shadow(0 0 12px rgba(217,119,87,0.6)); margin-bottom: 6px; }
    .orbit-label { display: block; font-size: 22px; font-weight: 700; color: #fff; }
    .orbit-sub { display: block; font-size: 11px; color: #555; margin-top: 4px; max-width: 140px; }
    .orbit-dot {
        position: absolute;
        top: calc(50% + sin(var(--angle)) * var(--r) * -1);
        left: calc(50% + cos(var(--angle)) * var(--r));
        transform: translate(-50%, -50%);
        display: flex; flex-direction: column; align-items: center; gap: 6px;
        cursor: pointer; transition: all 0.25s; z-index: 3;
    }
    .orbit-dot::before {
        content: ''; position: absolute; width: 6px; height: 6px; border-radius: 50%;
        background: #8b5cf6; box-shadow: 0 0 8px rgba(139,92,246,0.6); top: -2px;
    }
    .orbit-dot svg { color: #8b5cf6; filter: drop-shadow(0 0 6px rgba(139,92,246,0.4)); transition: all 0.25s; }
    .orbit-dot span { font-size: 11px; color: #666; white-space: nowrap; transition: color 0.2s; }
    .orbit-dot:hover svg { color: #a78bfa; transform: scale(1.3); filter: drop-shadow(0 0 12px rgba(139,92,246,0.6)); }
    .orbit-dot:hover span { color: #fff; }
    .orbit-popup {
        display: none; position: absolute; z-index: 10;
        background: #141414; border: 1px solid rgba(139,92,246,0.3); border-radius: 12px;
        padding: 16px 20px; min-width: 320px; white-space: nowrap; pointer-events: none;
        box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    }
    .orbit-popup.show { display: block; }
    .orbit-popup-title { font-size: 13px; font-weight: 700; color: #a78bfa; margin-bottom: 10px; }
    .orbit-popup-item {
        display: flex; align-items: center; gap: 8px; padding: 5px 0;
        font-size: 13px; color: #ccc;
    }
    .orbit-popup-item::before {
        content: ''; width: 6px; height: 6px; border-radius: 50%;
        background: #8b5cf6; flex-shrink: 0;
    }

    /* Mini-apps list — Mobile */
    .miniapps-list { display: none; margin-top: 32px; }
    .miniapps-list-item {
        border: 1px solid #222; border-radius: 12px; margin-bottom: 8px; overflow: hidden;
    }
    .miniapps-list-toggle {
        width: 100%; display: flex; align-items: center; gap: 12px;
        padding: 14px 16px; background: transparent; border: none;
        cursor: pointer; color: #fff; font-family: inherit;
    }
    .miniapps-list-toggle svg { color: #8b5cf6; flex-shrink: 0; }
    .miniapps-list-toggle .ml-name { flex: 1; text-align: left; font-size: 14px; font-weight: 600; }
    .miniapps-list-toggle .ml-arrow { color: #555; font-size: 12px; transition: transform 0.2s; }
    .miniapps-list-item.open .ml-arrow { transform: rotate(180deg); color: #8b5cf6; }
    .miniapps-list-item.open .miniapps-list-toggle { background: rgba(139,92,246,0.08); }
    .miniapps-list-body { display: none; padding: 4px 16px 14px; }
    .miniapps-list-item.open .miniapps-list-body { display: block; }
    .miniapps-list-app { padding: 6px 0; font-size: 13px; color: #999; display: flex; align-items: center; gap: 8px; }
    .miniapps-list-app::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: #8b5cf6; flex-shrink: 0; }

    @media (max-width: 640px) {
        .miniapps-orbit { display: none; }
        .miniapps-list { display: block; }
    }
    </style>

    <script>
    (function() {
