@charset "utf-8";
/* CSS Document */

        :root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --secondary: #64748b;
            --accent: #10b981;
            --light: #f8fafc;
            --dark: #0f172a;
            --gray-100: #f1f5f9;
            --gray-200: #e2e8f0;
            --gray-300: #cbd5e1;
            --gray-400: #94a3b8;
            --gray-500: #64748b;
            --gray-800: #1e293b;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            color: var(--dark);
            line-height: 1.5;
            background-color: #ffffff;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        header {
            background-color: #ffffff;
            box-shadow: var(--shadow);
            padding: 0.5rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 100;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
			min-height: 60px;
        }

        .logo {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary);
            display: flex;
            align-items: center;
        }

        .logo-icon {
            margin-right: 0.5rem;
            color: var(--primary);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 2rem;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--secondary);
            font-weight: 500;
            transition: color 0.3s ease;
        }

        nav ul li a:hover {
            color: var(--primary);
        }

        .btn {
            display: inline-block;
            background-color: var(--primary);
            color: white;
            font-weight: 600;
            padding: 0.75rem 1.5rem;
            border-radius: 0.375rem;
            text-decoration: none;
            transition: background-color 0.3s ease, transform 0.2s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            text-align: center;
        }

        .btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-1px);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--gray-800);
            border: 1px solid var(--gray-300);
        }

        .btn-secondary:hover {
            background-color: var(--gray-100);
        }

        .btn-lg {
            padding: 1rem 2rem;
            font-size: 1.125rem;
        }

        /* Hero Section */
        .hero {
			padding-top: 8rem;
            padding: 10rem 0 6rem;
            background-color: #ffffff;
            background-image: 
                radial-gradient(circle at 80% 50%, rgba(37, 99, 235, 0.07) 0%, rgba(255, 255, 255, 0) 70%),
                radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
        }

        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 4rem;
        }

        .hero-text {
            flex: 1;
        }

        .hero-headline {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            color: var(--dark);
        }

        .hero-subheadline {
            font-size: 1.25rem;
            color: var(--gray-500);
            margin-bottom: 2rem;
            max-width: 40rem;
        }

        .cta-group {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
        }

        .btn-primary {
            width: auto;
            margin-right: 1rem;
        }

        .secondary-cta {
            color: var(--primary);
            font-weight: 500;
            text-decoration: none;
            display: flex;
            align-items: center;
            cursor: pointer;
        }

        .secondary-cta:hover {
            text-decoration: underline;
        }

        .secondary-cta i {
            margin-left: 0.5rem;
        }

        .hero-image {
            flex: 1;
            max-width: 500px;
        }

        .hero-image img {
            width: 100%;
            height: auto;
            box-shadow: var(--shadow-lg);
            border-radius: 0.5rem;
        }

        /* How It Works Section */
        .how-it-works {
            padding: 6rem 0;
            background-color: var(--light);
        }

        .section-title {
            text-align: center;
            font-size: 2.25rem;
            font-weight: 700;
            margin-bottom: 3rem;
            color: var(--dark);
        }

        .steps {
            display: flex;
            justify-content: space-between;
            gap: 2rem;
            margin-top: 2rem;
        }

        .step {
            flex: 1;
            text-align: center;
            padding: 2rem;
            background-color: white;
            border-radius: 0.5rem;
            box-shadow: var(--shadow);
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .step:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .step-number {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--primary);
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
        }

        .step-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .step-title {
            font-weight: 600;
            margin-bottom: 1rem;
            font-size: 1.25rem;
        }

        .step-description {
            color: var(--gray-500);
            font-size: 0.875rem;
        }

        /* Benefits Section */
        .benefits {
            padding: 6rem 0;
            background-color: white;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .benefit {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            padding: 2rem;
            background-color: var(--light);
            border-radius: 0.5rem;
            transition: transform 0.3s ease;
        }

        .benefit:hover {
            transform: translateY(-5px);
        }

        .benefit-icon {
            font-size: 2rem;
            color: var(--primary);
            background-color: rgba(37, 99, 235, 0.1);
            width: 4rem;
            height: 4rem;
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .benefit-content h3 {
            margin-bottom: 0.5rem;
            font-size: 1.25rem;
            font-weight: 600;
        }

        .benefit-content p {
            color: var(--gray-500);
            font-size: 0.875rem;
        }

        /* Sample Output Section */
        .sample-output {
            padding: 6rem 0;
            background-color: var(--light);
        }

        .sample-container {
            display: flex;
            align-items: center;
            gap: 4rem;
        }

        .sample-image {
            flex: 1;
            box-shadow: var(--shadow-lg);
            border-radius: 0.5rem;
            overflow: hidden;
            position: relative;
        }

        .sample-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .sample-image:hover img {
            transform: scale(1.02);
        }

        .sample-content {
            flex: 1;
        }

        .sample-content h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

        .sample-description {
            color: var(--gray-500);
            margin-bottom: 2rem;
        }

        .testimonial {
            background-color: white;
            padding: 2rem;
            border-radius: 0.5rem;
            margin-top: 2rem;
            position: relative;
            box-shadow: var(--shadow);
        }

        .testimonial::before {
            content: '"';
            position: absolute;
            top: 1rem;
            left: 1rem;
            font-size: 4rem;
            color: var(--gray-200);
            font-family: serif;
            line-height: 1;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 1rem;
            padding-left: 2rem;
        }

        .testimonial-author {
            font-weight: 600;
            text-align: right;
        }

        /* Pricing Section */
        .pricing {
            padding: 6rem 0;
            background-color: white;
        }

        .pricing-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .price-box {
            background-color: var(--light);
            padding: 3rem;
            border-radius: 0.75rem;
            box-shadow: var(--shadow-lg);
            margin-bottom: 3rem;
        }

        .price-amount {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 1rem;
        }

        .price-currency {
            font-size: 2rem;
            vertical-align: super;
        }

        .price-description {
            font-size: 1.25rem;
            color: var(--gray-500);
            margin-bottom: 2rem;
        }

        .price-features {
            margin: 2rem 0;
            padding: 0;
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .price-features li {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .price-features i {
            color: var(--accent);
        }

        /* FAQ Section */
        .faq {
            padding: 6rem 0;
            background-color: var(--light);
        }

        .accordion {
            max-width: 800px;
            margin: 0 auto;
        }

        .accordion-item {
            margin-bottom: 1rem;
            border-radius: 0.5rem;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .accordion-header {
            background-color: white;
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            transition: background-color 0.3s ease;
        }

        .accordion-header:hover {
            background-color: var(--gray-100);
        }

        .accordion-header i {
            transition: transform 0.3s ease;
        }

        .accordion-content {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            background-color: white;
            transition: max-height 0.5s ease, padding 0.5s ease;
        }

        .accordion-inner {
            padding: 0 1.5rem 1.5rem;
            color: var(--gray-500);
        }

        .accordion-item.active .accordion-header i {
            transform: rotate(180deg);
        }

        .accordion-item.active .accordion-content {
            max-height: 500px;
        }

        /* Final CTA Section */
        .final-cta {
            padding: 6rem 0;
            background-color: white;
            text-align: center;
        }

        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 3rem;
        }

        .trust-badge {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--gray-500);
            font-size: 0.875rem;
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 3rem 0;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-logo {
            font-weight: 700;
            font-size: 1.5rem;
            color: white;
        }

        .footer-links {
            display: flex;
            gap: 2rem;
        }

        .footer-links a {
            color: var(--gray-300);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: white;
        }

        .copyright {
            margin-top: 2rem;
            text-align: center;
            color: var(--gray-400);
            font-size: 0.875rem;
        }

        /* Cookie Consent Banner */
        .cookie-banner {
            position: fixed;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 1200px;
            background-color: white;
            padding: 1.5rem;
            border-radius: 0.5rem;
            box-shadow: var(--shadow-lg);
            display: flex;
            align-items: center;
            justify-content: space-between;
            z-index: 1000;
        }

        .cookie-text {
            flex: 1;
            margin-right: 2rem;
        }

        .cookie-buttons {
            display: flex;
            gap: 1rem;
        }

        /* Modal */
        .modal-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .modal-backdrop.active {
            opacity: 1;
            visibility: visible;
        }

        .modal {
            background-color: white;
            border-radius: 0.5rem;
            width: 90%;
            max-width: 900px;
            max-height: 90vh;
            overflow: auto;
            box-shadow: var(--shadow-lg);
            transform: translateY(20px);
            opacity: 0;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .modal-backdrop.active .modal {
            transform: translateY(0);
            opacity: 1;
        }

        .modal-header {
            padding: 1.5rem;
            border-bottom: 1px solid var(--gray-200);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-title {
            font-size: 1.5rem;
            font-weight: 600;
        }

        .modal-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        .modal-body {
            padding: 1.5rem;
        }

        .modal-footer {
            padding: 1.5rem;
            border-top: 1px solid var(--gray-200);
            text-align: right;
        }

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            font-size: 1.5rem;
            color: var(--dark);
            cursor: pointer;
        }

        /* Live Chat Widget */
        .chat-widget {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 99;
        }

        .chat-button {
            width: 3.5rem;
            height: 3.5rem;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: var(--shadow-lg);
            transition: transform 0.3s ease;
        }

        .chat-button:hover {
            transform: translateY(-3px);
        }

        .chat-button i {
            font-size: 1.5rem;
        }
		
		.mobile-menu {
			display: none; /* Hide by default on all devices */
		}

        /* Responsive Styles */
        @media (max-width: 1024px) {
            .hero-headline {
                font-size: 2.5rem;
            }

            .steps, .benefits-grid {
                gap: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .hero-content, .sample-container {
                flex-direction: column;
                gap: 2rem;
            }

            .hero-image {
                order: -1;
                max-width: 100%;
            }

            .steps {
                flex-direction: column;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
            }

            nav ul {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .mobile-menu {
			display: block; /* Show on mobile only */
			opacity: 0;
			visibility: hidden;	
			position: absolute;
			top: 100%;
			left: 0;
			width: 100%;
			background-color: white;
			padding: 1rem;
			box-shadow: var(--shadow);
			transform: translateY(-10px);
			opacity: 0 !important; 
			visibility: hidden !important;
			transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
			z-index: 200; /* Ensure it's above other content */
			}

            .mobile-menu.active {
				opacity: 1;
				visibility: visible;
			}

            .mobile-menu ul {
                list-style: none;
            }

            .mobile-menu ul li {
                margin-bottom: 1rem;
            }

            .mobile-menu ul li a {
                text-decoration: none;
                color: var(--dark);
                font-weight: 500;
                display: block;
                padding: 0.5rem 0;
            }

            .cookie-banner {
                flex-direction: column;
                align-items: flex-start;
            }

            .cookie-text {
                margin-right: 0;
                margin-bottom: 1rem;
            }

            .footer-content {
                flex-direction: column;
                gap: 2rem;
            }
        }

        @media (max-width: 480px) {
            .hero-headline {
                font-size: 2rem;
            }

            .section-title {
                font-size: 1.75rem;
            }

            .price-amount {
                font-size: 2.5rem;
            }

            .trust-badges {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }
        }