    <style>
        :root {
            --primary-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            --text-dark: #1f2937;
            --text-gray: #4b5563;
            --bg-body: #f3f4f6; /* رنگ پس زمینه صفحه */
        }

     .sectionCta {
            
          
            display: flex;
            justify-content: center;
            align-items: center;
            
            padding: 20px;
            
        }

        /* استایل بنر اصلی */
        .cta-banner {
            position: relative;
            background-color: #ffffff;
            border-radius: 24px;
            box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1), 0 10px 20px -5px rgba(0, 0, 0, 0.04);
            max-width: 900px;
            width: 100%;
            padding: 2rem 1rem;
            text-align: center;
            overflow: hidden; /* برای نگه داشتن اشکال تزئینی داخل بنر */
            z-index: 1;
        }

        /* اشکال هندسی تزئینی پس زمینه (جایگزین تصویر) */
        .bg-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            z-index: -1;
            opacity: 0.6;
        }

        .shape-1 {
            width: 250px;
            height: 250px;
            background: #e0e7ff; /* آبی خیلی روشن */
            top: -50px;
            left: -50px;
        }

        .shape-2 {
            width: 200px;
            height: 200px;
            background: #f3e8ff; /* بنفش خیلی روشن */
            bottom: -40px;
            right: -40px;
        }

        /* برچسب */
        .badge {
            display: inline-flex;
            align-items: center;
            background-color: #eef2ff;
            color: #4338ca;
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            border: 1px solid #c7d2fe;
        }

        /* تیتر */
        .banner-title {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--text-dark);
            line-height: 1.3;
            margin-bottom: 2rem;
        }
        
        .banner-title span {
            color: #6366f1; /* رنگ بخشی از تیتر برای تاکید */
        }

        /* لیست ویژگی‌ها */
        .features-grid {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem 3rem; /* فاصله عمودی و افقی */
            margin-bottom: 2.5rem;
            list-style: none;
        }

        .features-grid li {
            display: flex;
            align-items: center;
            font-size: 1rem;
            color: #4b5563;
            font-weight: 500;
        }

        .check-icon {
            width: 22px;
            height: 22px;
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            color: white;
            border-radius: 6px; /* مربع گرد */
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 10px;
            font-size: 12px;
            box-shadow: 0 4px 6px -1px rgba(99, 102, 241, 0.4);
        }

        /* دکمه CTA */
        .btn-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            color: white;
            text-decoration: none;
            padding: 18px 40px;
            border-radius: 12px;
            font-size: 1.15rem;
            font-weight: 800;
            box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.5);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        /* افکت موج نور روی دکمه */
        .btn-cta::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(255,255,255,0.2), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .btn-cta:hover::after {
            opacity: 1;
        }

        .btn-cta:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 25px -5px rgba(99, 102, 241, 0.4);
        }

        /* فلش دکمه */
        .arrow-icon {
            margin-right: 12px;
            transition: transform 0.3s ease;
        }

        .btn-cta:hover .arrow-icon {
            transform: translateX(-5px);
        }

        /* انیمیشن ضربان (برای جلب توجه ناخودآگاه) */
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4); }
            70% { box-shadow: 0 0 0 15px rgba(99, 102, 241, 0); }
            100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0); }
        }

        .pulse-effect {
            animation: pulse 2s infinite;
        }

        /* موبایل */
        @media (max-width: 600px) {
            .banner-title {
                font-size: 1.6rem;
            }
            .features-grid {
                flex-direction: column;
                gap: 10px;
                align-items: center;
            }
            .btn-cta {
                width: 100%;
                padding: 16px;
            }
        }
    </style>