
        /* ========== ENHANCED HERO SECTION ========== */
        .ecommerce-hero {
            position: relative;
            padding: 8rem 0 6rem;
            background: linear-gradient(135deg, var(--primary-blue-50) 0%, var(--white) 100%);
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        /* Hero Background Elements */
        .hero-bg-pattern {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(13, 148, 136, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.03) 0%, transparent 30%);
            z-index: 1;
        }

        .floating-shape {
            position: absolute;
            border-radius: 50%;
            background: var(--gradient-primary);
            opacity: 0.1;
            filter: blur(40px);
            animation: float 20s ease-in-out infinite;
            z-index: 1;
        }

        .shape-1 {
            width: 400px;
            height: 400px;
            top: -200px;
            right: -200px;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 300px;
            height: 300px;
            bottom: -150px;
            left: -150px;
            background: var(--gradient-accent);
            animation-delay: 5s;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(20px, 20px) rotate(90deg); }
            50% { transform: translate(0, 40px) rotate(180deg); }
            75% { transform: translate(-20px, 20px) rotate(270deg); }
        }

        .hero-container {
            position: relative;
            z-index: 2;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        /* Hero Content */
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: var(--secondary-green-50);
            color: var(--secondary-green);
            border-radius: var(--radius-full);
            font-weight: 600;
            font-size: 0.875rem;
            margin-bottom: 1.5rem;
            animation: slideInLeft 0.6s ease-out;
            position: relative;
            overflow: hidden;
        }

        .hero-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.7s ease;
        }

        .hero-badge:hover::before {
            left: 100%;
        }

        .hero-badge .dot {
            width: 8px;
            height: 8px;
            background: var(--secondary-green);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { 
                opacity: 1; 
                transform: scale(1);
            }
            50% { 
                opacity: 0.5; 
                transform: scale(1.2);
            }
        }

        .hero-title {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            animation: slideInLeft 0.8s ease-out 0.2s both;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-title .highlight {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            display: inline-block;
        }

        .hero-title .highlight::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background: linear-gradient(90deg, var(--accent-teal-light), var(--primary-blue-light));
            opacity: 0.3;
            border-radius: 4px;
            z-index: -1;
        }

        .hero-description {
            font-size: 1.25rem;
            color: var(--neutral-600);
            margin-bottom: 2rem;
            animation: slideInLeft 0.8s ease-out 0.4s both;
            padding-left: 1.5rem;
            border-left: 3px solid var(--primary-blue);
        }

        .hero-description strong {
            color: var(--neutral-900);
            font-weight: 700;
        }

        /* Hero Features */
        .hero-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-bottom: 2.5rem;
            animation: slideInLeft 0.8s ease-out 0.6s both;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border-radius: var(--radius-lg);
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: var(--shadow-sm);
            transition: all var(--transition-base);
            position: relative;
            overflow: hidden;
        }

        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-blue-light);
        }

        .feature-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity var(--transition-base);
        }

        .feature-item:hover::before {
            opacity: 1;
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            border-radius: var(--radius-md);
            background: var(--primary-blue-50);
            color: var(--primary-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            flex-shrink: 0;
            transition: all var(--transition-base);
        }

        .feature-item:hover .feature-icon {
            background: var(--gradient-primary);
            color: var(--white);
            transform: rotate(10deg) scale(1.1);
        }

        .feature-text {
            font-weight: 600;
            color: var(--neutral-800);
            font-size: 0.95rem;
        }

        /* Hero Actions */
        .hero-actions {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            animation: slideInLeft 0.8s ease-out 0.8s both;
        }

        .btn {
            padding: 1rem 2rem;
            border-radius: var(--radius-full);
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all var(--transition-base);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.7s ease;
            z-index: -1;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: var(--white);
            box-shadow: var(--shadow-md);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .btn-outline {
            background: transparent;
            color: var(--primary-blue);
            border: 2px solid var(--primary-blue);
        }

        .btn-outline:hover {
            background: var(--primary-blue-50);
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

        /* Stats Card */
        .hero-stats {
            animation: slideInRight 0.8s ease-out 0.4s both;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .stats-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-radius: var(--radius-xl);
            padding: 2.5rem;
            box-shadow: var(--shadow-xl);
            border: 1px solid rgba(255, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
        }

        .stats-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-primary);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .stat-item {
            text-align: center;
            padding: 1.5rem;
            border-radius: var(--radius-lg);
            background: var(--primary-blue-50);
            transition: all var(--transition-base);
            border: 1px solid transparent;
        }

        .stat-item:hover {
            transform: translateY(-5px);
            background: var(--white);
            border-color: var(--primary-blue-light);
            box-shadow: var(--shadow-md);
        }

        .stat-value {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
            line-height: 1;
            position: relative;
            display: inline-block;
        }

        .stat-value::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 3px;
            background: var(--gradient-primary);
            border-radius: var(--radius-full);
        }

        .stat-label {
            font-size: 0.875rem;
            color: var(--neutral-600);
            font-weight: 500;
        }

        .guarantee-badge {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            padding: 1rem;
            background: var(--secondary-green-50);
            border-radius: var(--radius-lg);
            margin-top: 2rem;
            border: 1px solid var(--secondary-green-light);
            position: relative;
            overflow: hidden;
        }

        .guarantee-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.7s ease;
        }

        .guarantee-badge:hover::before {
            left: 100%;
        }

        .guarantee-badge i {
            color: var(--secondary-green);
            font-size: 1.25rem;
        }

        .guarantee-badge span {
            font-weight: 600;
            color: var(--secondary-green);
            font-size: 0.95rem;
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0) translateX(-50%);
            }
            40% {
                transform: translateY(-20px) translateX(-50%);
            }
            60% {
                transform: translateY(-10px) translateX(-50%);
            }
        }

        .scroll-indicator i {
            font-size: 1.5rem;
            color: var(--primary-blue);
            background: rgba(255, 255, 255, 0.8);
            padding: 0.75rem;
            border-radius: 50%;
            box-shadow: var(--shadow-md);
            cursor: pointer;
        }

        /* ========== TRUST BADGES SECTION ========== */
        .trust-badges {
            padding: 3rem 0;
            background: var(--white);
            border-bottom: 1px solid var(--neutral-100);
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: var(--neutral-50);
            border-radius: var(--radius-lg);
            transition: all var(--transition-base);
        }

        .trust-item:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
            background: var(--white);
        }

        .trust-icon {
            width: 48px;
            height: 48px;
            border-radius: var(--radius-md);
            background: var(--primary-blue-50);
            color: var(--primary-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .trust-text {
            display: flex;
            flex-direction: column;
        }

        .trust-text strong {
            font-size: 0.95rem;
            color: var(--neutral-900);
            margin-bottom: 0.25rem;
        }

        .trust-text span {
            font-size: 0.875rem;
            color: var(--neutral-500);
        }

        /* ========== WHY ECOMMERCE MATTERS ========== */
        .why-matters {
            text-align: center;
        }

        .section-header {
            max-width: 800px;
            margin: 0 auto 4rem;
        }

        .section-subtitle {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: var(--primary-blue-50);
            color: var(--primary-blue);
            border-radius: var(--radius-full);
            font-weight: 600;
            font-size: 0.875rem;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .section-description {
            font-size: 1.125rem;
            color: var(--neutral-600);
            line-height: 1.7;
        }

        .stats-highlight {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .stat-highlight {
            padding: 2rem;
            background: var(--white);
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--neutral-200);
            transition: all var(--transition-base);
        }

        .stat-highlight:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-xl);
            border-color: var(--primary-blue-light);
        }

        .stat-highlight-value {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
            line-height: 1;
        }

        .stat-highlight-label {
            font-size: 1rem;
            color: var(--neutral-700);
            font-weight: 600;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            text-align: left;
        }

        .benefit-card {
            padding: 2.5rem;
            background: var(--white);
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-md);
            border: 1px solid var(--neutral-200);
            transition: all var(--transition-base);
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-xl);
            border-color: var(--primary-blue-light);
        }

        .benefit-icon {
            width: 64px;
            height: 64px;
            border-radius: var(--radius-lg);
            background: var(--primary-blue-50);
            color: var(--primary-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .benefit-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .benefit-description {
            color: var(--neutral-600);
            line-height: 1.7;
        }

        /* ========== SERVICES SECTION ========== */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: var(--white);
            border-radius: var(--radius-xl);
            padding: 2.5rem;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--neutral-200);
            transition: all var(--transition-base);
            position: relative;
            overflow: hidden;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-xl);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-primary);
        }

        .service-icon {
            width: 64px;
            height: 64px;
            border-radius: var(--radius-lg);
            background: var(--primary-blue-50);
            color: var(--primary-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .service-badge {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            background: var(--secondary-green-50);
            color: var(--secondary-green);
            border-radius: var(--radius-full);
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .service-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .service-features {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin: 1.5rem 0;
        }

        .service-features span {
            padding: 0.375rem 0.75rem;
            background: var(--neutral-50);
            color: var(--neutral-700);
            border-radius: var(--radius-full);
            font-size: 0.875rem;
            font-weight: 500;
        }

        /* ========== COMPLETE PACKAGE SECTION ========== */
        .package-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .package-feature {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 2rem;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--neutral-200);
            transition: all var(--transition-base);
        }

        .package-feature:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .feature-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .feature-header i {
            width: 48px;
            height: 48px;
            border-radius: var(--radius-md);
            background: var(--primary-blue-50);
            color: var(--primary-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .feature-title {
            font-size: 1.25rem;
            margin: 0;
        }

        /* ========== PROCESS SECTION ========== */
        .process-timeline {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            position: relative;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            top: 60px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--neutral-200);
            z-index: 0;
        }

        .process-step {
            text-align: center;
            position: relative;
            z-index: 1;
            padding: 0 1rem;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 1.5rem;
            position: relative;
        }

        .step-title {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
        }

        .step-duration {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            background: var(--neutral-100);
            color: var(--neutral-600);
            border-radius: var(--radius-full);
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .step-description {
            color: var(--neutral-600);
            line-height: 1.7;
        }

        /* ========== FAQ SECTION ========== */
        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 1.5rem;
        }

        .faq-item {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 1.5rem;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--neutral-200);
            cursor: pointer;
            transition: all var(--transition-base);
        }

        .faq-item:hover {
            border-color: var(--primary-blue-light);
            box-shadow: var(--shadow-lg);
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }

        .faq-question h4 {
            margin: 0;
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--neutral-900);
        }

        .faq-toggle {
            color: var(--primary-blue);
            transition: transform var(--transition-base);
            flex-shrink: 0;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-base);
            margin-top: 0;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            margin-top: 1rem;
        }

        .faq-answer p {
            color: var(--neutral-600);
            line-height: 1.7;
            margin: 0;
        }

        /* ========== CTA SECTION ========== */
        .cta-section {
            background: var(--gradient-primary);
            color: var(--white);
            border-radius: var(--radius-xl);
            padding: 5rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-title {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--white);
        }

        .cta-description {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-light {
            background: var(--white);
            color: var(--primary-blue);
            box-shadow: var(--shadow-md);
        }

        .btn-light:hover {
            background: var(--neutral-100);
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .btn-whatsapp {
            background: #25D366;
            color: var(--white);
            box-shadow: var(--shadow-md);
        }

        .btn-whatsapp:hover {
            background: #128C7E;
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        /* ========== RESPONSIVE DESIGN ========== */
        @media (max-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .hero-title {
                font-size: 3rem;
            }
            
            .trust-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .stats-highlight {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .ecommerce-hero {
                min-height: auto;
                padding: 6rem 0 4rem;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 1.5rem;
            }
            
            section {
                padding: 3rem 0;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-features {
                grid-template-columns: 1fr;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .trust-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .benefits-grid {
                grid-template-columns: 1fr;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .hero-actions {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .process-timeline::before {
                display: none;
            }
            
            .process-step {
                padding: 1.5rem;
                background: var(--white);
                border-radius: var(--radius-lg);
                box-shadow: var(--shadow-md);
                margin-bottom: 1rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .stat-highlight-value {
                font-size: 2rem;
            }
            
            .service-card,
            .benefit-card {
                padding: 2rem 1.5rem;
            }
            
            .trust-grid {
                grid-template-columns: 1fr;
            }
            
            .stats-highlight {
                grid-template-columns: 1fr;
            }
            
            .btn {
                padding: 0.875rem 1.5rem;
                width: 100%;
                justify-content: center;
            }
        }

        /* ========== ANIMATIONS ========== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .delay-1 {
            transition-delay: 0.2s;
        }

        .delay-2 {
            transition-delay: 0.4s;
        }

        .delay-3 {
            transition-delay: 0.6s;
        }