<style>
        :root {
            --primary-color: #7B4BFF; --secondary-color: #2CD4D9; --dark-blue: #0A0735;
            --text-color: #5E6282; --heading-color: #181E4B; --light-bg: #F7F8FC;
            --card-shadow: 0px 18px 52.85px rgba(215, 228, 249, 0.5);
        }
        html { scroll-behavior: smooth; }
        body { font-family: 'Vazirmatn', sans-serif; overflow-x: hidden; background-color: #fff; color: var(--text-color); }
        h1, h2, h3, h4, h5, h6 { color: var(--heading-color); font-weight: 700; }
        p { font-size: 16px; line-height: 30px; }
        .section { padding: 100px 0; }
        .section-heading { text-align: center; margin-bottom: 60px; }
        .section-heading h6 { color: var(--primary-color); font-size: 18px; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 10px; }
        .section-heading h2 { font-size: 42px; font-weight: 800; line-height: 1.3; }
        .main-button a {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: #fff !important; font-size: 15px; font-weight: 600;
            display: inline-flex; align-items: center; justify-content: center;
            gap: 8px; height: 52px; line-height: 52px; padding: 0 35px;
            border-radius: 26px; transition: all .4s ease;
            box-shadow: 0px 10px 20px rgba(123, 75, 255, 0.3);
            border: none; text-decoration: none;
        }
        .main-button a:hover { transform: translateY(-5px); box-shadow: 0px 15px 25px rgba(123, 75, 255, 0.4); }
        .hero-button a { animation: pulse 2s infinite; }
        @keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } }
        .main-banner { background-color: #F7F8FC; padding: 150px 0 100px 0; position: relative; overflow: hidden; }
        .aurora-bg { position: absolute; top: -150px; left: -150px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(123, 75, 255, 0.1), transparent 70%); filter: blur(100px); z-index: 0; }
        .main-banner .header-text { position: relative; z-index: 2; }
        .main-banner .header-text h1 { font-size: 56px; font-weight: 800; line-height: 1.3; margin-bottom: 20px; }
        .main-banner .header-text h1 span { background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .main-banner .header-text p { max-width: 500px; margin: 0 0 30px 0; }
        .main-banner .banner-image { position: relative; }
        .main-banner .banner-image img { max-width: 100%; border-radius: 30px; box-shadow: var(--card-shadow); }
        .floating-shape { position: absolute; z-index: 1; animation: float 6s ease-in-out infinite; }
        .shape1 { width: 20px; height: 20px; background: var(--secondary-color); border-radius: 50%; top: 20%; left: 10%; }
        .shape2 { width: 15px; height: 15px; border: 3px solid var(--primary-color); top: 80%; left: 5%; }
        @keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-20px); } 100% { transform: translateY(0px); } }
        .how-it-works .step-card { text-align: center; padding: 20px; transition: all .3s ease; }
        .how-it-works .step-card .icon { width: 90px; height: 90px; border-radius: 30px; margin: 0 auto 25px auto; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(123, 75, 255, 0.1) 0%, rgba(44, 212, 217, 0.1) 100%); transition: all .3s ease; }
        .how-it-works .step-card:hover .icon { transform: scale(1.1) rotate(10deg); box-shadow: 0 10px 20px rgba(123, 75, 255, 0.2); }
        .how-it-works .step-card h4 { margin-bottom: 10px; font-size: 22px; }
        .testimonials { background-color: var(--light-bg); }
        .testimonial-card { background-color: #fff; padding: 30px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); margin: 15px; border: 1px solid #eee; }
        .testimonial-card .author { display: flex; align-items: center; margin-top: 20px; }
        .testimonial-card .author img { width: 50px; height: 50px; border-radius: 50%; margin-left: 15px; }
        .testimonial-card .author h5 { font-size: 16px; margin: 0; }
        .testimonial-card .author span { font-size: 14px; color: var(--text-color); }
        .pricing-card { background: #fff; border: 1px solid #EAEAEA; border-radius: 20px; padding: 40px; text-align: center; transition: all .3s ease; height: 100%; display: flex; flex-direction: column; position: relative; overflow: hidden; }
        .pricing-card.popular { transform: translateY(-10px); box-shadow: var(--card-shadow); border: 2px solid var(--primary-color); }
        .pricing-card .popular-badge { position: absolute; top: -1px; right: -1px; background: var(--primary-color); color: #fff; padding: 6px 15px; font-size: 12px; font-weight: bold; border-bottom-left-radius: 20px; }
        .pricing-card .price { font-size: 48px; font-weight: 800; color: var(--dark-blue); }
        .pricing-card .price span { font-size: 16px; font-weight: 500; }
        .pricing-card ul { list-style: none; padding: 0; margin: 30px 0; flex-grow: 1; }
        .pricing-card ul li { margin-bottom: 15px; }
        .faq .accordion-item { border: 1px solid #e9e9e9; border-radius: 15px !important; margin-bottom: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.03); }
        .faq .accordion-button { font-weight: 600; border-radius: 15px !important; }
        .faq .accordion-button:not(.collapsed) { color: #fff; background: var(--primary-color); }
        .faq .accordion-button:focus { box-shadow: none; }
        .about-me-section { background-color: var(--light-bg); }
        .about-me-box { display: flex; align-items: center; gap: 50px; }
        .about-me-image { position: relative; flex-shrink: 0; }
        .about-me-image .img-frame { width: 250px; height: 250px; border-radius: 30px; background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); transform: rotate(-10deg); }
        .about-me-image img { width: 250px; height: 250px; object-fit: cover; position: absolute; top: 0; left: 0; border-radius: 30px; transform: rotate(5deg); border: 5px solid #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
        .about-me-content h3 { margin-bottom: 15px; font-size: 28px; }
        .about-me-socials { margin-top: 20px; }
        .about-me-socials a { color: var(--heading-color); font-size: 24px; margin-left: 20px; transition: color .3s; }
        .about-me-socials a:hover { color: var(--primary-color); }
        @media(max-width: 768px) { 
            .about-me-box { flex-direction: column; text-align: center; } 
            .about-me-image { margin-bottom: 30px; } 
            .about-me-socials a { margin: 0 10px; } 
        }
        
        .navbar-toggler { border: none; background: transparent; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; padding: 0; }
        .navbar-toggler:focus { outline: none; box-shadow: none; }
        .hamburger-icon { width: 25px; height: 20px; position: relative; display: flex; flex-direction: column; justify-content: space-between; }
        .hamburger-icon span { display: block; width: 100%; height: 3px; background-color: var(--heading-color); border-radius: 3px; transition: all 0.3s ease; }
        .hamburger-icon.active span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
        .hamburger-icon.active span:nth-child(2) { opacity: 0; }
        .hamburger-icon.active span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }
        .header-area { transition: all .4s ease; width: 100%; z-index: 100; top: 0; left: 0; }
        .header-area.header-sticky { position: fixed; background-color: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
        
        footer { background-color: var(--dark-blue); color: rgba(255,255,255,0.7); padding: 60px 0; text-align: center; }
        footer .logo-footer { font-size: 32px; font-weight: 800; color: #fff; margin-bottom: 15px; }
        footer .footer-socials a { color: #fff; font-size: 20px; margin: 0 10px; transition: color .3s; }
        footer .footer-socials a:hover { color: var(--secondary-color); }
        footer .copyright { margin-top: 20px; font-size: 14px; }
            /* Sample Output Section */
        .sample-section {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(123, 75, 255, 0.03), rgba(44, 212, 217, 0.03));
            border-radius: 40px;
            margin: 80px 0;
        }
        
        .sample-image-container {
            position: relative;
            padding: 20px;
        }
        
        .sample-image-frame {
            position: relative;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(123, 75, 255, 0.2);
            border: 3px solid white;
            transform: perspective(1000px) rotateY(-5deg);
            transition: transform 0.5s;
        }
        
        .sample-image-frame:hover {
            transform: perspective(1000px) rotateY(0deg);
        }
        
        .sample-output-img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 20px;
        }
        
        .floating-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 10px 20px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            animation: floatBadge 3s ease-in-out infinite;
        }
        
        @keyframes floatBadge {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .sample-features h3 {
            font-size: 32px;
            font-weight: 800;
            color: var(--heading-color);
            margin-bottom: 40px;
        }
        
        .features-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .features-list li {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 30px;
            padding: 20px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        
        .features-list li:hover {
            transform: translateX(10px);
            box-shadow: 0 15px 40px rgba(123, 75, 255, 0.1);
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, rgba(123, 75, 255, 0.1), rgba(44, 212, 217, 0.1));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--primary-color);
            flex-shrink: 0;
        }
        
        .feature-text h4 {
            font-size: 20px;
            font-weight: 700;
            color: var(--heading-color);
            margin-bottom: 8px;
        }
        
        .feature-text p {
            font-size: 16px;
            color: var(--text-color);
            line-height: 1.6;
            margin: 0;
        }
        
        /* Team Section */
        .team-section {
            padding: 100px 0;
        }
        
        .team-member {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .member-image {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            margin: 0 auto 25px;
            overflow: hidden;
            border: 5px solid white;
            box-shadow: 0 20px 40px rgba(123, 75, 255, 0.2);
        }
        
        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .member-info h3 {
            font-size: 24px;
            font-weight: 800;
            color: var(--heading-color);
            margin-bottom: 10px;
        }
        
        .member-info .position {
            color: var(--primary-color);
            font-weight: 600;
            font-size: 18px;
            margin-bottom: 15px;
            display: block;
        }
        
        .member-info p {
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 20px;
            max-width: 300px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .member-social {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        .member-social a {
            width: 45px;
            height: 45px;
            background: var(--light-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--heading-color);
            font-size: 18px;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .member-social a:hover {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            transform: translateY(-3px);
        }
    </style>