* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #e8f0e8 100%);
            color: #2d3e2d;
            line-height: 1.6;
        }

        header {
            background: rgba(46, 125, 50, 0.95);
            color: white;
            padding: 1rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            backdrop-filter: blur(5px);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo span {
            font-size: 2rem;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            flex-wrap: wrap;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: opacity 0.3s;
        }

        .nav-links a:hover {
            opacity: 0.8;
        }

        .btn-download {
            background: #ff9800;
            padding: 0.5rem 1.2rem;
            border-radius: 30px;
            color: white;
            font-weight: bold;
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .hero {
            margin-top: 80px;
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            border-radius: 0 0 40px 40px;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.4));
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            color: white;
            padding: 60px 20px;
            max-width: 600px;
        }

        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }

        .btn-group {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn {
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            display: inline-block;
            transition: transform 0.3s;
            cursor: pointer;
            border: none;
            font-size: 1rem;
        }

        .btn:hover {
            transform: translateY(-3px);
        }

        .btn-primary {
            background: #2e7d32;
            color: white;
        }

        .btn-secondary {
            background: #ff9800;
            color: white;
        }

        .btn-outline {
            border: 2px solid white;
            color: white;
            background: transparent;
        }

        .counter-section {
            background: white;
            border-radius: 30px;
            padding: 40px;
            margin: -50px auto 0;
            position: relative;
            z-index: 10;
            max-width: 90%;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            text-align: center;
        }

        .counter-number {
            font-size: 3.5rem;
            font-weight: bold;
            color: #2e7d32;
        }

        .counter-label {
            font-size: 1rem;
            color: #666;
        }

        .section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 50px;
            color: #1b5e20;
        }

        .cards {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }

        .card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            flex: 1;
            min-width: 280px;
            max-width: 350px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            text-align: center;
        }

        .card:hover {
            transform: translateY(-10px);
        }

        .card h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .price {
            font-size: 2.5rem;
            color: #2e7d32;
            font-weight: bold;
            margin: 20px 0;
        }

        .price span {
            font-size: 1rem;
            color: #666;
        }

        .card ul {
            list-style: none;
            text-align: left;
            margin: 20px 0;
        }

        .card li {
            padding: 8px 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .card li::before {
            content: "✓";
            color: #2e7d32;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .premium {
            background: linear-gradient(135deg, #fff8e1, #fff3e0);
            border: 2px solid #ff9800;
        }

        .vip {
            background: linear-gradient(135deg, #f3e5f5, #ede7f6);
            border: 2px solid #9c27b0;
        }

        .features-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }

        .feature {
            flex: 1;
            min-width: 250px;
            text-align: center;
            padding: 20px;
            background: white;
            border-radius: 20px;
            transition: transform 0.3s;
        }

        .feature:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 15px;
        }

        .testimonials {
            background: #e8f5e9;
            border-radius: 30px;
            padding: 40px 20px;
        }

        .carousel {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            gap: 30px;
            padding: 20px;
            scroll-behavior: smooth;
        }

        .carousel::-webkit-scrollbar {
            height: 8px;
        }

        .carousel::-webkit-scrollbar-track {
            background: #c8e6c9;
            border-radius: 10px;
        }

        .carousel::-webkit-scrollbar-thumb {
            background: #2e7d32;
            border-radius: 10px;
        }

        .testimonial-card {
            min-width: 300px;
            flex: 1;
            scroll-snap-align: start;
            background: white;
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .testimonial-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
            border: 3px solid #2e7d32;
        }

        .testimonial-name {
            font-weight: bold;
            color: #2e7d32;
            margin: 10px 0;
        }

        .testimonial-text {
            font-style: italic;
            color: #555;
        }

        .stars {
            color: #ff9800;
            margin: 10px 0;
        }

        .faq-grid {
            display: flex;
            flex-direction: column;
            gap: 20px;
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .faq-question {
            padding: 20px;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #f5f5f5;
        }

        .faq-question:hover {
            background: #e8f5e9;
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 200px;
        }

        .contact-form {
            background: white;
            border-radius: 30px;
            padding: 40px;
            max-width: 600px;
            margin: 0 auto;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 10px;
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #2e7d32;
        }

        .success-message {
            background: #4caf50;
            color: white;
            padding: 10px;
            border-radius: 10px;
            text-align: center;
            margin-top: 15px;
            display: none;
        }

        .cta {
            background: #2e7d32;
            color: white;
            text-align: center;
            border-radius: 30px;
            padding: 60px 20px;
            margin: 40px 0;
        }

        .cta h2 {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .floating-download {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #ff9800;
            color: white;
            padding: 15px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            z-index: 1000;
            display: flex;
            align-items: center;
            gap: 10px;
            animation: bounce 1s infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .floating-download:hover {
            transform: scale(1.05);
        }

        footer {
            background: #1b5e20;
            color: white;
            text-align: center;
            padding: 30px;
            margin-top: 40px;
        }

        footer a {
            color: white;
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .hero-content h1 {
                font-size: 1.8rem;
            }
            
            .section {
                padding: 40px 0;
            }
            
            .btn-group {
                justify-content: center;
            }

            .counter-number {
                font-size: 2rem;
            }

            .floating-download {
                padding: 10px 18px;
                font-size: 0.9rem;
            }
        }

        .menu-icon {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            .menu-icon {
                display: block;
            }
            
            .nav-links.active {
                display: flex;
                flex-direction: column;
                width: 100%;
                background: #2e7d32;
                padding: 20px;
                margin-top: 15px;
                gap: 15px;
            }
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background: linear-gradient(135deg, #f5f7fa 0%, #e8f0e8 100%); color: #2d3e2d; line-height: 1.6; }
        header { background: rgba(46, 125, 50, 0.95); color: white; padding: 1rem; position: fixed; width: 100%; top: 0; z-index: 1000; backdrop-filter: blur(5px); }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        nav { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
        .logo { font-size: 1.5rem; font-weight: bold; display: flex; align-items: center; gap: 10px; }
        .logo span { font-size: 2rem; }
        .nav-links { display: flex; gap: 2rem; list-style: none; flex-wrap: wrap; }
        .nav-links a { color: white; text-decoration: none; font-weight: 500; transition: opacity 0.3s; }
        .nav-links a:hover { opacity: 0.8; }
        .btn-download { background: #ff9800; padding: 0.5rem 1.2rem; border-radius: 30px; color: white; font-weight: bold; animation: pulse 1.5s infinite; }
        @keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } }
        .hero { margin-top: 80px; position: relative; min-height: 90vh; display: flex; align-items: center; overflow: hidden; border-radius: 0 0 40px 40px; }
        .hero-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
        .hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.4)); z-index: 1; }
        .hero-content { position: relative; z-index: 2; color: white; padding: 60px 20px; max-width: 600px; }
        .hero-content h1 { font-size: 3rem; margin-bottom: 20px; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
        .hero-content p { font-size: 1.2rem; margin-bottom: 30px; text-shadow: 1px 1px 2px rgba(0,0,0,0.3); }
        .btn-group { display: flex; gap: 15px; flex-wrap: wrap; }
        .btn { padding: 12px 30px; border-radius: 50px; text-decoration: none; font-weight: bold; display: inline-block; transition: transform 0.3s; cursor: pointer; border: none; font-size: 1rem; }
        .btn:hover { transform: translateY(-3px); }
        .btn-primary { background: #2e7d32; color: white; }
        .btn-secondary { background: #ff9800; color: white; }
        .btn-outline { border: 2px solid white; color: white; background: transparent; }
        .counter-section { background: white; border-radius: 30px; padding: 40px; margin: -50px auto 0; position: relative; z-index: 10; max-width: 90%; box-shadow: 0 10px 30px rgba(0,0,0,0.1); text-align: center; }
        .counter-number { font-size: 3.5rem; font-weight: bold; color: #2e7d32; }
        .counter-label { font-size: 1rem; color: #666; }
        .section { padding: 80px 0; }
        .section-title { text-align: center; font-size: 2rem; margin-bottom: 50px; color: #1b5e20; }
        .cards { display: flex; flex-wrap: wrap; gap: 30px; justify-content: center; }
        .card { background: white; border-radius: 20px; padding: 30px; flex: 1; min-width: 280px; max-width: 350px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s; text-align: center; }
        .card:hover { transform: translateY(-10px); }
        .card h3 { font-size: 1.8rem; margin-bottom: 15px; }
        .price { font-size: 2.5rem; color: #2e7d32; font-weight: bold; margin: 20px 0; }
        .price span { font-size: 1rem; color: #666; }
        .card ul { list-style: none; text-align: left; margin: 20px 0; }
        .card li { padding: 8px 0; display: flex; align-items: center; gap: 10px; }
        .card li::before { content: "✓"; color: #2e7d32; font-weight: bold; font-size: 1.2rem; }
        .premium { background: linear-gradient(135deg, #fff8e1, #fff3e0); border: 2px solid #ff9800; }
        .vip { background: linear-gradient(135deg, #f3e5f5, #ede7f6); border: 2px solid #9c27b0; }
        .features-grid { display: flex; flex-wrap: wrap; gap: 30px; justify-content: center; }
        .feature { flex: 1; min-width: 250px; text-align: center; padding: 20px; background: white; border-radius: 20px; transition: transform 0.3s; }
        .feature:hover { transform: translateY(-5px); }
        .feature-icon { font-size: 3rem; margin-bottom: 15px; }
        .testimonials { background: #e8f5e9; border-radius: 30px; padding: 40px 20px; }
        .carousel { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 30px; padding: 20px; scroll-behavior: smooth; }
        .carousel::-webkit-scrollbar { height: 8px; }
        .carousel::-webkit-scrollbar-track { background: #c8e6c9; border-radius: 10px; }
        .carousel::-webkit-scrollbar-thumb { background: #2e7d32; border-radius: 10px; }
        .testimonial-card { min-width: 300px; flex: 1; scroll-snap-align: start; background: white; border-radius: 20px; padding: 30px; text-align: center; box-shadow: 0 5px 20px rgba(0,0,0,0.1); }
        .testimonial-img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin-bottom: 15px; border: 3px solid #2e7d32; }
        .testimonial-name { font-weight: bold; color: #2e7d32; margin: 10px 0; }
        .testimonial-text { font-style: italic; color: #555; }
        .stars { color: #ff9800; margin: 10px 0; }
        .faq-grid { display: flex; flex-direction: column; gap: 20px; max-width: 800px; margin: 0 auto; }
        .faq-item { background: white; border-radius: 15px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
        .faq-question { padding: 20px; font-weight: bold; cursor: pointer; display: flex; justify-content: space-between; align-items: center; background: #f5f5f5; }
        .faq-question:hover { background: #e8f5e9; }
        .faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
        .faq-item.active .faq-answer { padding: 20px; max-height: 200px; }
        .contact-form { background: white; border-radius: 30px; padding: 40px; max-width: 600px; margin: 0 auto; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; margin-bottom: 8px; font-weight: bold; }
        .form-group input, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 10px; font-family: inherit; }
        .form-group input:focus, .form-group textarea:focus { outline: none; border-color: #2e7d32; }
        .success-message { background: #4caf50; color: white; padding: 10px; border-radius: 10px; text-align: center; margin-top: 15px; display: none; }
        .cta { background: #2e7d32; color: white; text-align: center; border-radius: 30px; padding: 60px 20px; margin: 40px 0; }
        .cta h2 { font-size: 2rem; margin-bottom: 20px; }
        .floating-download { position: fixed; bottom: 20px; right: 20px; background: #ff9800; color: white; padding: 15px 25px; border-radius: 50px; text-decoration: none; font-weight: bold; box-shadow: 0 4px 15px rgba(0,0,0,0.3); z-index: 1000; display: flex; align-items: center; gap: 10px; animation: bounce 1s infinite; }
        @keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
        .floating-download:hover { transform: scale(1.05); }
        footer { background: #1b5e20; color: white; text-align: center; padding: 30px; margin-top: 40px; }
        footer a { color: white; }
        @media (max-width: 768px) { .nav-links { display: none; } .hero-content h1 { font-size: 1.8rem; } .section { padding: 40px 0; } .btn-group { justify-content: center; } .counter-number { font-size: 2rem; } .floating-download { padding: 10px 18px; font-size: 0.9rem; } }
        .menu-icon { display: none; font-size: 1.8rem; cursor: pointer; }
        @media (max-width: 768px) { .menu-icon { display: block; } .nav-links.active { display: flex; flex-direction: column; width: 100%; background: #2e7d32; padding: 20px; margin-top: 15px; gap: 15px; } }
        /* Modal QR */
        .modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); z-index: 2000; justify-content: center; align-items: center; }
        .modal-content { background: white; padding: 30px; border-radius: 20px; text-align: center; max-width: 350px; }
        .close-modal { margin-top: 15px; background: #2e7d32; color: white; border: none; padding: 8px 20px; border-radius: 20px; cursor: pointer; }