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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: #1a1a1a;
            overflow-x: hidden;
        }

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

        /* Urgency Banner */
        .urgency-banner {
            background: #FF5722;
            color: white;
            text-align: center;
            padding: 12px 0;
            font-weight: 600;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1001;
            animation: pulse 2s infinite 1s;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.8;
            }
        }

        /* Navigation */
        nav {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 44px;
            width: 100%;
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 40px;
            width: auto;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
            margin: 0;
            padding: 0;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            padding: 8px 16px;
            border-radius: 8px;
            position: relative;
            overflow: hidden;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, #0D75FD 0%, #7C3AED 50%, #FF6B9D 100%);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-links a:hover::before {
            width: 80%;
        }

        .nav-links a:hover {
            color: #0D75FD;
            background: rgba(13, 117, 253, 0.08);
            transform: translateY(-2px);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .login-btn {
            background: transparent;
            color: #4a5568;
            font-weight: 600;
            padding: 10px 20px;
            border-radius: 12px;
            border: 2px solid rgba(13, 117, 253, 0.2);
            transition: all 0.3s ease;
            font-size: 0.95rem;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(8px);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .login-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(13, 117, 253, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
            transition: all 0.4s ease;
            z-index: -1;
        }

        .login-btn:hover::before {
            left: 0;
        }

        .login-btn:hover {
            color: #0D75FD;
            border-color: rgba(13, 117, 253, 0.4);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(13, 117, 253, 0.15);
        }

        .demo-btn {
            background: linear-gradient(135deg, #0D75FD 0%, #7C3AED 100%);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(13, 117, 253, 0.25);
        }

        .demo-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
            transition: all 0.4s ease;
            z-index: 1;
        }

        .demo-btn:hover::before {
            left: 0;
        }

        .demo-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 35px rgba(13, 117, 253, 0.4);
            background: linear-gradient(135deg, #1a82ff 0%, #8b5cf6 100%);
        }

        /* Hero Section - Optimized for Ads */
        .hero {
            background: linear-gradient(135deg, #0D75FD 0%, #7C3AED 100%);
            color: white;
            padding: 160px 0 80px;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1000px;
            margin: 0 auto;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
            margin-bottom: 20px;
            backdrop-filter: blur(10px);
        }

        .hero h1 {
            font-size: 3.2rem;
            font-weight: 900;
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .hero-value-prop {
            font-size: 1.4rem;
            margin-bottom: 15px;
            font-weight: 600;
            color: #FCD34D;
        }

        .hero-description {
            font-size: 1.1rem;
            margin-bottom: 35px;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-cta-container {
            margin-bottom: 30px;
        }

        .hero-cta-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #FCD34D;
            color: #1a1a1a;
            padding: 20px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 800;
            font-size: 1.2rem;
            margin-right: 15px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(252, 211, 77, 0.4);
            position: relative;
            overflow: hidden;
        }

        .hero-cta-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .hero-cta-primary:hover::before {
            left: 100%;
        }

        .hero-cta-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(252, 211, 77, 0.5);
        }

        .hero-cta-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            color: white;
            padding: 18px 35px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .hero-guarantees {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 25px;
            flex-wrap: wrap;
        }

        .guarantee-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .guarantee-icon {
            color: #4ade80;
            font-size: 1.1rem;
        }

        /* Trust Bar */
        .trust-bar {
            background: white;
            padding: 30px 0;
            margin-top: -30px;
            position: relative;
            z-index: 3;
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
        }

        .trust-content {
            text-align: center;
        }

        .trust-title {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .trust-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .trust-stat {
            text-align: center;
        }

        .trust-stat-number {
            font-size: 2.2rem;
            font-weight: 800;
            color: #0D75FD;
            margin-bottom: 5px;
            display: block;
        }

        .trust-stat-label {
            font-size: 0.9rem;
            color: #666;
            font-weight: 600;
        }

        .security-badges {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .badge {
            background: #f8f9ff;
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #666;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* Social Proof Section */
        .social-proof {
            background: #f8f9ff;
            padding: 80px 0;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .testimonial {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            position: relative;
        }

        .testimonial::before {
            content: '"';
            position: absolute;
            top: -10px;
            left: 20px;
            font-size: 4rem;
            color: #0D75FD;
            font-weight: bold;
            opacity: 0.3;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.6;
            color: #333;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #0D75FD, #7C3AED);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .testimonial-info h4 {
            font-weight: 700;
            margin-bottom: 2px;
        }

        .testimonial-info span {
            font-size: 0.9rem;
            color: #666;
        }

        .testimonial-result {
            background: #e7f5e7;
            color: #2d5a2d;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-left: auto;
        }

        /* Problem/Solution - Enhanced Visual Appeal */
        .problem-solution {
            background: linear-gradient(135deg, #0779fe 0%, #1a1a1a 50%, #2d3748 100%);
            padding: 120px 0;
            position: relative;
            overflow: hidden;
            color: white;
        }

        .problem-solution::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(252,211,77,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(252,211,77,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(252,211,77,0.1)"/><circle cx="60" cy="20" r="0.5" fill="rgba(13,117,253,0.1)"/><circle cx="10" cy="60" r="1" fill="rgba(13,117,253,0.1)"/></svg>');
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(5deg);
            }
        }

        .problem-solution .container {
            position: relative;
            z-index: 2;
        }

        .problem-solution .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .problem-solution .section-title {
            color: white;
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .problem-solution .section-subtitle {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto;
        }

        .before-after {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 40px;
            margin-top: 80px;
            align-items: center;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
        }

        .vs-divider {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 3;
        }

        .vs-circle {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            font-weight: 900;
            color: #1a1a1a;
            box-shadow: 0 20px 60px rgba(252, 211, 77, 0.4);
            animation: pulse-vs 2s ease-in-out infinite;
            position: relative;
        }

        .vs-circle::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border: 3px solid rgba(252, 211, 77, 0.3);
            border-radius: 50%;
            animation: pulse-ring 2s ease-in-out infinite;
        }

        @keyframes pulse-vs {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }

        @keyframes pulse-ring {

            0%,
            100% {
                transform: scale(1);
                opacity: 1;
            }

            50% {
                transform: scale(1.1);
                opacity: 0.5;
            }
        }

        .before,
        .after {
            padding: 60px 50px;
            border-radius: 30px;
            position: relative;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.1);
            overflow: hidden;
        }

        .before::after,
        .after::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .before:hover::after,
        .after:hover::after {
            transform: translateX(100%);
        }

        .before:hover,
        .after:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .before {
            background: linear-gradient(145deg, rgba(239, 68, 68, 0.15), rgba(220, 38, 38, 0.2));
            border-color: #ef4444;
            box-shadow: 0 20px 60px rgba(239, 68, 68, 0.2);
        }

        .after {
            background: linear-gradient(145deg, rgba(34, 197, 94, 0.15), rgba(22, 163, 74, 0.2));
            border-color: #22c55e;
            box-shadow: 0 20px 60px rgba(34, 197, 94, 0.2);
        }

        .problem-icon,
        .solution-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin: 0 auto 30px;
            position: relative;
            animation: bounce-gentle 3s ease-in-out infinite;
        }

        .problem-icon {
            background: linear-gradient(135deg, #ef4444, #dc2626);
            box-shadow: 0 15px 35px rgba(239, 68, 68, 0.4);
        }

        .solution-icon {
            background: linear-gradient(135deg, #22c55e, #16a34a);
            box-shadow: 0 15px 35px rgba(34, 197, 94, 0.4);
        }

        @keyframes bounce-gentle {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-5px);
            }
        }

        .before h3,
        .after h3 {
            font-size: 2rem;
            margin: 0 0 30px 0;
            text-align: center;
            font-weight: 800;
        }

        .before h3 {
            color: #fca5a5;
        }

        .after h3 {
            color: #86efac;
        }

        .feature-list {
            list-style: none;
            text-align: left;
            margin-top: 20px;
        }

        .feature-list li {
            padding: 15px 0;
            display: flex;
            align-items: flex-start;
            gap: 20px;
            font-size: 1.1rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
            position: relative;
            transition: all 0.3s ease;
        }

        .feature-list li:hover {
            padding-left: 10px;
            color: white;
        }

        .before .feature-list li::before {
            content: "❌";
            font-size: 1.4rem;
            margin-top: 2px;
            filter: drop-shadow(0 0 5px rgba(239, 68, 68, 0.5));
        }

        .after .feature-list li::before {
            content: "✅";
            font-size: 1.4rem;
            margin-top: 2px;
            filter: drop-shadow(0 0 5px rgba(34, 197, 94, 0.5));
        }

        .stat-highlight {
            text-align: center;
            margin-top: 50px;
            padding: 40px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .stat-highlight h4 {
            font-size: 1.5rem;
            color: #FCD34D;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .stats-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 30px;
        }

        .stat-item-mini {
            text-align: center;
        }

        .mini-stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: #FCD34D;
            margin-bottom: 5px;
            display: block;
        }

        .mini-stat-label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Features Breakdown */
        .features-breakdown {
            background: linear-gradient(135deg, #f4f6fa 60%, #e7eaf3 100%);
            color: #1a1a1a;
            padding: 100px 0;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .feature-card {
            background: #f8f9ff;
            backdrop-filter: blur(10px);
            border: 1px solid #e2e8f0;
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(135deg, #0D75FD 0%, #7C3AED 100%);
        }

        .feature-card:hover {
            background: #f1f5ff;
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(13, 117, 253, 0.15);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(13, 117, 253, 0.85) 0%, rgba(124, 58, 237, 0.65) 100%);
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 28px;
            color: #fff;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 2px solid rgba(13, 117, 253, 0.18);
            box-shadow: 0 8px 32px rgba(13, 117, 253, 0.18), 0 2px 8px rgba(255, 255, 255, 0.10) inset;
            font-weight: 800;
            backdrop-filter: blur(8px) saturate(1.2);
        }

        .feature-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 30px;
            background: linear-gradient(120deg, rgba(255, 255, 255, 0.22) 10%, rgba(255, 255, 255, 0.08) 60%, rgba(255, 255, 255, 0.03) 100%);
            z-index: 1;
        }

        .feature-icon::after {
            content: '';
            position: absolute;
            top: 8px;
            left: 12px;
            width: 46px;
            height: 18px;
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.08) 100%);
            border-radius: 18px 18px 30px 30px;
            z-index: 2;
            opacity: 0.85;
        }

        .feature-icon:hover {
            background: linear-gradient(135deg, #FCD34D 0%, #0D75FD 100%);
            color: #1a1a1a;
            box-shadow: 0 16px 48px rgba(252, 211, 77, 0.18);
            border-color: #0D75FD;
            transform: translateY(-2px) scale(1.04);
        }


        .feature-icon i {
            position: relative;
            z-index: 3;
            filter: drop-shadow(0 2px 8px rgba(13, 117, 253, 0.12));
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) translateY(-5px);
            box-shadow: 0 15px 45px rgba(13, 117, 253, 0.4);
            background: linear-gradient(135deg, rgba(13, 117, 253, 1) 0%, rgba(124, 58, 237, 1) 100%);
        }

        .feature-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #1a1a1a;
        }

        .feature-description {
            color: #666;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .feature-benefit {
            background: linear-gradient(145deg, rgba(34, 197, 94, 0.15), rgba(22, 163, 74, 0.2));
            color: #22c55e;
            padding: 14px 28px;
            border-radius: 30px;
            font-size: 1.08rem;
            font-weight: 800;
            display: inline-block;
            border: 2px solid #22c55e;
            box-shadow: 0 8px 32px rgba(34, 197, 94, 0.13);
            margin-top: 18px;
            letter-spacing: 0.01em;
            transition: all 0.3s;
        }

        .feature-benefit:hover {
            background: linear-gradient(135deg, #22c55e 0%, #4ade80 100%);
            color: #1a1a1a;
            box-shadow: 0 16px 48px rgba(34, 197, 94, 0.18);
            transform: translateY(-2px) scale(1.04);
            border-color: #16a34a;
        }

        /* Pricing Comparison Table */
        .pricing-comparison {
            background: linear-gradient(135deg, #f8f9ff 0%, #e7f3ff 100%);
            padding: 30px 0;
            color: #1a1a1a;
        }

        .pricing-package-tag {
            background: #0D75FD;
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 30px;
            text-align: center;
        }

        .pricing-comparison .section-header {
            text-align: center;
        }

        .pricing-comparison .section-title {
            color: #1a1a1a;
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .pricing-comparison .section-subtitle {
            color: #666;
            font-size: 1.3rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .comparison-table {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 80px;
            align-items: start;
        }

        .comparison-card {
            background: white;
            color: #1a1a1a;
            border-radius: 20px;
            padding: 0;
            position: relative;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease;
            overflow: visible;
            margin-top: 25px;
        }

        .comparison-card.featured {
            margin-top: 0;
        }

        .comparison-card:hover {
            transform: translateY(-5px);
        }

        .popular-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: #22c55e;
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
            z-index: 10;
        }

        .plan-header {
            padding: 40px 30px 30px;
            text-align: center;
            border-bottom: 1px solid #e2e8f0;
        }

        .plan-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #1a1a1a;
        }

        .plan-title.pay-per-lead {
            color: #0D75FD;
        }

        .plan-price {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 15px;
            color: #1a1a1a;
        }

        .plan-price span {
            font-size: 1rem;
            font-weight: 400;
            color: #666;
        }

        .plan-description {
            color: #666;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .plan-cta {
            width: 100%;
            padding: 12px 24px;
            border: none;
            border-radius: 25px;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 10px;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .primary-cta {
            background: #0D75FD;
            color: white;
        }

        .primary-cta:hover {
            background: #0056cc;
            transform: translateY(-2px);
        }

        .secondary-cta {
            background: transparent;
            color: #1a1a1a;
            border: 2px solid #e2e8f0;
        }

        .secondary-cta:hover {
            border-color: #0D75FD;
            color: #0D75FD;
        }

        .plan-features {
            list-style: none;
            padding: 30px;
        }

        .plan-features li {
            padding: 10px 0;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 0.95rem;
        }

        .feature-included i {
            color: #22c55e;
            font-size: 1.1rem;
            margin-top: 2px;
        }

        .feature-excluded i {
            color: #ef4444;
            font-size: 1.1rem;
            margin-top: 2px;
        }

        .feature-excluded {
            opacity: 0.6;
        }

        /* Final CTA - Conversion Focused */
        .final-cta {
            background: linear-gradient(135deg, #0D75FD 0%, #7C3AED 100%);
            color: white;
            padding: 120px 0 100px;
            text-align: center;
            position: relative;
            width: 100vw;
            margin-left: calc(-50vw + 50%);
            overflow: hidden;
        }

        .final-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
            animation: float 20s ease-in-out infinite;
        }

        .final-cta .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 2;
        }

        .cta-urgency {
            background: rgba(255, 255, 255, 0.1);
            display: inline-block;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-bottom: 20px;
            animation: pulse 2s infinite;
        }

        .final-cta-title {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 25px;
            line-height: 1.1;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .final-cta-subtitle {
            font-size: 1.4rem;
            margin-bottom: 40px;
            opacity: 0.9;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.5;
        }

        .final-cta-button {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            background: #FCD34D;
            color: #1a1a1a;
            padding: 28px 55px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 800;
            font-size: 1.4rem;
            transition: all 0.3s ease;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
        }

        .final-cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .final-cta-button:hover::before {
            left: 100%;
        }

        .final-cta-button:hover {
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
        }

        .risk-reversal {
            font-size: 1rem;
            opacity: 0.9;
            font-weight: 500;
        }

        /* Enhanced Mobile Optimization */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .nav-actions {
                gap: 10px;
            }

            .login-btn {
                display: none;
            }

            .urgency-banner {
                font-size: 0.9rem;
                padding: 10px 15px;
                width: 100vw;
                max-width: 100vw;
                box-sizing: border-box;
            }

            nav {
                top: 39px;
            }

            .hero {
                padding: 140px 0 60px;
            }

            .hero h1 {
                font-size: 2.3rem;
            }

            .hero-value-prop {
                font-size: 1.2rem;
            }

            .hero-guarantees {
                flex-direction: column;
                gap: 15px;
            }

            .hero-cta-primary {
                display: block;
                margin-bottom: 15px;
                margin-right: 0;
                text-align: center;
            }

            .hero-cta-secondary {
                display: block;
                text-align: center;
            }

            .before-after {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .vs-divider {
                order: 2;
                margin: 20px 0;
            }

            .before {
                order: 1;
            }

            .after {
                order: 3;
            }

            .vs-circle {
                width: 80px;
                height: 80px;
                font-size: 1.8rem;
            }

            .problem-icon,
            .solution-icon {
                width: 60px;
                height: 60px;
                font-size: 2rem;
            }

            .before,
            .after {
                padding: 40px 30px;
            }

            .problem-solution .section-title {
                font-size: 2.2rem;
            }

            .stats-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .comparison-table {
                grid-template-columns: 1fr;
                gap: 20px;
                margin-top: 60px;
            }

            .comparison-card.featured {
                transform: none;
                order: -1;
                margin-top: 25px;
            }

            .comparison-card {
                margin-top: 25px;
            }

            .popular-badge {
                font-size: 0.8rem;
                padding: 6px 16px;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .trust-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .testimonial-grid {
                grid-template-columns: 1fr;
            }

            .stats-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .final-cta-title {
                font-size: 2.5rem;
                line-height: 1.2;
            }

            .final-cta-subtitle {
                font-size: 1.1rem;
                margin-bottom: 35px;
            }

            .final-cta-button {
                padding: 22px 40px;
                font-size: 1.2rem;
            }

            .final-cta .container {
                padding: 0 20px;
            }

            .final-cta {
                padding: 80px 0 70px;
            }
        }

        /* Smooth Scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Loading Animation */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Page Load Animations */
        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.9);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        /* Video Modal Styles */
        .video-modal {
            display: none;
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            animation: fadeIn 0.3s ease;
        }

        .video-modal.show {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .video-modal-content {
            position: relative;
            width: 90%;
            max-width: 900px;
            background: #000;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 100px rgba(0, 0, 0, 0.5);
            animation: slideInScale 0.4s ease;
        }

        .video-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 25px;
            background: linear-gradient(135deg, #0D75FD 0%, #7C3AED 100%);
            color: white;
        }

        .video-modal-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin: 0;
        }

        .video-close {
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            padding: 0;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .video-close:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(90deg);
        }

        .video-container {
            position: relative;
            width: 100%;
            height: 0;
            padding-bottom: 56.25%;
            /* 16:9 aspect ratio */
        }

        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes slideInScale {
            from {
                opacity: 0;
                transform: scale(0.8) translateY(50px);
            }

            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        /* Mobile responsiveness for modal */
        @media (max-width: 768px) {
            .video-modal-content {
                width: 95%;
                margin: 20px;
            }

            .video-modal-header {
                padding: 15px 20px;
            }

            .video-modal-title {
                font-size: 1.1rem;
            }

            .video-close {
                font-size: 1.5rem;
                width: 35px;
                height: 35px;
            }
        }

        /* Footer Styles */
        footer a:hover {
            color: #0D75FD !important;
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #f8f9fa;
            border-radius: 50%;
            color: #6c757d;
            text-decoration: none;
            margin: 0 8px;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }

        .social-link:hover {
            background-color: #0D75FD;
            color: white !important;
            transform: translateY(-2px);
        }

        .social-link.facebook:hover {
            background-color: #1877f2;
        }

        .social-link.instagram:hover {
            background-color: #e4405f;
        }

        /* Mobile footer adjustments */
        @media (max-width: 768px) {
            footer {
                padding: 30px 0 15px !important;
            }

            footer div[style*="margin-bottom: 20px"] a {
                display: inline-block;
                margin: 5px 10px !important;
            }

            footer span[style*="color: #dee2e6"] {
                display: none;
            }

            .social-links {
                margin-top: 15px !important;
            }
        }

        /* Feedback Carousel Styles */
        .carousel-prev:hover,
        .carousel-next:hover {
            background: #0D75FD !important;
            color: white !important;
            transform: translateY(-50%) scale(1.1);
        }

        .dot:hover {
            background: #0D75FD !important;
            transform: scale(1.2);
        }

        .dot.active {
            background: #0D75FD !important;
            transform: scale(1.2);
        }

        @media (max-width: 768px) {
            .feedback-carousel-section {
                padding: 60px 0 !important;
            }

            .feedback-carousel {
                padding: 30px 20px !important;
                margin: 0 15px !important;
            }

            .carousel-prev,
            .carousel-next {
                width: 40px !important;
                height: 40px !important;
                font-size: 1rem !important;
            }

            .carousel-prev {
                left: 10px !important;
            }

            .carousel-next {
                right: 10px !important;
            }
        }

        /* Feedback Ticker Styles */
        .feedback-ticker-wrapper {
            -webkit-mask: linear-gradient(to right, transparent 0, white 5%, white 95%, transparent 100%);
            mask: linear-gradient(to right, transparent 0, white 5%, white 95%, transparent 100%);
        }

        .feedback-ticker {
            animation: scroll 10s linear infinite;
        }

        .ticker-feedback-item {
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
            transition: transform 0.2s ease, box-shadow 0.2s ease !important;
        }

        .ticker-feedback-item:hover {
            transform: translateY(-2px) !important;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
        }

        @media (max-width: 768px) {
            .feedback-ticker-wrapper {
                padding: 15px 0 !important;
                height: 100px !important;
            }

            .ticker-feedback-item {
                padding: 10px 15px !important;
            }

            .ticker-feedback-item div[style*="width: 40px"] {
                width: 35px !important;
                height: 35px !important;
                font-size: 0.9rem !important;
            }
        }