   /* ===== BASE STYLES ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .containeig {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.8;
            color: #1a1a2e;
        }

        /* ===== HERO SECTION ===== */
        .hero-modern {
            text-align: center;
            padding: 60px 20px 40px;
            background: linear-gradient(135deg, #f8f9ff 0%, #eef0ff 100%);
            border-radius: 20px;
            margin-bottom: 40px;
            border: 1px solid rgba(108, 99, 255, 0.1);
        }

        .hero-modern h1 {
            font-size: 44px;
            font-weight: 800;
            line-height: 1.2;
            color: #1a1a2e;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }

        .hero-modern .subtitle {
            font-size: 20px;
            color: #4a4a6a;
            max-width: 700px;
            margin: 0 auto 30px;
            line-height: 1.6;
        }

       

        .cta-button {
            display: inline-block;
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 17px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .cta-button.primary {
            background: #6c63ff;
            color: white;
            box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
        }

        .cta-button.primary:hover {
            background: #5a52d9;
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(108, 99, 255, 0.4);
        }

        .cta-button.secondary {
            background: transparent;
            color: #6c63ff;
            border: 2px solid #6c63ff;
        }

        .cta-button.secondary:hover {
            background: #6c63ff;
            color: white;
            transform: translateY(-2px);
        }

        .cta-sub {
            font-size: 15px;
            color: #6a6a8a;
            margin-top: 15px;
        }

        .cta-sub strong {
            color: #6c63ff;
            font-weight: 700;
        }

        /* ===== HEADINGS ===== */
        .containeig h2 {
            font-size: 32px;
            font-weight: 700;
            color: #1a1a2e;
            margin-top: 50px;
            margin-bottom: 20px;
            line-height: 1.3;
            letter-spacing: -0.3px;
        }

        .containeig h3 {
            font-size: 21px;
            font-weight: 600;
            color: #1a1a2e;
            margin-top: 35px;
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .containeig h4 {
            font-size: 17px;
            font-weight: 600;
            color: #1a1a2e;
            margin: 0 0 8px 0;
        }

        /* ===== PARAGRAPHS ===== */
        .containeig p {
            font-size: 16.8px;
            color: #2a2a4a;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        /* ===== BOXES ===== */
        .success-box {
            background: #f0fdf4;
            border-left: 4px solid #22c55e;
            padding: 20px 25px;
            border-radius: 8px;
            margin: 30px 0;
        }

        .warning-box {
            background: #fefce8;
            border-left: 4px solid #f59e0b;
            padding: 20px 25px;
            border-radius: 8px;
            margin: 30px 0;
        }

        /* ===== LISTS ===== */
        .containeig ul {
            list-style: none;
            padding: 0;
            margin: 25px 0;
        }

        .containeig ul li {
            display: flex;
            gap: 16px;
            padding: 18px 20px;
            background: #f8f9ff;
            border-radius: 10px;
            margin-bottom: 12px;
            border: 1px solid rgba(108, 99, 255, 0.06);
        }

        .containeig ul li span {
            font-size: 22px;
            flex-shrink: 0;
            min-width: 30px;
            color: #6c63ff;
        }

        .containeig ul li div {
            flex: 1;
        }

        .containeig ul li strong {
            color: #1a1a2e;
            font-weight: 700;
        }

        .containeig ul li p {
            margin: 4px 0 0 0;
            font-size: 16px;
            color: #4a4a6a;
        }

        /* ===== STEP LIST ===== */
        .step-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin: 30px 0 20px;
        }

        .step-item {
            background: white;
            border: 1px solid #e8e8f0;
            border-radius: 12px;
            padding: 25px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .step-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(108, 99, 255, 0.08);
        }

        .step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: #6c63ff;
            color: white;
            font-weight: 800;
            font-size: 17px;
            border-radius: 50%;
            margin-bottom: 15px;
        }

        .step-item h4 {
            font-size: 17px;
            font-weight: 700;
            margin: 0 0 10px 0;
            color: #1a1a2e;
        }

        .step-item p {
            font-size: 15.6px;
            color: #4a4a6a;
            margin: 0;
        }

        /* ===== FEATURE GRID ===== */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .feature-card {
            background: white;
            border: 1px solid #e8e8f0;
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(108, 99, 255, 0.08);
        }

        .feature-card .icon {
            font-size: 32px;
            display: block;
            margin-bottom: 12px;
        }

        .feature-card h4 {
            font-size: 16.8px;
            font-weight: 700;
            margin: 0 0 8px 0;
            color: #1a1a2e;
        }

        .feature-card p {
            font-size: 15.2px;
            color: #4a4a6a;
            margin: 0;
        }

        /* ===== FAQ ===== */
        .faq-item {
            border-bottom: 1px solid #e8e8f0;
            padding: 20px 0;
        }

        .faq-item:last-child {
            border-bottom: none;
        }

        .faq-question {
            font-size: 17px;
            font-weight: 600;
            color: #1a1a2e;
            cursor: pointer;
            margin: 0;
            padding: 10px 0;
            user-select: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-question::after {
            content: "▾";
            font-size: 19px;
            color: #6c63ff;
            transition: transform 0.3s ease;
        }

        .faq-question[aria-expanded="true"]::after {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 10px 0 5px 0;
            color: #4a4a6a;
            line-height: 1.7;
        }

        .faq-answer p {
            margin: 0;
            font-size: 16px;
        }

        /* ===== COMPARISON TABLE ===== */
        .comparison-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 25px 0;
            background: #f8f9ff;
            border-radius: 16px;
            padding: 30px;
        }

        .comparison-card {
            background: white;
            padding: 25px;
            border-radius: 12px;
            border: 2px solid #e8e8f0;
        }

        .comparison-card.free {
            border-color: #6c63ff;
        }

        .comparison-card.paid {
            border-color: #f97316;
        }

        .comparison-card h4 {
            font-size: 19px;
            font-weight: 700;
            margin-top: 0;
            margin-bottom: 15px;
        }

        .comparison-card.free h4 {
            color: #6c63ff;
        }

        .comparison-card.paid h4 {
            color: #f97316;
        }

        .comparison-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .comparison-card ul li {
            padding: 10px 0;
            border-bottom: 1px solid #f0f0f8;
            font-size: 15.6px;
            color: #2a2a4a;
            display: flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            border-radius: 0;
            margin-bottom: 0;
        }

        .comparison-card ul li:last-child {
            border-bottom: none;
        }

        .comparison-card ul li::before {
            content: "✓";
            color: #22c55e;
            font-weight: 700;
            font-size: 17px;
        }

        /* ===== FINAL CTA ===== */
        .final-cta {
            background: linear-gradient(135deg, #6c63ff 0%, #4a42b8 100%);
            color: white;
            padding: 50px 40px;
            border-radius: 16px;
            text-align: center;
            margin: 50px 0 30px;
        }

        .final-cta h2 {
            color: white;
            font-size: 35px;
            margin-top: 0;
            margin-bottom: 15px;
        }

        .final-cta p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 18.4px;
            max-width: 600px;
            margin: 0 auto 25px;
        }

        .final-cta .cta-button.primary {
            background: white;
            color: #6c63ff;
        }

        .final-cta .cta-button.primary:hover {
            background: #f0f0ff;
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
        }

        .final-cta .cta-button.secondary {
            border-color: white;
            color: white;
        }

        .final-cta .cta-button.secondary:hover {
            background: rgba(255, 255, 255, 0.15);
        }

        .final-cta .cta-sub {
            color: rgba(255, 255, 255, 0.8);
        }

        .final-cta .cta-sub strong {
            color: #ffd700;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .hero-modern h1 {
                font-size: 28.8px;
            }

            .hero-modern .subtitle {
                font-size: 16.8px;
            }

            .containeig h2 {
                font-size: 25.6px;
            }

            .containeig h3 {
                font-size: 19.2px;
            }

            .comparison-grid {
                grid-template-columns: 1fr;
                padding: 20px;
            }

            .button-group {
                flex-direction: column;
                align-items: center;
            }

            .cta-button {
                width: 100%;
                max-width: 320px;
                text-align: center;
            }

            .final-cta {
                padding: 30px 20px;
            }

            .final-cta h2 {
                font-size: 25.6px;
            }

            .step-list {
                grid-template-columns: 1fr;
            }

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

        @media (max-width: 480px) {
            .feature-grid {
                grid-template-columns: 1fr;
            }

            .containeig ul li {
                flex-direction: column;
                gap: 8px;
            }
        }