
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #0F172A;
            background: linear-gradient(135deg, #fbf9fd 0%, #f5f0fb 50%, #ede1fb 100%);
            font-weight: 400;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        .header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0px 8px 32px rgba(142, 45, 226, 0.15);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(142, 45, 226, 0.1);
        }

        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 20px;
        }

        .logo {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 30px;
            font-weight: 700;
            background: linear-gradient(135deg, #8E2DE2, #4A00E0, #6A0DAD);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            letter-spacing: -0.5px;
        }

        .nav {
            display: flex;
            list-style: none;
            gap: 36px;
        }

        .nav a {
            text-decoration: none;
            color: #334155;
            font-weight: 500;
            font-size: 15px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav a:hover {
            color: #8E2DE2;
        }

        .nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -6px;
            left: 0;
            background: linear-gradient(135deg, #8E2DE2, #4A00E0);
            transition: width 0.3s ease;
        }

        .nav a:hover::after {
            width: 100%;
        }

        .cta-button {
            background: linear-gradient(135deg, #8E2DE2, #4A00E0);
            color: #FFFFFF;
            padding: 12px 28px;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0px 8px 25px rgba(142, 45, 226, 0.3);
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #4A00E0, #4A00E0);
            transition: left 0.3s ease;
            z-index: -1;
        }

        .cta-button:hover::before {
            left: 0;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0px 12px 35px rgba(142, 45, 226, 0.4);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #fbf9fd 0%, #f5f0fb 30%, #ede1fb 70%, #5EEAD4 100%);
            padding: 180px 0 120px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(142, 45, 226, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(20, 184, 166, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 20%;
            left: 10%;
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, rgba(142, 45, 226, 0.1), rgba(6, 182, 212, 0.1));
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 72px;
            font-weight: 700;
            background: linear-gradient(135deg, #8E2DE2, #4A00E0, #14B8A6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 32px;
            letter-spacing: -2px;
            line-height: 1.1;
        }

        .hero p {
            font-size: 20px;
            color: #475569;
            margin-bottom: 56px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 400;
            line-height: 1.8;
        }

        .hero-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 80px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-feature {
            text-align: center;
            padding: 24px;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 16px;
            border: 1px solid rgba(142, 45, 226, 0.1);
            transition: all 0.3s ease;
        }

        .hero-feature:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.9);
        }

        .hero-feature-icon {
            font-size: 36px;
            background: linear-gradient(135deg, #8E2DE2, #4A00E0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 16px;
        }

        .hero-feature h3 {
            font-size: 16px;
            font-weight: 600;
            color: #1E293B;
            margin-bottom: 8px;
        }

        .hero-feature p {
            font-size: 13px;
            color: #64748B;
            margin: 0;
        }

        /* Section Styles */
        .section {
            padding: 120px 0;
        }

        .section h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 48px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 24px;
            letter-spacing: -1px;
            background: linear-gradient(135deg, #8E2DE2, #4A00E0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            font-size: 18px;
            color: #64748B;
            text-align: center;
            margin-bottom: 80px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 400;
            line-height: 1.7;
        }

        /* About Preview */
        .about-preview {
            background: linear-gradient(135deg, #FFFFFF 0%, #fbf9fd 100%);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-text h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 32px;
            font-weight: 600;
            color: #1E293B;
            margin-bottom: 32px;
            letter-spacing: -0.5px;
        }

        .about-text p {
            font-size: 16px;
            margin-bottom: 24px;
            color: #475569;
            font-weight: 400;
            line-height: 1.8;
        }

        .about-features {
            display: grid;
            gap: 28px;
        }

        .about-feature {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 24px;
            background: rgba(142, 45, 226, 0.03);
            border-radius: 16px;
            border: 1px solid rgba(142, 45, 226, 0.1);
            transition: all 0.3s ease;
        }

        .about-feature:hover {
            background: rgba(142, 45, 226, 0.06);
            transform: translateX(8px);
        }

        .about-feature-icon {
            font-size: 24px;
            background: linear-gradient(135deg, #8E2DE2, #4A00E0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            width: 36px;
            text-align: center;
        }

        .about-feature-text h4 {
            font-weight: 600;
            color: #1E293B;
            margin-bottom: 6px;
            font-size: 16px;
        }

        .about-feature-text p {
            font-size: 14px;
            color: #64748B;
            margin: 0;
            line-height: 1.6;
        }

        /* Why Choose Us */
        .why-choose-us {
            background: linear-gradient(135deg, #f5f0fb 0%, #ede1fb 100%);
        }

        .features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 36px;
        }

        .feature {
            background: rgba(255, 255, 255, 0.9);
            padding: 44px 36px;
            border-radius: 20px;
            box-shadow: 0px 16px 50px rgba(142, 45, 226, 0.1);
            border: 1px solid rgba(142, 45, 226, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .feature::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #8E2DE2, #4A00E0);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .feature:hover::before {
            transform: scaleX(1);
        }

        .feature:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0px 24px 60px rgba(142, 45, 226, 0.15);
        }

        .feature-icon {
            font-size: 56px;
            background: linear-gradient(135deg, #8E2DE2, #4A00E0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 28px;
            display: block;
        }

        .feature h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 22px;
            font-weight: 600;
            color: #1E293B;
            margin-bottom: 18px;
            letter-spacing: -0.3px;
        }

        .feature p {
            color: #475569;
            font-size: 15px;
            line-height: 1.7;
            font-weight: 400;
        }

        /* Services */
        .services {
            background: linear-gradient(135deg, #FFFFFF 0%, #fbf9fd 100%);
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.9);
            padding: 36px 28px;
            border-radius: 16px;
            box-shadow: 0px 10px 35px rgba(142, 45, 226, 0.08);
            border: 1px solid rgba(142, 45, 226, 0.1);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(135deg, #8E2DE2, #4A00E0);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0px 20px 50px rgba(142, 45, 226, 0.12);
        }

        .service-icon {
            font-size: 48px;
            background: linear-gradient(135deg, #8E2DE2, #4A00E0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 24px;
        }

        .service-card h3 {
            font-size: 18px;
            font-weight: 600;
            color: #1E293B;
            margin-bottom: 14px;
            font-family: 'Space Grotesk', sans-serif;
        }

        .service-card p {
            font-size: 14px;
            color: #64748B;
            line-height: 1.7;
            font-weight: 400;
        }

        /* Testimonials */
        .testimonials {
            background: linear-gradient(135deg, #f5f0fb 0%, #ede1fb 100%);
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 36px;
        }

        .testimonial {
            background: rgba(255, 255, 255, 0.9);
            padding: 40px 36px;
            border-radius: 20px;
            box-shadow: 0px 16px 50px rgba(142, 45, 226, 0.1);
            border: 1px solid rgba(142, 45, 226, 0.1);
            position: relative;
        }

        .testimonial::before {
            content: '"';
            position: absolute;
            top: -12px;
            left: 36px;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 72px;
            font-weight: 700;
            background: linear-gradient(135deg, #8E2DE2, #4A00E0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 28px;
            font-size: 16px;
            color: #475569;
            margin-top: 24px;
            line-height: 1.8;
            font-weight: 400;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .author-avatar {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: linear-gradient(135deg, #8E2DE2, #4A00E0);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #FFFFFF;
            font-weight: 600;
            font-size: 18px;
        }

        .author-info h4 {
            font-weight: 600;
            color: #1E293B;
            margin-bottom: 4px;
        }

        .author-info p {
            font-size: 14px;
            color: #64748B;
            font-weight: 400;
        }

        /* FAQ */
        .faq {
            background: linear-gradient(135deg, #FFFFFF 0%, #fbf9fd 100%);
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(142, 45, 226, 0.15);
            border-radius: 16px;
            margin-bottom: 20px;
            overflow: hidden;
            box-shadow: 0px 6px 25px rgba(142, 45, 226, 0.05);
        }

        .faq-question {
            padding: 28px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(142, 45, 226, 0.03);
        }

        .faq-question h3 {
            font-size: 18px;
            font-weight: 600;
            color: #1E293B;
            font-family: 'Space Grotesk', sans-serif;
        }

        .faq-icon {
            background: linear-gradient(135deg, #8E2DE2, #4A00E0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.3s ease;
        }

        .faq-answer {
            padding: 0 28px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-answer.active {
            padding: 0 28px 28px 28px;
            max-height: 200px;
        }

        .faq-icon.active {
            transform: rotate(180deg);
        }

        .faq-answer p {
            color: #475569;
            line-height: 1.8;
            font-weight: 400;
        }

        /* Contact Form */
        .contact {
            background: linear-gradient(135deg, #f5f0fb 0%, #ede1fb 100%);
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.9);
            padding: 48px;
            border-radius: 20px;
            box-shadow: 0px 20px 60px rgba(142, 45, 226, 0.12);
            border: 1px solid rgba(142, 45, 226, 0.1);
        }

        .form-group {
            margin-bottom: 28px;
        }

        .form-group label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            color: #334155;
            margin-bottom: 10px;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 16px;
            border: 2px solid #E2E8F0;
            border-radius: 12px;
            font-size: 16px;
            background: #FFFFFF;
            color: #0F172A;
            transition: all 0.3s ease;
            font-weight: 400;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #8E2DE2;
            box-shadow: 0 0 0 4px rgba(142, 45, 226, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            background: linear-gradient(135deg, #8E2DE2, #4A00E0);
            color: #FFFFFF;
            padding: 16px 32px;
            border: none;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            width: 100%;
            box-shadow: 0px 8px 25px rgba(142, 45, 226, 0.3);
            position: relative;
            overflow: hidden;
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #4A00E0, #4A00E0);
            transition: left 0.3s ease;
            z-index: -1;
        }

        .submit-btn:hover::before {
            left: 0;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0px 12px 35px rgba(142, 45, 226, 0.4);
        }

        .contact-info {
            padding: 32px;
        }

        .contact-info h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 30px;
            font-weight: 600;
            color: #1E293B;
            margin-bottom: 36px;
            background: linear-gradient(135deg, #8E2DE2, #4A00E0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 36px;
            padding: 24px;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 16px;
            border: 1px solid rgba(142, 45, 226, 0.1);
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            background: rgba(255, 255, 255, 0.9);
            transform: translateX(8px);
        }

        .contact-item i {
            font-size: 24px;
            background: linear-gradient(135deg, #8E2DE2, #4A00E0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            width: 28px;
            text-align: center;
        }

        .contact-item h4 {
            font-weight: 600;
            color: #1E293B;
            margin-bottom: 4px;
            font-size: 16px;
        }

        .contact-item p {
            color: #64748B;
            font-weight: 400;
            line-height: 1.6;
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
            color: #E2E8F0;
            padding: 100px 0 40px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 56px;
            margin-bottom: 56px;
        }

        .footer-section h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 28px;
            background: linear-gradient(135deg, #22D3EE, #4A00E0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 14px;
        }

        .footer-section ul li a {
            color: #CBD5E1;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 400;
            position: relative;
        }

        .footer-section ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: -2px;
            left: 0;
            background: linear-gradient(135deg, #22D3EE, #4A00E0);
            transition: width 0.3s ease;
        }

        .footer-section ul li a:hover::after {
            width: 100%;
        }

        .footer-section ul li a:hover {
            color: #22D3EE;
        }

        .footer-bottom {
            border-top: 1px solid #334155;
            padding-top: 36px;
            text-align: center;
            color: #94A3B8;
            font-weight: 400;
        }

        .footer-bottom a {
            color: #22D3EE;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-bottom a:hover {
            color: #4A00E0;
        }

        /* Popup Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            backdrop-filter: blur(8px);
        }

        .modal-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: linear-gradient(135deg, #FFFFFF 0%, #fbf9fd 100%);
            padding: 48px;
            border-radius: 20px;
            max-width: 600px;
            max-height: 85vh;
            overflow-y: auto;
            box-shadow: 0px 28px 70px rgba(142, 45, 226, 0.2);
            border: 1px solid rgba(142, 45, 226, 0.1);
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 36px;
        }

        .modal-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 26px;
            font-weight: 600;
            background: linear-gradient(135deg, #8E2DE2, #4A00E0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .close-modal {
            background: none;
            border: none;
            font-size: 26px;
            color: #94A3B8;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .close-modal:hover {
            color: #8E2DE2;
        }

        .modal-content h3 {
            background: linear-gradient(135deg, #8E2DE2, #4A00E0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 18px;
            font-family: 'Space Grotesk', sans-serif;
        }

        .modal-content p {
            color: #475569;
            margin-bottom: 18px;
            line-height: 1.8;
            font-weight: 400;
        }

        /* Success Message */
        .success-message {
            display: none;
            position: fixed;
            top: 30px;
            right: 30px;
            background: linear-gradient(135deg, #10B981, #059669);
            color: #FFFFFF;
            padding: 18px 24px;
            border-radius: 12px;
            box-shadow: 0px 10px 35px rgba(16, 185, 129, 0.4);
            z-index: 3000;
            font-weight: 500;
            font-size: 14px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav {
                display: none;
            }

            .hero h1 {
                font-size: 48px;
            }

            .hero-features {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 56px;
            }

            .features,
            .service-grid,
            .testimonial-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }

            .modal-content {
                margin: 20px;
                padding: 36px;
            }
        }

        /* Reduced Motion */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
            
            .hero::after {
                animation: none;
            }
        }
    