* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section - Problem Statement */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            background: linear-gradient(135deg, #ff4757 0%, #ff3838 50%, #c44569 100%);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
            animation: float 20s ease-in-out infinite;
            z-index: 1;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(2deg); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .problem-headline {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1rem;
            color: #fff;
            text-shadow: 0 4px 20px rgba(0,0,0,0.5);
            line-height: 1.2;
        }

        .problem-subtext {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .pain-points {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 40px 0;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .pain-point {
            background: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 15px;
            border-left: 4px solid #ffa500;
            backdrop-filter: blur(10px);
        }

        .pain-point strong {
            color: #ffa500;
            font-size: 1.1rem;
        }

        .solution-cta {
            margin-top: 40px;
        }

        .cta-button {
            display: inline-block;
            padding: 20px 45px;
            background: linear-gradient(45deg, #00d2d3, #54a0ff);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.3rem;
            box-shadow: 0 15px 35px rgba(0, 210, 211, 0.4);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .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;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 45px rgba(0, 210, 211, 0.6);
        }

        /* Problems Section */
        .problems {
            padding: 100px 0;
            background: linear-gradient(135deg, #2c2c54, #40407a);
            position: relative;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 2rem;
            color: #ff6b6b;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.3rem;
            margin-bottom: 4rem;
            opacity: 0.8;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .problem-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .problem-card {
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid #ff6b6b;
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
        }

        .problem-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(255, 107, 107, 0.3);
        }

        .problem-icon {
            font-size: 4rem;
            margin-bottom: 20px;
            display: block;
        }

        .problem-title {
            font-size: 1.5rem;
            color: #ff6b6b;
            margin-bottom: 15px;
        }

        .problem-description {
            font-size: 1rem;
            line-height: 1.6;
            opacity: 0.9;
        }

        /* Solutions Section */
        .solutions {
            padding: 100px 0;
            background: linear-gradient(135deg, #00d2d3, #54a0ff);
        }

        .solutions .section-title {
            color: white;
        }

        .solution-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .solution-card {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 30px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .solution-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #00d2d3, #54a0ff, #00d2d3);
        }

        .solution-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        }

        .solution-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: block;
        }

        .solution-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: white;
        }

        .solution-description {
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .service-list {
            list-style: none;
            margin-top: 15px;
        }

        .service-list li {
            padding: 8px 0;
            position: relative;
            padding-left: 25px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .service-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #00d2d3;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .price-highlight {
            background: rgba(255, 255, 255, 0.2);
            padding: 15px;
            border-radius: 10px;
            margin-top: 20px;
            text-align: center;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .price-text {
            font-size: 1.1rem;
            font-weight: bold;
            color: #ffa500;
        }

        /* Social Proof Section */
        .social-proof {
            padding: 80px 0;
            background: linear-gradient(135deg, #1a1a2e, #16213e);
            text-align: center;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .stat-card {
            padding: 30px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            border: 1px solid rgba(139, 92, 246, 0.3);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: #8b5cf6;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.8;
        }

        /* Urgency Section */
        .urgency {
            padding: 80px 0;
            background: linear-gradient(45deg, #ff6b6b, #ffa500);
            text-align: center;
        }

        .urgency-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .urgency h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .urgency p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .discount-banner {
            background: rgba(255, 255, 255, 0.2);
            padding: 30px;
            border-radius: 15px;
            margin: 40px 0;
            backdrop-filter: blur(10px);
        }

        .discount-text {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .timer {
            font-size: 2rem;
            font-weight: bold;
            color: #1a1a2e;
            margin: 20px 0;
        }

        /* Final CTA Section */
        .final-cta {
            padding: 100px 0;
            background: linear-gradient(135deg, #8b5cf6, #ec4899);
            text-align: center;
        }

        .cta-content {
            max-width: 700px;
            margin: 0 auto;
        }

        .final-cta h2 {
            font-size: 3rem;
            margin-bottom: 2rem;
        }

        .contact-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 40px;
        }

        .contact-btn {
            padding: 18px 35px;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .contact-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .primary-btn {
            background: linear-gradient(45deg, #00d2d3, #54a0ff) !important;
            border: none !important;
            font-size: 1.3rem !important;
            padding: 20px 40px !important;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .problem-headline {
                font-size: 2.5rem;
            }
            
            .pain-points {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .problem-grid, .solution-grid {
                grid-template-columns: 1fr;
            }
            
            .contact-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }