        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #1a1a1a;
            background: #fafafa;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .header {
            background: #fff;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e3a8a;
            text-decoration: none;
            background: linear-gradient(135deg, #ec4899, #f97316);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .logo-image {
            width: 250px;
            transition: transform 0.2s;
        }

        .logo-image:hover {
            transform: scale(1.05);
        }
        

        .nav {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav a {
            color: #4b5563;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s;
        }

        .nav a:hover {
            color: #1e3a8a;
        }

        .cta-button {
            background: linear-gradient(135deg, #ec4899, #f97316);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.2s, box-shadow 0.2s;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .cta-button:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
        }

        .cta-subtext {
            margin-top: 1rem;
            opacity: 0.8;
            font-size: 0.9rem;
            text-align: center;
            margin-bottom: 0;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #fef7ff 0%, #fff7ed 100%);
            padding: 8rem 0 6rem;
            text-align: center;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            color: #1e3a8a;
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e3a8a 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

        .hero .subtitle {
            font-size: 1.3rem;
            color: #6b7280;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 4rem;
        }

        .secondary-button {
            background: white;
            color: #1e3a8a;
            padding: 0.75rem 1.5rem;
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.2s;
        }

        .secondary-button:hover {
            border-color: #1e3a8a;
            transform: translateY(-1px);
        }

        .hero-image {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .hero-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Features Section */
        .features {
            padding: 6rem 0;
            background: white;
        }

        .features h2 {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: #1e3a8a;
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e3a8a 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 3rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .feature-card {
            text-align: center;
            padding: 2rem;
            background: #fafafa;
            border-radius: 12px;
            transition: transform 0.2s;
        }

        .feature-card:hover {
            transform: translateY(-4px);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .feature-icon svg {
            width: 48px;
            height: 48px;
            stroke: url(#gradient);
            stroke-width: 2;
        }

        .feature-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #1e3a8a;
            margin-bottom: 1rem;
        }

        .feature-card p {
            color: #6b7280;
            line-height: 1.6;
        }

        /* Problem Section */
        .problem {
            padding: 6rem 0;
            background: #fef2f2;
        }

        .problem-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .problem h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #dc2626;
            background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #dc2626 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 2rem;
        }

        .problem p {
            font-size: 1.2rem;
            color: #6b7280;
            margin-bottom: 2rem;
        }

        .problem-list {
            text-align: left;
            max-width: 600px;
            margin: 3rem auto;
        }

        .problem-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
            padding: 2rem;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(220, 38, 38, 0.08);
            border-left: 4px solid transparent;
            border-image: linear-gradient(135deg, #dc2626, #ef4444) 1;
        }

        .problem-item .icon {
            color: #dc2626;
            margin-right: 1.5rem;
            font-size: 2rem;
            flex-shrink: 0;
            margin-top: 0.2rem;
            background: linear-gradient(135deg, #fef2f2, #fee2e2);
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Pricing Section */
        .pricing {
            padding: 6rem 0;
            background: #fafafa;
        }

        .pricing h2 {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: #1e3a8a;
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e3a8a 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
        }

        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .pricing-card {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            border: 2px solid transparent;
            transition: all 0.3s ease;
            position: relative;
        }

        .pricing-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }

        .pricing-card.featured {
            border-color: #ec4899;
            transform: scale(1.05);
        }

        .pricing-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #ec4899, #f97316);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .pricing-header h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #1e3a8a;
            margin-bottom: 1rem;
        }

        .price {
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 0.25rem;
        }

        .currency {
            font-size: 1.2rem;
            color: #6b7280;
        }

        .amount {
            font-size: 3rem;
            font-weight: 700;
            color: #1e3a8a;
        }

        .period {
            font-size: 1rem;
            color: #6b7280;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .pricing-features li {
            padding: 0.75rem 0;
            border-bottom: 1px solid #f3f4f6;
            color: #4b5563;
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        /* Support Section */
        .support {
            padding: 6rem 0;
            background: white;
        }

        .support h2 {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: #1e3a8a;
            margin-bottom: 1.5rem;
        }

        .support-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .support-card {
            background: #fafafa;
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
            transition: transform 0.2s;
        }

        .support-card:hover {
            transform: translateY(-4px);
        }

        .support-icon {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .support-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #1e3a8a;
            margin-bottom: 1rem;
        }

        .support-card p {
            color: #6b7280;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .support-link {
            color: #ec4899;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.2s;
        }

        .support-link:hover {
            color: #f97316;
        }
        .social-proof {
            padding: 4rem 0;
            background: white;
            text-align: center;
        }

        .social-proof h3 {
            font-size: 1.5rem;
            color: #6b7280;
            margin-bottom: 2rem;
        }

        .stats {
            display: flex;
            justify-content: center;
            gap: 4rem;
            flex-wrap: wrap;
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1e3a8a;
            display: block;
        }

        .stat-label {
            color: #6b7280;
            font-weight: 500;
        }

        /* CTA Section */
        .final-cta {
            padding: 6rem 0;
            background: linear-gradient(135deg, #1e3a8a, #3b82f6);
            color: white;
            text-align: center;
        }

        .final-cta h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
            background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 50%, #ffffff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
        }

        .final-cta p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .final-cta .cta-subtext {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-bottom: 0;
            margin-top: 1rem;
        }

        .final-cta .cta-button {
            background: linear-gradient(135deg, #ec4899, #f97316);
            font-size: 1.1rem;
            padding: 1rem 2rem;
        }

        /* Footer */
        .footer {
            background: #1f2937;
            color: white;
            padding: 3rem 0 2rem;
            text-align: center;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .footer-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .footer-links a {
            color: #9ca3af;
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-logo {
            width: 200px;
            height: auto;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero .subtitle {
                font-size: 1.1rem;
            }

            .nav {
                display: none;
            }

            .header .cta-button {
                display: none;
            }

            .cta-subtext,
            .final-cta .cta-subtext {
                font-size: 0.75rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .stats {
                gap: 2rem;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }

            /* Ensure gradient text works properly on mobile */
            .hero h1,
            .problem h2,
            .features h2,
            .pricing h2,
            .support h2,
            .final-cta h2 {
                /* Fallback for browsers that don't support background-clip */
                color: #1e3a8a;
            }

            /* Apply gradient only if supported */
            @supports (-webkit-background-clip: text) {
                .hero h1 {
                    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e3a8a 100%);
                    -webkit-background-clip: text;
                    -webkit-text-fill-color: transparent;
                    background-clip: text;
                }
                
                .problem h2 {
                    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #dc2626 100%);
                    -webkit-background-clip: text;
                    -webkit-text-fill-color: transparent;
                    background-clip: text;
                }
                
                .features h2,
                .pricing h2,
                .support h2 {
                    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e3a8a 100%);
                    -webkit-background-clip: text;
                    -webkit-text-fill-color: transparent;
                    background-clip: text;
                }
                
                .final-cta h2 {
                    background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 50%, #ffffff 100%);
                    -webkit-background-clip: text;
                    -webkit-text-fill-color: transparent;
                    background-clip: text;
                }
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fade-in {
            animation: fadeInUp 0.6s ease-out;
        }

        /* Loading Animation */
        .loading {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease-out;
        }

        .loaded {
            opacity: 1;
            transform: translateY(0);
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
            animation: fadeIn 0.3s ease-out;
        }

        .modal.show {
            display: block;
        }

        .modal-content {
            background-color: #ffffff;
            margin: 2% auto;
            border-radius: 12px;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            width: 90%;
            max-width: 800px;
            max-height: 90vh;
            overflow: hidden;
            animation: slideIn 0.3s ease-out;
        }

        .modal-header {
            padding: 2rem 2rem 1rem;
            border-bottom: 1px solid #e5e7eb;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        }

        .modal-header h2 {
            margin: 0;
            font-size: 1.5rem;
            font-weight: 600;
            background: linear-gradient(135deg, #ec4899, #f97316);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .modal-body {
            padding: 2rem;
            overflow-y: auto;
            max-height: calc(90vh - 120px);
        }

        .modal-body h3 {
            color: #1f2937;
            font-size: 1.1rem;
            font-weight: 600;
            margin: 1.5rem 0 0.5rem;
        }

        .modal-body h3:first-child {
            margin-top: 0;
        }

        .modal-body p {
            color: #4b5563;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .modal-body ul {
            color: #4b5563;
            line-height: 1.6;
            margin: 0.5rem 0 1rem 1.5rem;
        }

        .modal-body li {
            margin-bottom: 0.25rem;
        }

        .close {
            color: #6b7280;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.2s ease;
            line-height: 1;
            padding: 0.25rem;
        }

        .close:hover,
        .close:focus {
            color: #dc2626;
        }

        .footer-link {
            color: #9ca3af;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-link:hover {
            color: #ffffff;
            text-decoration: underline;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-50px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Loading placeholder styles */
        .loading-placeholder {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 3rem 2rem;
            color: #6b7280;
        }

        .loading-spinner {
            width: 40px;
            height: 40px;
            border: 3px solid #f3f4f6;
            border-top: 3px solid #ec4899;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-bottom: 1rem;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .error-message {
            color: #dc2626;
            text-align: center;
            padding: 2rem;
        }

        .error-message h3 {
            margin-bottom: 0.5rem;
        }

        .error-message button {
            background: linear-gradient(135deg, #ec4899, #f97316);
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            cursor: pointer;
            margin-top: 1rem;
            font-size: 0.9rem;
            transition: opacity 0.2s ease;
        }

        .error-message button:hover {
            opacity: 0.9;
        }

        /* Mobile responsiveness for modals */
        @media (max-width: 768px) {
            .modal-content {
                margin: 5% auto;
                width: 95%;
                max-height: 85vh;
            }

            .modal-header {
                padding: 1.5rem 1.5rem 1rem;
            }

            .modal-header h2 {
                font-size: 1.25rem;
            }

            .modal-body {
                padding: 1.5rem;
                max-height: calc(85vh - 100px);
            }

            .loading-placeholder {
                padding: 2rem 1rem;
            }
        }