        /* ===== CSS RESET & VARIABLES ===== */
        :root {
            --primary: #1a365d;
            --primary-light: #2563eb;
            --accent: #f59e0b;
            --accent-hover: #fbbf24;
            --success: #059669;
            --dark: #0f172a;
            --gray-50: #f8fafc;
            --gray-100: #f1f5f9;
            --gray-200: #e2e8f0;
            --gray-300: #cbd5e1;
            --gray-400: #94a3b8;
            --gray-500: #64748b;
            --gray-600: #475569;
            --gray-700: #334155;
            --gray-800: #1e293b;
            --white: #ffffff;
            --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
            --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
            --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
            --radius: 16px;
            --radius-sm: 10px;
            --radius-full: 9999px;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        html { scroll-behavior: smooth; }
        
        body {
            font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
            background: var(--gray-50);
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; display: block; }
        button { cursor: pointer; font-family: inherit; }

        .container { max-width: 1320px; margin: 0 auto; padding: 0 20px; }

        /* ===== TOPBAR ===== */
        .topbar {
            background: var(--primary);
            color: var(--white);
            padding: 8px 0;
            font-size: 13px;
            text-align: center;
        }
        .topbar-inner {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .topbar a {
            color: var(--accent);
            font-weight: 600;
        }

        /* ===== NAVBAR ===== */
        .navbar {
            background: var(--white);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow-md);
        }
        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .nav-logo .logo-icon {
            width: 42px;
            height: 42px;
            background: var(--accent);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 22px;
            color: var(--primary);
        }
        .nav-logo .logo-text {
            font-size: 24px;
            font-weight: 800;
            color: var(--primary);
        }
        .nav-logo .logo-text span { color: var(--accent); }
        
        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
            list-style: none;
        }
        .nav-links a {
            font-size: 14px;
            font-weight: 600;
            color: var(--gray-700);
            transition: 0.2s;
        }
        .nav-links a:hover { color: var(--primary-light); }
        
        .nav-cta {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .nav-cta .btn-wa {
            background: #25D366;
            color: white;
            padding: 10px 20px;
            border-radius: var(--radius-full);
            font-weight: 700;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 6px;
            border: none;
            transition: 0.2s;
        }
        .nav-cta .btn-wa:hover { background: #1da851; transform: scale(1.02); }
        
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            padding: 5px;
        }
        .hamburger span {
            width: 26px;
            height: 3px;
            background: var(--dark);
            border-radius: 2px;
            transition: 0.3s;
        }

        /* ===== HERO ===== */
        .hero {
            background: linear-gradient(135deg, var(--primary) 0%, #1e40af 50%, #1e3a8a 100%);
            padding: 80px 0 100px;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%);
            border-radius: 50%;
        }
        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(37,99,235,0.2) 0%, transparent 70%);
            border-radius: 50%;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.2);
            padding: 8px 20px;
            border-radius: var(--radius-full);
            font-size: 14px;
            font-weight: 600;
            color: var(--accent);
            margin-bottom: 24px;
            backdrop-filter: blur(10px);
        }
        .hero h1 {
            font-size: clamp(32px, 5vw, 56px);
            font-weight: 900;
            color: var(--white);
            line-height: 1.15;
            margin-bottom: 20px;
        }
        .hero h1 .highlight { color: var(--accent); }
        .hero p {
            font-size: clamp(16px, 2vw, 20px);
            color: rgba(255,255,255,0.85);
            max-width: 650px;
            margin: 0 auto 36px;
            line-height: 1.7;
        }
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }
        .btn-primary {
            background: var(--accent);
            color: var(--primary);
            padding: 16px 36px;
            border-radius: var(--radius-full);
            font-weight: 700;
            font-size: 16px;
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: 0.3s;
            box-shadow: 0 4px 20px rgba(245,158,11,0.4);
        }
        .btn-primary:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(245,158,11,0.5);
        }
        .btn-secondary {
            background: rgba(255,255,255,0.1);
            color: var(--white);
            padding: 16px 36px;
            border-radius: var(--radius-full);
            font-weight: 700;
            font-size: 16px;
            border: 2px solid rgba(255,255,255,0.3);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: 0.3s;
        }
        .btn-secondary:hover {
            background: rgba(255,255,255,0.2);
            border-color: var(--white);
        }
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 48px;
            margin-top: 50px;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.15);
        }
        .hero-stat {
            text-align: center;
        }
        .hero-stat .number {
            font-size: 36px;
            font-weight: 900;
            color: var(--accent);
        }
        .hero-stat .label {
            font-size: 14px;
            color: rgba(255,255,255,0.7);
            margin-top: 4px;
        }

        /* ===== TRUST BAR ===== */
        .trust-bar {
            background: var(--white);
            padding: 24px 0;
            border-bottom: 1px solid var(--gray-200);
        }
        .trust-bar .container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }
        .trust-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 600;
            color: var(--gray-600);
        }
        .trust-item svg { fill: var(--accent); }

        /* ===== FEATURES SECTION ===== */
        .features {
            padding: 80px 0;
            background: var(--white);
        }
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        .section-header .tag {
            display: inline-block;
            background: #eef2ff;
            color: var(--primary-light);
            padding: 6px 18px;
            border-radius: var(--radius-full);
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }
        .section-header h2 {
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 12px;
        }
        .section-header p {
            font-size: 18px;
            color: var(--gray-500);
            max-width: 600px;
            margin: 0 auto;
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }
        .feature-card {
            background: var(--gray-50);
            border: 1px solid var(--gray-200);
            border-radius: var(--radius);
            padding: 32px 28px;
            transition: 0.3s;
        }
        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-xl);
            border-color: var(--primary-light);
        }
        .feature-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
        }
        .feature-icon svg { width: 28px; height: 28px; fill: white; }
        .feature-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 8px;
        }
        .feature-card p {
            font-size: 14px;
            color: var(--gray-600);
            line-height: 1.6;
        }

        /* ===== PRODUCTS SECTION ===== */
        .products {
            padding: 80px 0;
            background: var(--gray-50);
        }
        .search-bar {
            max-width: 500px;
            margin: 0 auto 30px;
            position: relative;
        }
        .search-bar input {
            width: 100%;
            padding: 16px 20px 16px 50px;
            border: 2px solid var(--gray-200);
            border-radius: var(--radius-full);
            font-size: 16px;
            background: var(--white);
            transition: 0.3s;
            font-family: inherit;
        }
        .search-bar input:focus {
            outline: none;
            border-color: var(--primary-light);
            box-shadow: 0 0 0 4px rgba(37,99,235,0.1);
        }
        .search-bar svg {
            position: absolute;
            left: 18px;
            top: 50%;
            transform: translateY(-50%);
            fill: var(--gray-400);
            width: 20px;
            height: 20px;
        }
        .result-info {
            text-align: center;
            margin-bottom: 24px;
            font-size: 14px;
            color: var(--gray-500);
        }
        .result-info strong { color: var(--dark); }

        .category-tabs {
            display: flex;
            justify-content: center;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
        .cat-tab {
            padding: 8px 18px;
            border-radius: var(--radius-full);
            font-size: 13px;
            font-weight: 600;
            background: var(--white);
            border: 2px solid var(--gray-200);
            color: var(--gray-600);
            transition: 0.2s;
            cursor: pointer;
        }
        .cat-tab:hover, .cat-tab.active {
            background: var(--primary);
            border-color: var(--primary);
            color: var(--white);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 18px;
        }
        .product-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 22px 16px 18px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--gray-100);
            transition: 0.25s;
            cursor: pointer;
            position: relative;
        }
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-light);
        }
        .product-card .p-icon {
            width: 48px;
            height: 48px;
            padding: 10px;
            border-radius: 12px;
            margin: 0 auto 12px;
        }
        .product-card .p-icon svg { width: 100%; height: 100%; fill: white; }
        .product-card h3 {
            font-size: 13px;
            font-weight: 600;
            color: var(--dark);
            line-height: 1.4;
            margin-bottom: 6px;
        }
        .product-card .p-cat {
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            background: var(--gray-100);
            color: var(--gray-500);
            padding: 3px 12px;
            border-radius: var(--radius-full);
            display: inline-block;
        }
        .product-card .p-price {
            font-size: 12px;
            font-weight: 700;
            color: var(--success);
            margin-top: 8px;
        }
        .product-card .p-hint {
            font-size: 10px;
            color: var(--gray-400);
            margin-top: 8px;
            opacity: 0.7;
        }
        .product-card .p-id {
            position: absolute;
            top: 8px;
            right: 12px;
            font-size: 10px;
            font-weight: 700;
            color: var(--gray-300);
        }

        /* ===== PRICING SECTION ===== */
        .pricing {
            padding: 80px 0;
            background: var(--white);
        }
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            max-width: 1000px;
            margin: 0 auto;
        }
        .pricing-card {
            background: var(--gray-50);
            border: 2px solid var(--gray-200);
            border-radius: var(--radius);
            padding: 36px 28px;
            text-align: center;
            transition: 0.3s;
            position: relative;
        }
        .pricing-card.featured {
            border-color: var(--accent);
            background: linear-gradient(135deg, #fffbeb, var(--white));
        }
        .pricing-card.featured::before {
            content: 'MOST POPULAR';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent);
            color: var(--primary);
            padding: 4px 16px;
            border-radius: var(--radius-full);
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 1px;
        }
        .pricing-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 8px;
        }
        .pricing-card .price {
            font-size: 42px;
            font-weight: 900;
            color: var(--primary);
            margin: 16px 0;
        }
        .pricing-card .price small {
            font-size: 16px;
            font-weight: 500;
            color: var(--gray-500);
        }
        .pricing-card .setup-fee {
            font-size: 14px;
            color: var(--gray-500);
            margin-bottom: 20px;
        }
        .pricing-card ul {
            list-style: none;
            text-align: left;
            margin-bottom: 24px;
        }
        .pricing-card ul li {
            padding: 8px 0;
            font-size: 14px;
            color: var(--gray-700);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .pricing-card ul li svg { fill: var(--success); width: 18px; height: 18px; flex-shrink: 0; }
        .pricing-card .btn-plan {
            width: 100%;
            padding: 14px;
            border-radius: var(--radius-full);
            font-weight: 700;
            font-size: 15px;
            border: 2px solid var(--primary);
            background: transparent;
            color: var(--primary);
            transition: 0.2s;
        }
        .pricing-card .btn-plan:hover,
        .pricing-card.featured .btn-plan {
            background: var(--primary);
            color: var(--white);
        }

        /* ===== TESTIMONIALS ===== */
        .testimonials {
            padding: 80px 0;
            background: var(--gray-50);
        }
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
        }
        .testimonial-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 28px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--gray-100);
        }
        .testimonial-card .stars { color: var(--accent); font-size: 16px; margin-bottom: 12px; }
        .testimonial-card p {
            font-size: 14px;
            color: var(--gray-700);
            line-height: 1.7;
            margin-bottom: 16px;
            font-style: italic;
        }
        .testimonial-card .author {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .testimonial-card .author-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 18px;
        }
        .testimonial-card .author-info h4 {
            font-size: 14px;
            font-weight: 700;
            color: var(--dark);
        }
        .testimonial-card .author-info span {
            font-size: 12px;
            color: var(--gray-500);
        }

        /* ===== FAQ SECTION (AEO) ===== */
        .faq {
            padding: 80px 0;
            background: var(--white);
        }
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            border: 1px solid var(--gray-200);
            border-radius: var(--radius-sm);
            margin-bottom: 12px;
            overflow: hidden;
            background: var(--white);
        }
        .faq-question {
            width: 100%;
            padding: 20px 24px;
            background: none;
            border: none;
            text-align: left;
            font-size: 16px;
            font-weight: 600;
            color: var(--dark);
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: 0.2s;
        }
        .faq-question:hover { background: var(--gray-50); }
        .faq-question .arrow {
            transition: 0.3s;
            font-size: 20px;
            color: var(--gray-400);
        }
        .faq-item.open .faq-question .arrow { transform: rotate(180deg); }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        .faq-answer-inner {
            padding: 0 24px 20px;
            font-size: 14px;
            color: var(--gray-600);
            line-height: 1.7;
        }
        .faq-item.open .faq-answer { max-height: 300px; }

        /* ===== CTA BANNER ===== */
        .cta-banner {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary) 0%, #1e3a8a 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        .cta-banner .container { position: relative; z-index: 2; }
        .cta-banner h2 {
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 800;
            color: var(--white);
            margin-bottom: 16px;
        }
        .cta-banner p {
            font-size: 18px;
            color: rgba(255,255,255,0.8);
            margin-bottom: 32px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }
        .cta-phone {
            font-size: 24px;
            font-weight: 700;
            color: var(--accent);
            margin-top: 20px;
        }
        .cta-phone a { color: var(--accent); }

        /* ===== CONTACT / LEAD FORM ===== */
        .contact {
            padding: 80px 0;
            background: var(--gray-50);
        }
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
        }
        .contact-info h3 {
            font-size: 24px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 16px;
        }
        .contact-info p {
            font-size: 15px;
            color: var(--gray-600);
            margin-bottom: 24px;
            line-height: 1.7;
        }
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            margin-bottom: 20px;
        }
        .contact-item .c-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .contact-item .c-icon svg { width: 22px; height: 22px; fill: white; }
        .contact-item h4 {
            font-size: 14px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 2px;
        }
        .contact-item p {
            font-size: 14px;
            color: var(--gray-600);
            margin-bottom: 0;
        }
        .contact-form {
            background: var(--white);
            border-radius: var(--radius);
            padding: 32px;
            box-shadow: var(--shadow-md);
        }
        .contact-form h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 20px;
        }
        .form-group {
            margin-bottom: 14px;
        }
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid var(--gray-200);
            border-radius: var(--radius-sm);
            font-size: 14px;
            font-family: inherit;
            transition: 0.2s;
            background: var(--white);
        }
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-light);
            box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
        }
        .form-group textarea { resize: vertical; min-height: 80px; }
        .form-submit {
            width: 100%;
            padding: 16px;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: var(--radius-sm);
            font-weight: 700;
            font-size: 16px;
            transition: 0.2s;
        }
        .form-submit:hover { background: var(--primary-light); }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--dark);
            color: rgba(255,255,255,0.7);
            padding: 60px 0 30px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-brand .f-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 16px;
        }
        .footer-brand .f-logo-icon {
            width: 40px;
            height: 40px;
            background: var(--accent);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 20px;
            color: var(--primary);
        }
        .footer-brand .f-logo-text {
            font-size: 22px;
            font-weight: 800;
            color: var(--white);
        }
        .footer-brand .f-logo-text span { color: var(--accent); }
        .footer-brand p {
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 16px;
        }
        .footer h4 {
            font-size: 15px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 16px;
        }
        .footer ul { list-style: none; }
        .footer ul li { margin-bottom: 8px; }
        .footer ul li a {
            font-size: 14px;
            color: rgba(255,255,255,0.6);
            transition: 0.2s;
        }
        .footer ul li a:hover { color: var(--accent); }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 13px;
        }

        /* ===== WHATSAPP FLOAT ===== */
        .wa-float {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 9999;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(37,211,102,0.4);
            transition: 0.3s;
            animation: pulse-wa 2s infinite;
        }
        .wa-float:hover { transform: scale(1.1); }
        .wa-float svg { width: 32px; height: 32px; fill: white; }
        @keyframes pulse-wa {
            0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
            70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
            100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
        }

        /* ===== MODAL ===== */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(15,23,42,0.8);
            backdrop-filter: blur(6px);
            align-items: center;
            justify-content: center;
            z-index: 10000;
            padding: 20px;
        }
        .modal-overlay.active { display: flex; }
        .modal-box {
            background: var(--white);
            border-radius: 24px;
            max-width: 680px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            padding: 32px;
            position: relative;
            animation: modalIn 0.3s ease;
        }
        @keyframes modalIn {
            from { opacity: 0; transform: scale(0.95); }
            to { opacity: 1; transform: scale(1); }
        }
        .modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 36px;
            height: 36px;
            background: var(--gray-100);
            border: none;
            border-radius: 50%;
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray-500);
            transition: 0.2s;
        }
        .modal-close:hover { background: var(--gray-200); }
        .modal-header-row {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 20px;
            padding-bottom: 16px;
            border-bottom: 2px solid var(--gray-100);
        }
        .modal-header-row .m-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            padding: 12px;
            flex-shrink: 0;
        }
        .modal-header-row .m-icon svg { width: 100%; height: 100%; fill: white; }
        .modal-header-row h2 { font-size: 22px; font-weight: 700; color: var(--dark); }
        .modal-header-row .m-cat {
            font-size: 12px;
            font-weight: 700;
            background: #eef2ff;
            color: var(--primary-light);
            padding: 2px 14px;
            border-radius: var(--radius-full);
            margin-top: 4px;
            display: inline-block;
        }
        .modal-desc { font-size: 14px; color: var(--gray-600); line-height: 1.7; margin-bottom: 20px; }
        .modal-pricing {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            background: var(--gray-50);
            padding: 18px;
            border-radius: var(--radius-sm);
            margin-bottom: 20px;
        }
        .modal-pricing .mp-item { text-align: center; }
        .modal-pricing .mp-label { font-size: 11px; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.5px; }
        .modal-pricing .mp-value { font-size: 20px; font-weight: 800; color: var(--dark); margin-top: 4px; }
        .modal-pricing .mp-value.green { color: var(--success); }
        .modal-pricing .mp-value.blue { color: var(--primary-light); }
        .modal-cta-btns {
            display: flex;
            gap: 12px;
            margin-bottom: 20px;
        }
        .modal-cta-btns a {
            flex: 1;
            padding: 14px;
            border-radius: var(--radius-sm);
            font-weight: 700;
            font-size: 14px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: 0.2s;
        }
        .modal-cta-btns .btn-wa-modal {
            background: #25D366;
            color: white;
        }
        .modal-cta-btns .btn-call-modal {
            background: var(--primary);
            color: white;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 992px) {
            .nav-links { display: none; }
            .hamburger { display: flex; }
            .hero-stats { gap: 24px; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .contact-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            .hero { padding: 50px 0 70px; }
            .hero-stats { flex-direction: column; gap: 16px; }
            .hero-stat { display: flex; align-items: center; gap: 12px; }
            .hero-stat .number { font-size: 28px; }
            .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
            .product-card { padding: 16px 10px; }
            .product-card .p-icon { width: 40px; height: 40px; padding: 8px; }
            .product-card h3 { font-size: 11px; }
            .pricing-grid { grid-template-columns: 1fr; }
            .modal-pricing { grid-template-columns: 1fr; }
            .modal-cta-btns { flex-direction: column; }
            .footer-grid { grid-template-columns: 1fr; gap: 24px; }
            .topbar-inner { gap: 8px; font-size: 12px; }
        }
        @media (max-width: 480px) {
            .products-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
            .product-card h3 { font-size: 10px; }
            .product-card .p-cat { font-size: 8px; padding: 2px 8px; }
            .hero h1 { font-size: 28px; }
            .btn-primary, .btn-secondary { padding: 14px 24px; font-size: 14px; }
        }

        /* Mobile Nav */
        .mobile-nav {
            display: none;
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: var(--white);
            z-index: 9998;
            padding: 80px 24px 24px;
            overflow-y: auto;
        }
        .mobile-nav.active { display: block; }
        .mobile-nav a {
            display: block;
            padding: 14px 0;
            font-size: 18px;
            font-weight: 600;
            color: var(--dark);
            border-bottom: 1px solid var(--gray-100);
        }
        .mobile-nav .close-nav {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: var(--gray-100);
            border: none;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
        }
