

        /* ============== HERO SECTION ============== */
        .hero {
            margin-top: 80px;
            min-height: 100vh;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            background-size: 200% 200%;
            animation: gradientShift 15s ease infinite;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            top: -100px;
            right: -100px;
            animation: float 20s infinite ease-in-out;
        }

        .hero::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 50%;
            bottom: -50px;
            left: -50px;
            animation: float 25s infinite ease-in-out reverse;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(30px); }
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            color: white;
            max-width: 800px;
            animation: slideUp 0.8s ease;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            color: white;
        }

        .hero p {
            font-size: 1.4rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            font-weight: 500;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1.2rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-primary {
            background: linear-gradient(135deg, #FF6B6B, #FFC75F);
            color: white;
            box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
        }

        .btn-secondary {
            background: white;
            color: #667eea;
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
        }

        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
            background: #f8f8f8;
        }

        /* ============== PROBLEMS SECTION ============== */
        .problems {
            padding: 6rem 2rem;
            background: #f8f9ff;
        }

        .section-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            background: linear-gradient(135deg, #FF6B6B, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: #999;
            margin-bottom: 4rem;
        }

        .problems-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
        }

        .problem-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border-left: 5px solid transparent;
            position: relative;
        }

        .problem-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .problem-card:nth-child(1) { border-left-color: #FF6B6B; }
        .problem-card:nth-child(2) { border-left-color: #FF8E53; }
        .problem-card:nth-child(3) { border-left-color: #FFC75F; }

        .problem-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .problem-card h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .problem-card p {
            color: #666;
            line-height: 1.8;
        }

        /* ============== SOLUTION SECTION ============== */
        .solution {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, #667eea15, #764ba215);
        }

        .solution-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .solution-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: #333;
        }

        .solution-highlight {
            background: linear-gradient(135deg, #FF6B6B, #FFC75F);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
            font-size: 1.5rem;
        }

        .solution-content p {
            font-size: 1.2rem;
            color: #555;
            margin-bottom: 1.5rem;
            line-height: 1.9;
        }

        /* ============== BENEFITS SECTION ============== */
        .benefits {
            padding: 6rem 2rem;
            background: white;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .benefit-item {
            display: flex;
            gap: 2rem;
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
        }

        .benefit-item:nth-child(1) { animation-delay: 0.1s; }
        .benefit-item:nth-child(2) { animation-delay: 0.2s; }
        .benefit-item:nth-child(3) { animation-delay: 0.3s; }
        .benefit-item:nth-child(4) { animation-delay: 0.4s; }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .benefit-icon {
            flex-shrink: 0;
            font-size: 2.5rem;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #FF6B6B, #FFC75F);
            border-radius: 15px;
            color: white;
        }

        .benefit-content h3 {
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
            color: #333;
        }

        .benefit-content p {
            color: #666;
            line-height: 1.7;
        }

        /* ============== COMPARISON TABLE ============== */
        .comparison {
            padding: 6rem 2rem;
            background: #f8f9ff;
        }

        .comparison-table {
            max-width: 1000px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        table {
            width: 100%;
            border-collapse: collapse;
        }

        th {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 1.5rem;
            text-align: left;
            font-weight: 600;
        }

        td {
            padding: 1.5rem;
            border-bottom: 1px solid #eee;
        }

        tr:hover td {
            background: #f9f9f9;
        }

        .check {
            color: #4CAF50;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .cross {
            color: #f44336;
            font-weight: 700;
            font-size: 1.2rem;
        }

        /* ============== STEPS SECTION ============== */
        .steps {
            padding: 6rem 2rem;
            background: white;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .step-item {
            text-align: center;
            position: relative;
        }

        .step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #FF6B6B, #FFC75F);
            border-radius: 50%;
            color: white;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
        }

        .step-item h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .step-item p {
            color: #666;
            line-height: 1.7;
        }

        .step-item::after {
            content: '→';
            position: absolute;
            right: -2rem;
            top: 35px;
            font-size: 2rem;
            color: #ddd;
            font-weight: 700;
        }

        .step-item:last-child::after {
            display: none;
        }

        /* ============== CTA SECTION ============== */
        .cta-section {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            text-align: center;
            color: white;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
        }

        /* ============== UPSELL SECTION ============== */
        .upsell {
            padding: 6rem 2rem;
            background: #f8f9ff;
        }

        .upsell-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .upsell-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: all 0.3s ease;
            border-top: 4px solid transparent;
        }

        .upsell-card:nth-child(1) { border-top-color: #FF6B6B; }
        .upsell-card:nth-child(2) { border-top-color: #764ba2; }

        .upsell-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .upsell-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .upsell-card h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .upsell-card p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        /* ============== FOOTER ============== */
        footer {
            background: #222;
            color: #aaa;
            text-align: center;
            padding: 3rem 2rem;
        }

        footer p {
            margin-bottom: 0.5rem;
        }

        /* ============== RESPONSIVE ============== */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            nav a {
                margin-left: 1rem;
            }

            .step-item::after {
                display: none;
            }

            .cta-buttons {
                gap: 1rem;
            }

            .btn {
                padding: 1rem 2rem;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            header { padding: 0.5rem 0; }
            .navbar { padding: 0 1rem; }
            nav { display: none; }
            .hero h1 { font-size: 2rem; }
            .section-title { font-size: 1.5rem; }
            table { font-size: 0.9rem; }
            th, td { padding: 1rem; }
        }