 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #1a1a1a;
            background: #0a0a0a;
            overflow-x: hidden;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid #333;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            position: relative;
        }
        
        .mobile-menu-toggle {
            display: none;
            background: linear-gradient(135deg, rgba(236, 72, 153, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(236, 72, 153, 0.3);
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 8px;
            border-radius: 12px;
            transition: all 0.3s;
        }
        
        .mobile-menu-toggle:hover {
            background: linear-gradient(135deg, rgba(236, 72, 153, 0.3) 0%, rgba(139, 92, 246, 0.3) 100%);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
        }

        .logo {
            font-size: 2rem;
            font-weight: 900;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 50%, #06b6d4 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .logo i {
            margin-right: 10px;
            color: #ec4899;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            transition: all 0.3s;
            font-weight: 600;
            padding: 10px 20px;
            border-radius: 25px;
            background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
            border: 1px solid rgba(236, 72, 153, 0.3);
        }

        .nav-links a:hover {
            background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(236, 72, 153, 0.4);
        }

        /* Hero Section */
        .hero {
            padding: 8rem 0;
            text-align: center;
            position: relative;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            overflow: hidden;
        }

        .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"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ff6b6b" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
            animation: float 20s ease-in-out infinite;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 4.5rem;
            margin-bottom: 1rem;
            font-weight: 900;
            background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 50%, #06b6d4 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.1;
            text-shadow: 0 0 30px rgba(236, 72, 153, 0.3);
        }

        .hero .subtitle {
            font-size: 1.8rem;
            margin-bottom: 2rem;
            color: #fff;
            font-weight: 300;
            opacity: 0.9;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 3rem;
            color: #ccc;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
            color: white;
            padding: 20px 40px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            transition: all 0.3s;
            font-size: 1.2rem;
            box-shadow: 0 10px 30px rgba(236, 72, 153, 0.4);
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(236, 72, 153, 0.6);
        }

        /* Features Section */
        .features {
            padding: 8rem 0;
            background: #111;
            position: relative;
        }

        .features::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(236, 72, 153, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
        }

        .features-content {
            position: relative;
            z-index: 2;
        }

        .features h2 {
            text-align: center;
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: #fff;
            font-weight: 900;
            background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .features .subtitle {
            text-align: center;
            font-size: 1.3rem;
            color: #ccc;
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .feature-card {
            background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
            backdrop-filter: blur(20px);
            padding: 3rem 2rem;
            border-radius: 20px;
            text-align: center;
            transition: all 0.4s;
            border: 1px solid rgba(236, 72, 153, 0.3);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
        }

        .feature-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 50px rgba(236, 72, 153, 0.3);
            background: linear-gradient(135deg, rgba(236, 72, 153, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
        }

        .feature-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            position: relative;
            animation: pulse-glow 2s infinite;
        }

        .feature-icon::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
            border-radius: 50%;
            opacity: 0.3;
            animation: pulse-ring 2s infinite;
        }

        .feature-icon i {
            font-size: 2.5rem;
            color: white;
            position: relative;
            z-index: 2;
        }

        .feature-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: #fff;
            font-weight: 700;
        }

        .feature-card p {
            color: #ccc;
            line-height: 1.8;
            font-size: 1.1rem;
        }

        /* AI Analysis Section */
        .ai-analysis {
            padding: 8rem 0;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            position: relative;
        }

        .ai-analysis::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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ff6b6b" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
        }

        .ai-content {
            position: relative;
            z-index: 2;
        }

        .ai-analysis h2 {
            text-align: center;
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: #fff;
            font-weight: 900;
            background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .ai-analysis .subtitle {
            text-align: center;
            font-size: 1.3rem;
            color: #ccc;
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .analysis-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .analysis-card {
            background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
            backdrop-filter: blur(20px);
            padding: 3rem 2rem;
            border-radius: 20px;
            text-align: center;
            border: 1px solid rgba(236, 72, 153, 0.3);
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }

        .analysis-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
        }

        .analysis-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(236, 72, 153, 0.3);
            background: linear-gradient(135deg, rgba(236, 72, 153, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
        }

        .analysis-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: #fff;
            font-weight: 600;
        }

        .score {
            font-size: 4rem;
            font-weight: 900;
            background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 1.5rem 0;
            position: relative;
        }

        .score::after {
            content: '/10';
            font-size: 1.5rem;
            color: #ccc;
            font-weight: 400;
        }

        .score-label {
            color: #ccc;
            font-size: 1rem;
            font-weight: 500;
        }

        /* Disclaimers Section */
        .disclaimers {
            background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
            color: white;
            padding: 6rem 0;
            position: relative;
        }

        .disclaimers::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(236, 72, 153, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
        }

        .disclaimers-content {
            position: relative;
            z-index: 2;
        }

        .disclaimers h2 {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 2rem;
            background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 900;
        }

        .disclaimer-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
            padding: 3rem;
            border-radius: 20px;
            border: 1px solid rgba(236, 72, 153, 0.3);
            backdrop-filter: blur(20px);
        }

        .disclaimer-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
            color: #e0e0e0;
        }

        .disclaimer-content .highlight {
            background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: bold;
        }

        /* Footer */
        footer {
            background: #0a0a0a;
            color: #666;
            padding: 3rem 0;
            border-top: 1px solid #333;
        }

        .footer-bottom {
            text-align: center;
            font-size: 1rem;
        }

        /* WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            width: 80px;
            height: 80px;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
            color: white;
            border-radius: 50px;
            text-align: center;
            font-size: 36px;
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            text-decoration: none;
            border: 3px solid #0a0a0a;
            animation: pulse 2s infinite;
        }

        .whatsapp-float:hover {
            background: linear-gradient(135deg, #128c7e 0%, #0d6b5a 100%);
            transform: translateX(-50%) scale(1.2);
            box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
            text-decoration: none;
            color: white;
        }

        .whatsapp-float::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            background: linear-gradient(135deg, #25d366, #128c7e);
            border-radius: 50px;
            z-index: -1;
            opacity: 0.3;
            animation: ripple 2s infinite;
        }

        .whatsapp-tooltip {
            position: absolute;
            bottom: 90px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
            color: white;
            padding: 15px 20px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 600;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
            z-index: 1001;
        }

        .whatsapp-tooltip::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            border: 8px solid transparent;
            border-top-color: #ff6b6b;
        }

        .whatsapp-float:hover .whatsapp-tooltip {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(-5px);
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
            }
            50% {
                box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6), 0 0 0 15px rgba(37, 211, 102, 0.1);
            }
            100% {
                box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
            }
        }

        @keyframes ripple {
            0% {
                transform: scale(1);
                opacity: 0.3;
            }
            100% {
                transform: scale(1.4);
                opacity: 0;
            }
        }

        @keyframes pulse-glow {
            0%, 100% {
                box-shadow: 0 0 20px rgba(236, 72, 153, 0.3);
            }
            50% {
                box-shadow: 0 0 30px rgba(236, 72, 153, 0.6);
            }
        }

        @keyframes pulse-ring {
            0% {
                transform: scale(0.8);
                opacity: 0.8;
            }
            100% {
                transform: scale(1.2);
                opacity: 0;
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        /* Tablet/iPad Responsive */
        @media (max-width: 1024px) and (min-width: 769px) {
            .whatsapp-float {
                width: 70px;
                height: 70px;
                font-size: 32px;
                bottom: 25px;
                z-index: 1001;
            }
            
            .whatsapp-tooltip {
                opacity: 1 !important;
                visibility: visible !important;
                transform: translateX(-50%) translateY(-5px) !important;
                bottom: 90px;
                background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
                font-size: 13px;
                padding: 12px 16px;
                border-radius: 12px;
                box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
            }
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: block;
            }
            
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(17, 17, 17, 0.95) 100%);
                backdrop-filter: blur(20px);
                flex-direction: column;
                gap: 0;
                padding: 1rem 0;
                border-radius: 0 0 20px 20px;
                box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
                border: 1px solid rgba(236, 72, 153, 0.3);
                z-index: 1000;
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .nav-links li {
                width: 100%;
            }
            
            .nav-links a {
                display: block;
                padding: 14px 20px;
                font-size: 1rem;
                text-align: center;
                color: white;
                border-bottom: 1px solid rgba(236, 72, 153, 0.2);
                transition: all 0.3s;
                background: transparent;
                border-radius: 0;
                border-left: 3px solid transparent;
            }
            
            .nav-links a:hover {
                background: linear-gradient(135deg, rgba(236, 72, 153, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
                border-left-color: #ec4899;
                transform: translateX(5px);
            }
            
            .nav-links li:last-child a {
                border-bottom: none;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .hero .subtitle {
                font-size: 1.3rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .features h2, .ai-analysis h2 {
                font-size: 2.5rem;
            }

            .features-grid, .analysis-grid {
                grid-template-columns: 1fr;
            }

            .whatsapp-float {
                width: 65px;
                height: 65px;
                font-size: 30px;
                bottom: 20px;
                z-index: 1001;
                position: fixed !important;
                display: flex !important;
            }
            
            .whatsapp-tooltip {
                opacity: 1 !important;
                visibility: visible !important;
                transform: translateX(-50%) translateY(-5px) !important;
                bottom: 80px;
                background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
                font-size: 12px;
                padding: 10px 14px;
                border-radius: 10px;
                box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
                white-space: nowrap;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .hero {
                padding: 4rem 0;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .feature-card, .analysis-card {
                padding: 2rem 1.5rem;
            }
        }