* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Quicksand', sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            color: #333;
            line-height: 1.6;
        }
        
        /* Container */
        .container {
            max-width: 480px;
            margin: 0 auto;
            padding: 20px 16px;
            position: relative;
        }
        
        /* Header / Hero Section */
        .hero {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 30px 30px 30px 30px;
            padding: 30px 20px;
            margin-bottom: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            opacity: 0.1;
        }
        
        .hero::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: -50px;
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            opacity: 0.1;
        }
        
        .logo {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
        }
        
        .logo i {
            font-size: 40px;
            color: white;
        }
        
        .hero h1 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 10px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero .tagline {
            font-size: 16px;
            color: #666;
            margin-bottom: 20px;
            font-weight: 500;
        }
        
        .hero .price-tag {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: white;
            padding: 12px 25px;
            border-radius: 50px;
            display: inline-block;
            font-weight: 700;
            font-size: 18px;
            box-shadow: 0 10px 20px rgba(245, 87, 108, 0.3);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .hero .price-tag i {
            margin-right: 8px;
        }
        
        /* Stats Section */
        .stats {
            display: flex;
            justify-content: space-around;
            margin-bottom: 20px;
            background: white;
            border-radius: 20px;
            padding: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-item i {
            font-size: 24px;
            color: #667eea;
            margin-bottom: 8px;
        }
        
        .stat-item .number {
            font-size: 20px;
            font-weight: 700;
            color: #333;
            display: block;
        }
        
        .stat-item .label {
            font-size: 12px;
            color: #666;
            font-weight: 500;
        }
        
        /* Features Section */
        .section-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 15px;
            color: white;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .section-title i {
            font-size: 24px;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-bottom: 20px;
        }
        
        .feature-card {
            background: white;
            border-radius: 20px;
            padding: 20px 12px;
            text-align: center;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
        }
        
        .feature-card i {
            font-size: 30px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
        }
        
        .feature-card h3 {
            font-size: 14px;
            font-weight: 600;
            color: #333;
        }
        
        /* Services Section */
        .services-list {
            background: white;
            border-radius: 20px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .service-item {
            display: flex;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .service-item:last-child {
            border-bottom: none;
        }
        
        .service-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }
        
        .service-icon i {
            font-size: 24px;
            color: white;
        }
        
        .service-info {
            flex: 1;
        }
        
        .service-info h4 {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin-bottom: 4px;
        }
        
        .service-info p {
            font-size: 12px;
            color: #666;
        }
        
        .service-price {
            font-weight: 700;
            color: #28a745;
            font-size: 16px;
        }
        
        /* Price List Preview */
        .price-preview {
            background: white;
            border-radius: 20px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .price-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px dashed #f0f0f0;
        }
        
        .price-row:last-child {
            border-bottom: none;
        }
        
        .price-row .platform {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .price-row .platform i {
            width: 20px;
            color: #667eea;
        }
        
        .price-row .platform span {
            font-weight: 600;
            color: #333;
        }
        
        .price-row .price {
            font-weight: 700;
            color: #28a745;
            background: #e8f5e9;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 14px;
        }
        
        /* Testimonials */
        .testimonials {
            background: white;
            border-radius: 20px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .testimonial-item {
            display: flex;
            gap: 15px;
            padding: 15px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .testimonial-item:last-child {
            border-bottom: none;
        }
        
        .testimonial-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .testimonial-avatar i {
            font-size: 24px;
            color: white;
        }
        
        .testimonial-content {
            flex: 1;
        }
        
        .testimonial-content .rating {
            color: #ffc107;
            font-size: 12px;
            margin-bottom: 5px;
        }
        
        .testimonial-content p {
            font-size: 13px;
            color: #666;
            margin-bottom: 5px;
            font-style: italic;
        }
        
        .testimonial-content .name {
            font-size: 12px;
            font-weight: 600;
            color: #333;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 20px;
            padding: 30px 20px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }
        
        .cta-section h2 {
            color: white;
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .cta-section p {
            color: rgba(255,255,255,0.9);
            font-size: 14px;
            margin-bottom: 20px;
        }
        
        .cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .btn {
            padding: 16px 24px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .btn-primary {
            background: white;
            color: #667eea;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
        }
        
        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }
        
        .btn-secondary:hover {
            background: white;
            color: #667eea;
        }
        
        /* FAQ Section */
        .faq-section {
            background: white;
            border-radius: 20px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .faq-item {
            border-bottom: 1px solid #f0f0f0;
        }
        
        .faq-item:last-child {
            border-bottom: none;
        }
        
        .faq-question {
            padding: 15px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }
        
        .faq-question h4 {
            font-size: 15px;
            font-weight: 600;
            color: #333;
        }
        
        .faq-question i {
            color: #667eea;
            transition: transform 0.3s ease;
        }
        
        .faq-question.active i {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            padding: 0 0 15px 0;
            display: none;
            font-size: 13px;
            color: #666;
            line-height: 1.8;
        }
        
        .faq-answer.show {
            display: block;
        }
        
        /* Contact Bar */
        .contact-bar {
            background: white;
            border-radius: 50px;
            padding: 12px 20px;
            display: flex;
            justify-content: space-around;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            position: sticky;
            bottom: 20px;
            z-index: 100;
        }
        
        .contact-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: #333;
            font-size: 12px;
            font-weight: 500;
        }
        
        .contact-item i {
            font-size: 20px;
            color: #667eea;
            margin-bottom: 4px;
        }
        
        .contact-item:hover {
            color: #667eea;
        }
        
        /* Floating WhatsApp */
        .floating-wa {
            position: fixed;
            bottom: 90px;
            right: 20px;
            width: 60px;
            height: 60px;
            background: blue;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 30px;
            box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
            animation: bounce 2s infinite;
            z-index: 99;
            text-decoration: none;
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        /* Footer */
        .footer {
            text-align: center;
            color: rgba(255,255,255,0.8);
            font-size: 12px;
            padding: 20px 0;
        }
        
        .footer a {
            color: white;
            text-decoration: none;
            font-weight: 600;
        }
        
        /* Badge */
        .badge {
            display: inline-block;
            padding: 4px 8px;
            border-radius: 20px;
            font-size: 10px;
            font-weight: 600;
        }
        
        .badge-success {
            background: #d4edda;
            color: #155724;
        }
        
        .badge-warning {
            background: #fff3cd;
            color: #856404;
        }
        
        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate {
            animation: fadeInUp 0.6s ease forwards;
        }
        
        /* Responsive */
        @media (max-width: 380px) {
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .hero h1 {
                font-size: 24px;
            }
            
            .stats {
                flex-wrap: wrap;
                gap: 15px;
            }
        }