* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            line-height: 1.6;
            color: #333;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #2563eb;
        }
        
        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }
        
        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: #2563eb;
        }
        
        .nav-cta {
            display: flex;
            gap: 15px;
        }
        
        /* Buttons */
        .btn {
            padding: 12px 28px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            display: inline-block;
            font-size: 16px;
        }
        
        .btn-primary {
            background: #2563eb;
            color: #fff;
        }
        
        .btn-primary:hover {
            background: #1d4ed8;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(37,99,235,0.3);
        }
        
        .btn-secondary {
            background: #fff;
            color: #2563eb;
            border: 2px solid #2563eb;
        }
        
        .btn-secondary:hover {
            background: #2563eb;
            color: #fff;
        }
        
        .btn-large {
            padding: 16px 40px;
            font-size: 18px;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #fff;
            padding: 100px 0;
            text-align: center;
        }
        
        h1 {
            font-size: 48px;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero-subtitle {
            font-size: 24px;
            margin-bottom: 15px;
            opacity: 0.95;
        }
        
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 50px;
            margin: 40px 0;
            flex-wrap: wrap;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 36px;
            font-weight: bold;
            display: block;
        }
        
        .stat-label {
            font-size: 14px;
            opacity: 0.9;
        }
        
        .hero-cta {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: 40px;
            flex-wrap: wrap;
        }
        
        .hero-phone {
            margin-top: 20px;
            font-size: 18px;
        }
        
        .hero-phone a {
            color: #fff;
            text-decoration: none;
            font-weight: bold;
        }
        
        /* Trust Section */
        .trust-section {
            background: #f8fafc;
            padding: 60px 0;
            text-align: center;
        }
        
        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 40px;
            align-items: center;
            flex-wrap: wrap;
            margin-top: 30px;
        }
        
        .trust-badge {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 18px;
            color: #059669;
            font-weight: 600;
        }
        
        .check-icon {
            width: 24px;
            height: 24px;
            background: #059669;
            border-radius: 50%;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* Section Styling */
        section {
            padding: 80px 0;
        }
        
        h2 {
            font-size: 36px;
            text-align: center;
            margin-bottom: 20px;
            color: #1e293b;
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 18px;
            color: #64748b;
            margin-bottom: 60px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Problem Section */
        .problem-solution {
            background: #fff;
        }
        
        .problems-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .problem-card {
            padding: 30px;
            background: #fef2f2;
            border-radius: 12px;
            border-left: 4px solid #ef4444;
        }
        
        .problem-card h3 {
            color: #dc2626;
            margin-bottom: 10px;
            font-size: 20px;
        }
        
        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .solution-card {
            padding: 30px;
            background: #f0fdf4;
            border-radius: 12px;
            border-left: 4px solid #22c55e;
        }
        
        .solution-card h3 {
            color: #16a34a;
            margin-bottom: 10px;
            font-size: 20px;
        }
        
        /* Features Section */
        .features {
            background: #f8fafc;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .feature-card {
            background: #fff;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.15);
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 28px;
            margin-bottom: 20px;
        }
        
        .feature-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #1e293b;
        }
        
        .feature-benefit {
            color: #2563eb;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        /* Case Studies */
        .case-studies {
            background: #fff;
        }
        
        .cases-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }
        
        .case-card {
            background: #f8fafc;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        
        .case-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 48px;
        }
        
        .case-content {
            padding: 30px;
        }
        
        .case-title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #1e293b;
        }
        
        .case-result {
            font-size: 24px;
            color: #2563eb;
            font-weight: bold;
            margin-bottom: 15px;
        }
        
        .case-quote {
            font-style: italic;
            color: #64748b;
            margin-bottom: 15px;
            line-height: 1.8;
        }
        
        .case-author {
            font-weight: 600;
            color: #1e293b;
        }
        
        /* Pricing Section */
        .pricing {
            background: #f8fafc;
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .pricing-card {
            background: #fff;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            text-align: center;
        }
        
        .pricing-card.featured {
            border: 3px solid #2563eb;
            transform: scale(1.05);
        }
        
        .pricing-badge {
            background: #2563eb;
            color: #fff;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 12px;
            display: inline-block;
            margin-bottom: 15px;
        }
        
        .pricing-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
        }
        
        .pricing-price {
            font-size: 48px;
            font-weight: bold;
            color: #2563eb;
            margin-bottom: 10px;
        }
        
        .pricing-features {
            list-style: none;
            margin: 30px 0;
            text-align: left;
        }
        
        .pricing-features li {
            padding: 10px 0;
            border-bottom: 1px solid #e5e7eb;
        }
        
        .pricing-features li:before {
            content: "✓";
            color: #22c55e;
            font-weight: bold;
            margin-right: 10px;
        }
        
        /* FAQ Section */
        .faq {
            background: #fff;
        }
        
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: #f8fafc;
            padding: 30px;
            margin-bottom: 20px;
            border-radius: 12px;
            border-left: 4px solid #2563eb;
        }
        
        .faq-item h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #1e293b;
        }
        
        .faq-answer {
            color: #64748b;
            line-height: 1.8;
        }
        
        /* CTA Section */
        .final-cta {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #fff;
            text-align: center;
            padding: 80px 0;
        }
        
        .final-cta h2 {
            color: #fff;
            margin-bottom: 20px;
        }
        
        .final-cta p {
            font-size: 20px;
            margin-bottom: 40px;
        }
        
        .contact-options {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 40px;
            flex-wrap: wrap;
        }
        
        .contact-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
        }
        
        .contact-item a {
            color: #fff;
            text-decoration: none;
            font-weight: bold;
            font-size: 18px;
        }
        
        /* Footer */
        footer {
            background: #1e293b;
            color: #fff;
            padding: 60px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-section h4 {
            margin-bottom: 20px;
            font-size: 18px;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 10px;
        }
        
        .footer-section a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section a:hover {
            color: #fff;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #334155;
            color: #94a3b8;
        }
        
        /* Floating CTA */
        .floating-cta {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #fff;
            box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
            padding: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            z-index: 999;
            flex-wrap: wrap;
        }
        
        .floating-text {
            font-weight: 600;
            color: #1e293b;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            h1 {
                font-size: 32px;
            }
            
            h2 {
                font-size: 28px;
            }
            
            .hero-subtitle {
                font-size: 18px;
            }
            
            .nav-links {
                display: none;
            }
            
            .hero-stats {
                gap: 20px;
            }
            
            .stat-number {
                font-size: 28px;
            }
            
            .floating-cta {
                flex-direction: column;
                gap: 15px;
            }
        }