/* ===== CSS Variables ===== */
        :root {
            --primary: #1a56db;
            --primary-dark: #1e40af;
            --primary-gradient: linear-gradient(135deg, #1a56db, #4f46e5);
            --whatsapp: #25D366;
            --yellow: #f59e0b;
            --white: #ffffff;
            --gray-50: #f9fafb;
            --gray-100: #f3f4f6;
            --gray-200: #e5e7eb;
            --gray-400: #9ca3af;
            --gray-500: #6b7280;
            --gray-600: #4b5563;
            --gray-700: #374151;
            --gray-800: #1f2937;
            --gray-900: #111827;
        }

        /* ===== Reset & Base ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--white);
            color: var(--gray-900);
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* ===== Utility Classes ===== */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .text-primary {
            color: var(--primary);
        }

        .bg-primary-light {
            background-color: #eff6ff;
        }

        .border-primary {
            border-color: var(--primary);
        }

        /* ===== Navigation ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            height: 64px;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
        }

        .navbar-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .nav-logo {
            height: 40px;
            width: auto;
        }

        .nav-logo-text {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--gray-700);
            display: none;
        }

        @media (min-width: 640px) {
            .nav-logo-text {
                display: inline;
            }
        }

        .nav-links {
            display: none;
            align-items: center;
            gap: 1.5rem;
        }

        @media (min-width: 1024px) {
            .nav-links {
                display: flex;
            }
        }

        .nav-link {
            color: var(--gray-700);
            font-weight: 500;
            transition: color 0.2s;
        }

        .nav-link:hover {
            color: var(--primary);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        /* ===== Buttons ===== */
        .btn {
            display: inline-block;
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            font-weight: 600;
            font-size: 0.875rem;
            transition: all 0.3s;
            cursor: pointer;
            border: none;
            text-align: center;
        }

        .btn-yellow {
            background: var(--yellow);
            color: var(--white);
        }

        .btn-yellow:hover {
            background: #d97706;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
        }

        .btn-green {
            background: var(--whatsapp);
            color: var(--white);
        }

        .btn-green:hover {
            background: #128C7E;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
        }

        .btn-outline-green {
            background: transparent;
            color: var(--whatsapp);
            border: 2px solid var(--whatsapp);
        }

        .btn-outline-green:hover {
            background: var(--whatsapp);
            color: var(--white);
        }

        .btn-outline-blue {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-outline-blue:hover {
            background: var(--primary);
            color: var(--white);
        }

        /* ===== Dropdown ===== */
        .dropdown {
            position: relative;
        }

        .dropdown-trigger {
            background: none;
            border: none;
            color: var(--gray-700);
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.25rem;
            font-size: 1rem;
        }

        .dropdown-trigger:hover {
            color: var(--primary);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 240px;
            background: var(--white);
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
            padding: 8px 0;
            border: 1px solid var(--gray-100);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-6px);
            transition: all 0.2s;
            z-index: 100;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            display: flex;
            align-items: center;
            padding: 10px 16px;
            transition: 0.15s;
            border-left: 3px solid transparent;
            gap: 0.75rem;
        }

        .dropdown-item:hover {
            background: var(--gray-50);
            border-left-color: var(--primary);
        }

        .dropdown-item-icon {
            width: 20px;
            color: var(--primary);
            flex-shrink: 0;
        }

        .dropdown-item-label {
            font-size: 0.875rem;
            font-weight: 500;
        }

        .dropdown-item-desc {
            font-size: 0.75rem;
            color: var(--gray-400);
        }

        .dropdown-menu-wide {
            min-width: 280px;
        }

        /* ===== Mobile Drawer ===== */
        .drawer-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(4px);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: 0.3s;
        }

        .drawer-overlay.open {
            opacity: 1;
            visibility: visible;
        }

        .mobile-drawer {
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            width: 300px;
            background: var(--white);
            transform: translateX(100%);
            transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1000;
            overflow-y: auto;
            padding: 1.25rem;
        }

        .mobile-drawer.open {
            transform: translateX(0);
        }

        .drawer-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .drawer-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--gray-500);
            cursor: pointer;
        }

        .drawer-close:hover {
            color: var(--gray-800);
        }

        .drawer-link {
            display: block;
            padding: 0.625rem 1rem;
            border-radius: 0.75rem;
            color: var(--gray-700);
            font-weight: 500;
            transition: 0.2s;
        }

        .drawer-link:hover {
            background: #eff6ff;
        }

        .drawer-link i {
            width: 1.25rem;
            margin-right: 0.75rem;
            color: var(--primary);
        }

        .drawer-divider {
            border: none;
            border-top: 1px solid var(--gray-100);
            margin: 0.75rem 0;
        }

        .drawer-accordion-toggle {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 1rem;
            border-radius: 0.75rem;
            cursor: pointer;
            transition: 0.2s;
            width: 100%;
            background: none;
            border: none;
            font-size: 1rem;
            color: var(--gray-700);
        }

        .drawer-accordion-toggle:hover {
            background: #eff6ff;
        }

        .drawer-accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .drawer-accordion-content.open {
            max-height: 900px;
        }

        .drawer-accordion-icon {
            transition: transform 0.3s;
        }

        .drawer-accordion-icon.rotated {
            transform: rotate(180deg);
        }

        .drawer-sub-link {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.625rem 1rem 0.625rem 3rem;
            border-radius: 0.75rem;
            color: var(--gray-600);
            transition: 0.2s;
        }

        .drawer-sub-link:hover {
            background: #eff6ff;
            color: var(--primary);
        }

        /* ===== Hero Section ===== */
        .hero {
            padding-top: 7rem;
            padding-bottom: 4rem;
            background: linear-gradient(to bottom right, #eff6ff, var(--white), #eef2ff);
        }

        .hero-grid {
            display: grid;
            gap: 2.5rem;
            align-items: center;
        }

        @media (min-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .hero-badge {
            display: inline-block;
            padding: 0.25rem 1rem;
            background: #dbeafe;
            color: var(--primary);
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .hero-title {
            font-size: 2.25rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.25rem;
        }

        @media (min-width: 1024px) {
            .hero-title {
                font-size: 3rem;
            }
        }

        .hero-title span {
            color: var(--primary);
        }

        .hero-desc {
            font-size: 1.125rem;
            color: var(--gray-600);
            margin-bottom: 1.75rem;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-top: 2.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--gray-200);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
        }

        .stat-label {
            font-size: 0.875rem;
            color: var(--gray-500);
        }

        .hero-image-wrapper {
            position: relative;
        }

        .hero-image-wrapper::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--primary);
            border-radius: 1rem;
            filter: blur(40px);
            opacity: 0.2;
        }

        .hero-image {
            position: relative;
            border-radius: 0.75rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            border: 4px solid var(--white);
            cursor: pointer;
            transition: opacity 0.3s;
            width: 100%;
        }

        .hero-image:hover {
            opacity: 0.9;
        }

        /* ===== Demo Banner ===== */
        .demo-banner {
            padding: 1rem 0;
            background: linear-gradient(to right, #fffbeb, #eff6ff);
            border-top: 2px solid #fcd34d;
            border-bottom: 2px solid #fcd34d;
        }

        .demo-banner-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 0.75rem;
        }

        .demo-badge-pulse {
            width: 0.75rem;
            height: 0.75rem;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--yellow), #dc2626);
            animation: pulse 2s infinite;
            display: inline-block;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        .demo-code {
            background: var(--gray-100);
            padding: 0.25rem 0.75rem;
            border-radius: 0.25rem;
            font-family: monospace;
            font-size: 0.875rem;
            color: var(--primary);
        }

        /* ===== Section Common ===== */
        .section {
            padding: 4rem 0;
        }

        .section-tag {
            display: inline-block;
            padding: 0.25rem 1rem;
            background: #dbeafe;
            color: var(--primary);
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .section-title {
            font-size: 1.875rem;
            font-weight: 700;
            margin-top: 1rem;
            margin-bottom: 0.75rem;
        }

        @media (min-width: 768px) {
            .section-title {
                font-size: 2.25rem;
            }
        }

        .section-desc {
            color: var(--gray-600);
            max-width: 42rem;
            margin: 0 auto 3rem;
        }

        /* ===== Features ===== */
        .features-grid {
            display: grid;
            gap: 1.5rem;
        }

        @media (min-width: 768px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .feature-card {
            padding: 1.5rem;
            background: var(--white);
            border-radius: 0.75rem;
            border: 1px solid var(--gray-200);
            transition: all 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 25px -12px rgba(26, 86, 219, 0.15);
            border-color: var(--primary);
        }

        .feature-icon {
            width: 3rem;
            height: 3rem;
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            font-size: 1.25rem;
        }

        .feature-icon.blue { background: #dbeafe; color: var(--primary); }
        .feature-icon.green { background: #d1fae5; color: #16a34a; }
        .feature-icon.yellow { background: #fef3c7; color: #d97706; }
        .feature-icon.red { background: #fecaca; color: #dc2626; }

        .feature-title {
            font-weight: 700;
            font-size: 1.125rem;
        }

        .feature-desc {
            font-size: 0.875rem;
            color: var(--gray-600);
            margin-top: 0.25rem;
        }

        /* ===== Showcase ===== */
        .showcase {
            background: #eff6ff;
        }

        .showcase-grid {
            display: grid;
            gap: 1.5rem;
        }

        @media (min-width: 768px) {
            .showcase-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .showcase-card {
            background: #f8fafc;
            border-radius: 1rem;
            overflow: hidden;
            border: 1px solid var(--gray-200);
            transition: 0.3s;
        }

        .showcase-card:hover {
            transform: scale(1.02);
            border-color: var(--primary);
        }

        .showcase-card img {
            width: 100%;
            height: 14rem;
            object-fit: cover;
            cursor: pointer;
        }

        .showcase-card-label {
            padding: 0.75rem;
            font-weight: 500;
            font-size: 0.875rem;
            color: var(--gray-700);
        }

        .showcase-mobile {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            max-width: 42rem;
            margin: 2.5rem auto 0;
        }

        @media (min-width: 768px) {
            .showcase-mobile {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .mobile-app-item {
            background: var(--white);
            border-radius: 0.75rem;
            padding: 0.75rem;
            box-shadow: 0 1px 2px rgba(0,0,0,0.05);
            border: 1px solid var(--gray-200);
            text-align: center;
        }

        .mobile-app-item i {
            font-size: 1.5rem;
        }

        .mobile-app-item p {
            font-size: 0.75rem;
            color: var(--gray-500);
            margin-top: 0.25rem;
        }

        /* ===== Stats Bar ===== */
        .stats-bar {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        @media (min-width: 768px) {
            .stats-bar {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .stat-item {
            padding: 1.25rem;
            background: #eff6ff;
            border-radius: 0.75rem;
            text-align: center;
        }

        /* ===== Solutions ===== */
        .solutions-grid {
            display: grid;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .solutions-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .solution-card {
            padding: 2rem;
            border-radius: 1rem;
            border: 2px solid;
            text-align: center;
        }

        .solution-card.blue { background: #eff6ff; border-color: #93c5fd; }
        .solution-card.green { background: #f0fdf4; border-color: #86efac; }
        .solution-card.yellow { background: #fffbeb; border-color: #fcd34d; }

        .solution-icon {
            width: 4rem;
            height: 4rem;
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 1.5rem;
            color: var(--white);
        }

        .solution-icon.blue { background: var(--primary); }
        .solution-icon.green { background: #16a34a; }
        .solution-icon.yellow { background: #d97706; }

        /* ===== Pricing ===== */
        .pricing {
            background: var(--gray-50);
        }

        .pricing-grid {
            display: grid;
            gap: 1.5rem;
        }

        @media (min-width: 768px) {
            .pricing-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .pricing-card {
            padding: 1.5rem;
            background: var(--white);
            border-radius: 0.75rem;
            border: 1px solid var(--gray-200);
            transition: 0.3s;
            position: relative;
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 30px -12px rgba(0,0,0,0.1);
        }

        .pricing-card.popular {
            border: 2px solid var(--yellow);
            transform: scale(1.02);
        }

        .pricing-card.popular:hover {
            transform: scale(1.04);
        }

        .pricing-badge {
            position: absolute;
            top: 0;
            right: 1rem;
            background: linear-gradient(135deg, #dc2626, var(--yellow));
            color: var(--white);
            padding: 0.125rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 700;
            transform: translateY(-0.5rem);
        }

        .pricing-name {
            font-size: 1.25rem;
            font-weight: 700;
        }

        .pricing-desc {
            font-size: 0.875rem;
            color: var(--gray-500);
        }

        .pricing-amount {
            font-size: 1.875rem;
            font-weight: 700;
            color: var(--primary);
            margin: 0.75rem 0;
        }

        .pricing-amount small {
            font-size: 0.875rem;
            font-weight: 400;
            color: var(--gray-500);
        }

        .pricing-features {
            list-style: none;
            text-align: left;
            margin: 1.25rem 0;
            font-size: 0.875rem;
        }

        .pricing-features li {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.25rem 0;
        }

        .pricing-features li i {
            color: #22c55e;
        }

        .pricing-btn {
            display: block;
            width: 100%;
            padding: 0.625rem;
            border-radius: 0.5rem;
            font-weight: 600;
            text-align: center;
            transition: 0.3s;
        }

        .pricing-btn.popular-btn {
            background: var(--yellow);
            color: var(--white);
        }

        .pricing-btn.popular-btn:hover {
            background: #d97706;
        }

        .pricing-btn.outline-btn {
            border: 2px solid var(--primary);
            color: var(--primary);
        }

        .pricing-btn.outline-btn:hover {
            background: var(--primary);
            color: var(--white);
        }

        .pricing-note {
            margin-top: 2rem;
            padding: 1rem;
            background: #eff6ff;
            border-radius: 0.75rem;
            border: 1px solid #93c5fd;
            max-width: 42rem;
            margin-left: auto;
            margin-right: auto;
        }

        .country-tags {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.25rem;
            margin-bottom: 2rem;
        }

        .country-tag {
            display: inline-block;
            padding: 0.125rem 0.625rem;
            border-radius: 9999px;
            font-size: 0.6875rem;
            color: var(--gray-600);
            background: var(--gray-100);
        }

        .country-tag.available {
            background: #dbeafe;
            color: var(--primary);
        }

        .country-tag.coming {
            background: #fef3c7;
            color: #b45309;
        }

        /* ===== CTA ===== */
        .cta {
            background: var(--gray-900);
            color: var(--white);
            padding: 4rem 0;
        }

        .cta-title {
            font-size: 1.875rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        @media (min-width: 768px) {
            .cta-title {
                font-size: 2.25rem;
            }
        }

        .cta-desc {
            color: var(--gray-300);
            margin-bottom: 1.5rem;
        }

        .cta-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }

        .btn-white-outline {
            border: 2px solid var(--white);
            color: var(--white);
        }

        .btn-white-outline:hover {
            background: var(--white);
            color: var(--gray-900);
        }

        /* ===== Footer ===== */
        .footer {
            background: var(--gray-800);
            color: var(--white);
            padding: 3rem 0 1.5rem;
        }

        .footer-grid {
            display: grid;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .footer-title {
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.25rem;
        }

        .footer-links a {
            color: var(--gray-400);
            font-size: 0.875rem;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: var(--white);
        }

        .footer-social {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .footer-social a {
            color: var(--gray-400);
            transition: color 0.2s;
        }

        .footer-social a:hover {
            color: #60a5fa;
        }

        .footer-bottom {
            border-top: 1px solid var(--gray-700);
            margin-top: 2rem;
            padding-top: 1.5rem;
            text-align: center;
            font-size: 0.875rem;
            color: var(--gray-400);
        }

        .footer-bottom a {
            color: var(--yellow);
        }

        .footer-bottom a:hover {
            text-decoration: underline;
        }

        /* ===== WhatsApp Float ===== */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 10000;
            background: var(--whatsapp);
            color: var(--white);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
            color: var(--white);
        }

        .whatsapp-tooltip {
            position: absolute;
            right: 70px;
            background: rgba(0,0,0,0.8);
            color: var(--white);
            padding: 8px 15px;
            border-radius: 8px;
            font-size: 14px;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: 0.3s;
        }

        .whatsapp-float:hover .whatsapp-tooltip {
            visibility: visible;
            opacity: 1;
        }

        /* ===== Image Zoom Modal ===== */
        .image-zoom-modal {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.9);
            z-index: 9999;
            justify-content: center;
            align-items: center;
            cursor: pointer;
        }

        .image-zoom-modal.active {
            display: flex;
        }

        .image-zoom-modal img {
            max-width: 90%;
            max-height: 90%;
            border-radius: 12px;
            box-shadow: 0 30px 80px rgba(0,0,0,0.5);
        }

        /* ===== Responsive ===== */
        @media (max-width: 640px) {
            .nav-logo {
                height: 32px;
            }
            .hero-title {
                font-size: 1.75rem;
            }
            .stat-number {
                font-size: 1.75rem;
            }
            .showcase-card img {
                height: 200px;
            }
            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }
            .pricing-card.popular {
                transform: scale(1);
            }
            .pricing-card.popular:hover {
                transform: scale(1.02);
            }
        }

        @media (max-width: 480px) {
            .hero-stats {
                grid-template-columns: 1fr 1fr 1fr;
            }
        }

        /* ===== Animations ===== */
        .animate-fade-in-up {
            animation: fadeInUp 0.6s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ===== Mobile Menu Toggle ===== */
        .mobile-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 2.25rem;
            height: 2.25rem;
            border-radius: 0.5rem;
            background: var(--gray-100);
            border: none;
            font-size: 1.25rem;
            cursor: pointer;
        }

        @media (min-width: 1024px) {
            .mobile-toggle {
                display: none;
            }
        }

        /* ===== Utility ===== */
        .text-center { text-align: center; }
        .mx-auto { margin-left: auto; margin-right: auto; }
        .hidden { display: none; }
        .block { display: block; }
        .inline-block { display: inline-block; }
        .flex { display: flex; }
        .flex-wrap { flex-wrap: wrap; }
        .items-center { align-items: center; }
        .justify-center { justify-content: center; }
        .gap-1 { gap: 0.25rem; }
        .gap-2 { gap: 0.5rem; }
        .gap-4 { gap: 1rem; }
        .gap-6 { gap: 1.5rem; }
        .gap-8 { gap: 2rem; }
        .mt-1 { margin-top: 0.25rem; }
        .mt-2 { margin-top: 0.5rem; }
        .mt-4 { margin-top: 1rem; }
        .mt-6 { margin-top: 1.5rem; }
        .mt-8 { margin-top: 2rem; }
        .mt-10 { margin-top: 2.5rem; }
        .mb-2 { margin-bottom: 0.5rem; }
        .mb-3 { margin-bottom: 0.75rem; }
        .mb-4 { margin-bottom: 1rem; }
        .mb-5 { margin-bottom: 1.25rem; }
        .mb-6 { margin-bottom: 1.5rem; }
        .mb-8 { margin-bottom: 2rem; }
        .mb-10 { margin-bottom: 2.5rem; }
        .mb-12 { margin-bottom: 3rem; }
        .py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
        .py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
        .py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
        .py-4 { padding-top: 1rem; padding-bottom: 1rem; }
        .py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
        .py-8 { padding-top: 2rem; padding-bottom: 2rem; }
        .py-12 { padding-top: 3rem; padding-bottom: 3rem; }
        .py-16 { padding-top: 4rem; padding-bottom: 4rem; }
        .px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
        .px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
        .px-4 { padding-left: 1rem; padding-right: 1rem; }
        .px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
        .px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
        .px-8 { padding-left: 2rem; padding-right: 2rem; }
        .rounded-full { border-radius: 9999px; }
        .rounded-lg { border-radius: 0.5rem; }
        .rounded-xl { border-radius: 0.75rem; }
        .rounded-2xl { border-radius: 1rem; }
        .shadow-md { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06); }
        .shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05); }
        .shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04); }
        .border { border: 1px solid var(--gray-200); }
        .border-t { border-top: 1px solid var(--gray-200); }
        .border-b { border-bottom: 1px solid var(--gray-200); }
        .border-2 { border-width: 2px; }
        .border-yellow-200 { border-color: #fcd34d; }
        .border-yellow-400 { border-color: var(--yellow); }
        .border-blue-200 { border-color: #93c5fd; }
        .border-blue-400 { border-color: #60a5fa; }
        .border-green-200 { border-color: #86efac; }
        .bg-white { background: var(--white); }
        .bg-gray-50 { background: var(--gray-50); }
        .bg-gray-100 { background: var(--gray-100); }
        .bg-gray-800 { background: var(--gray-800); }
        .bg-gray-900 { background: var(--gray-900); }
        .bg-blue-50 { background: #eff6ff; }
        .bg-blue-100 { background: #dbeafe; }
        .bg-green-50 { background: #f0fdf4; }
        .bg-yellow-50 { background: #fffbeb; }
        .bg-yellow-500 { background: var(--yellow); }
        .bg-blue-600 { background: var(--primary); }
        .bg-green-600 { background: var(--whatsapp); }
        .text-white { color: var(--white); }
        .text-gray-400 { color: var(--gray-400); }
        .text-gray-500 { color: var(--gray-500); }
        .text-gray-600 { color: var(--gray-600); }
        .text-gray-700 { color: var(--gray-700); }
        .text-gray-800 { color: var(--gray-800); }
        .text-gray-900 { color: var(--gray-900); }
        .text-blue-600 { color: var(--primary); }
        .text-blue-700 { color: var(--primary-dark); }
        .text-green-500 { color: #22c55e; }
        .text-green-600 { color: var(--whatsapp); }
        .text-yellow-600 { color: #d97706; }
        .text-yellow-400 { color: var(--yellow); }
        .font-medium { font-weight: 500; }
        .font-semibold { font-weight: 600; }
        .font-bold { font-weight: 700; }
        .font-extrabold { font-weight: 800; }
        .text-sm { font-size: 0.875rem; }
        .text-xs { font-size: 0.75rem; }
        .text-lg { font-size: 1.125rem; }
        .text-xl { font-size: 1.25rem; }
        .text-2xl { font-size: 1.5rem; }
        .text-3xl { font-size: 1.875rem; }
        .text-4xl { font-size: 2.25rem; }
        .uppercase { text-transform: uppercase; }
        .tracking-wider { letter-spacing: 0.05em; }
        .leading-tight { line-height: 1.25; }
        .max-w-2xl { max-width: 42rem; }
        .max-w-4xl { max-width: 56rem; }
        .max-w-7xl { max-width: 80rem; }
/* ===== V3 Public Pages ===== */
.page-prose{max-width:900px;margin:0 auto}.page-prose h2{font-size:1.6rem;font-weight:700;margin:0 0 .75rem}.page-prose p{color:var(--gray-600);margin:.5rem 0 1rem}.page-prose ul{color:var(--gray-600);padding-left:1.25rem}.page-prose li{margin:.45rem 0}
input:focus,textarea:focus,select:focus{outline:2px solid rgba(26,86,219,.2);border-color:#1a56db}
