/* RESET & GLOBAL STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cyberpunk Color Palette */
    --neon-green: #00ff88;
    --electric-blue: #00bcd4;
    --cyber-purple: #9c27b0;
    --dark-bg: #0a0a0f;
    --darker-bg: #050508;
    --card-bg: rgba(15, 23, 42, 0.6);
    --border-glow: rgba(0, 255, 136, 0.3);
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-accent: #00ff88;
    --shadow-neon: 0 0 20px rgba(0, 255, 136, 0.3);
    --gradient-cyber: linear-gradient(135deg, #00ff88 0%, #00bcd4 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #1a1a2e 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'SF Pro Display', system-ui, -apple-system, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--dark-bg);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 188, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(156, 39, 176, 0.1) 0%, transparent 50%);
    background-attachment: fixed;
    overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* UTILITY CLASSES */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center { text-align: center; }
.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-accent { color: var(--text-accent); }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mt-8 { margin-top: 2rem; }

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* NAVIGATION STYLES */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.98);
    border-bottom-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary);
    text-decoration: none;
}

.nav-logo-icon {
    color: var(--neon-green);
    filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.5));
}

.nav-brand-text {
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--neon-green);
    background: rgba(0, 255, 136, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-cyber);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
}

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

.btn-login {
    background: rgba(0, 255, 136, 0.1);
    color: var(--neon-green);
    border: 1px solid rgba(0, 255, 136, 0.3);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn-login:hover {
    background: rgba(0, 255, 136, 0.2);
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    transform: translateY(-2px);
}

.btn-login svg {
    transition: transform 0.3s ease;
}

.btn-login:hover svg {
    transform: translateX(2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--neon-green);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(0, 255, 136, 0.2);
        flex-direction: column;
        gap: 0;
        padding: 2rem 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

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

    .nav-link {
        padding: 1rem 2rem;
        width: 100%;
        text-align: center;
        border-radius: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-brand-text {
        display: none;
    }
}

/* Add padding to body to account for fixed navbar */
body {
    padding-top: 80px;
}

.btn-primary {
    background: var(--gradient-cyber);
    color: #0a0a0f;
    box-shadow: var(--shadow-neon);
    border: 1px solid var(--neon-green);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
    filter: brightness(1.1);
}

.btn-primary::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.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

/* CARDS */
.card {
    background: var(--card-bg);
    border: 1px solid var(--border-glow);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-neon);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-cyber);
    opacity: 0.7;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.4);
    border-color: var(--neon-green);
}

/* BADGES */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--neon-green);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--neon-green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 0;
    position: relative;
    background: var(--gradient-dark);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(rgba(10, 10, 15, 0.7), rgba(10, 10, 15, 0.8)),
        radial-gradient(circle at 30% 20%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(0, 188, 212, 0.1) 0%, transparent 50%);
    animation: pulseGlow 4s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: var(--gradient-cyber);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* PROBLEM & SOLUTION BOXES */
.problem-box, .solution-box {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid var(--border-glow);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
    position: relative;
}

.problem-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff4444, #ff6b6b);
}

.solution-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-cyber);
}

.box-title {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.box-icon {
    margin-right: 12px;
    color: var(--neon-green);
}

/* SECTIONS */
section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
    background: var(--gradient-cyber);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-description {
    font-size: 1.25rem;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* MODULES GRID */
.modules-section {
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(10px);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.card-header {
    margin-bottom: 2rem;
}

.module-icon-container {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--neon-green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.module-icon {
    width: 32px;
    height: 32px;
    color: var(--neon-green);
}

.module-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.module-subtitle {
    font-size: 1rem;
    color: var(--text-accent);
    font-weight: 500;
}

.card-content {
    color: var(--text-secondary);
}

.feature-list {
    margin-top: 2rem;
}

.feature-list-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.check-icon {
    color: var(--neon-green);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ROI SECTION */
.roi-section {
    background: var(--darker-bg);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.stat-value {
    font-size: 4rem;
    font-weight: 800;
    color: var(--neon-green);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.stat-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.stat-sublabel {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* PRICING SECTION */
.pricing-section {
    background: rgba(5, 5, 8, 0.9);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.pricing-card {
    position: relative;
    border: 2px solid var(--border-glow);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-cyber);
    color: #0a0a0f;
    font-weight: 700;
    z-index: 10;
}

/* Mobile Pricing Badge Fix */
@media (max-width: 768px) {
    .pricing-badge {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        margin-bottom: 1rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 200px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .pricing-card {
        padding-top: 1.5rem;
    }
    
    .card-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    /* Center pricing buttons on mobile */
    .pricing-card .card-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card .w-100 {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        text-align: center;
    }
}

.pricing-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.pricing-details {
    margin-bottom: 1rem;
}

.current-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--neon-green);
}

.original-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: var(--text-secondary);
}

.pricing-savings {
    font-size: 1.1rem;
    color: var(--text-accent);
    font-weight: 600;
    margin-top: 0.5rem;
}

.pricing-monthly {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.pricing-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.feature-check {
    color: var(--neon-green);
    flex-shrink: 0;
}

.highlight-feature {
    color: var(--neon-green) !important;
    font-weight: 700;
}

.w-100 {
    width: 100%;
}

/* GUARANTEE */
.guarantee-box {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid var(--border-glow);
    border-radius: 16px;
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.guarantee-icon {
    color: var(--neon-green);
}

/* FAQ SECTION */
.faq-section {
    background: var(--dark-bg);
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-glow);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--neon-green);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    user-select: none;
}

.faq-arrow {
    transition: transform 0.3s ease;
    color: var(--neon-green);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* BENEFITS SECTION */
.benefits-section {
    background: rgba(10, 10, 15, 0.8);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-icon-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid var(--neon-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    color: var(--neon-green);
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

/* CTA SECTION */
.cta-section {
    background: var(--gradient-dark);
    text-align: center;
    padding: 10rem 0;
}

/* FOOTER */
.footer {
    background: var(--darker-bg);
    border-top: 1px solid var(--border-glow);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    color: var(--neon-green);
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

.footer-link {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
    cursor: pointer;
}

.footer-link:hover {
    color: var(--neon-green);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-glow);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--neon-green);
}

/* WHATSAPP BUTTON */
.whatsapp-button {
    position: fixed;
    bottom: 24px;
    right: 24px;
    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.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-icon {
    width: 30px;
    height: 30px;
}

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    border-top: 1px solid var(--border-glow);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-text {
    flex: 1;
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-outline {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-glow);
}

.btn-outline:hover {
    background: rgba(0, 255, 136, 0.1);
    color: var(--neon-green);
    border-color: var(--neon-green);
}

/* VIDEO CONTAINER */
.video-container {
    position: relative;
    width: 100%;
    max-width: 720px;
    margin: 2rem auto;
}

.video-container iframe {
    border-radius: 12px;
    border: 1px solid var(--border-glow);
    box-shadow: var(--shadow-neon);
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
}

/* ENHANCED RESPONSIVE DESIGN */

/* Tablet Landscape - 1024px and down */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 1.5rem;
    }
    
    .benefits-grid {
        gap: 2rem;
    }
}

/* Tablet Portrait - 768px and down */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    /* Navigation Improvements */
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-brand-text {
        display: inline-block;
        font-size: 1rem;
    }
    
    /* Hero Section Mobile Optimization */
    .hero {
        min-height: 80vh;
        padding: 2rem 0;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }
    
    /* Problem & Solution Boxes Mobile */
    .problem-box, .solution-box {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .box-title h3 {
        font-size: 1.2rem;
    }
    
    /* Section Spacing */
    section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .section-description {
        font-size: 1rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }
    
    /* Modules Grid Mobile */
    .modules-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .card-header {
        margin-bottom: 1.5rem;
    }
    
    .module-icon-container {
        width: 50px;
        height: 50px;
    }
    
    .module-icon {
        width: 28px;
        height: 28px;
    }
    
    .module-title {
        font-size: 1.3rem;
    }
    
    .module-subtitle {
        font-size: 0.9rem;
    }
    
    /* Pricing Mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-title {
        font-size: 1.5rem;
    }
    
    .current-price {
        font-size: 2.5rem;
    }
    
    .original-price {
        font-size: 1.3rem;
    }
    
    /* Benefits Mobile */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: none;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
    
    .benefit-icon-container {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }
    
    .benefit-icon {
        width: 35px;
        height: 35px;
    }
    
    .benefit-title {
        font-size: 1.3rem;
    }
    
    /* Stats Mobile */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stat-value {
        font-size: 3.5rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    /* Cookie Banner Mobile */
    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 1rem;
        gap: 1rem;
    }
    
    .cookie-buttons {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .cookie-buttons .btn {
        flex: 1;
        min-width: 120px;
    }
    
    /* Video Container Mobile */
    .video-container {
        max-width: 100%;
        margin: 1.5rem auto;
        padding: 0 1rem;
    }
    
    .video-container iframe {
        width: 100%;
        height: auto;
        min-height: 200px;
        border-radius: 8px;
    }
    
    /* FAQ Mobile */
    .faq-question {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem 1rem;
        font-size: 0.95rem;
    }
    
    /* Buttons Mobile */
    .btn {
        padding: 12px 20px;
        font-size: 14px;
        min-height: 44px; /* Touch-friendly */
    }
    
    .btn-lg {
        padding: 16px 28px;
        font-size: 16px;
        min-height: 48px;
    }
    
    /* WhatsApp Button Mobile */
    .whatsapp-button {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
}

/* Mobile Landscape - 667px and down */
@media (max-width: 667px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 1rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    section {
        padding: 3rem 0;
    }
}

/* Small Mobile - 480px and down */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    /* Navigation */
    body {
        padding-top: 70px;
    }
    
    .navbar {
        padding: 0.75rem 0;
    }
    
    .nav-container {
        padding: 0 0.75rem;
    }
    
    .nav-brand {
        font-size: 1rem;
        gap: 0.5rem;
    }
    
    .nav-logo-icon {
        width: 24px;
        height: 24px;
    }
    
    /* Hero */
    .hero {
        padding: 1.5rem 0;
        min-height: 70vh;
    }
    
    .hero-content {
        padding: 0 0.75rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    /* Buttons */
    .btn {
        padding: 10px 16px;
        font-size: 13px;
        border-radius: 6px;
    }
    
    .btn-lg {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    /* Sections */
    section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .section-description {
        font-size: 0.9rem;
        margin-bottom: 2.5rem;
    }
    
    /* Cards */
    .card {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .module-title {
        font-size: 1.1rem;
    }
    
    /* Problem/Solution Boxes */
    .problem-box, .solution-box {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .box-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .box-title h3 {
        font-size: 1rem;
    }
    
    /* Stats */
    .stat-value {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    /* Pricing */
    .current-price {
        font-size: 2rem;
    }
    
    .original-price {
        font-size: 1.1rem;
    }
    
    .pricing-title {
        font-size: 1.3rem;
    }
    
    /* Benefits */
    .benefit-item {
        padding: 1rem;
    }
    
    .benefit-icon-container {
        width: 60px;\n        height: 60px;
        margin-bottom: 1rem;
    }
    
    .benefit-icon {
        width: 30px;
        height: 30px;
    }
    
    .benefit-title {
        font-size: 1.1rem;
    }
    
    /* Footer */
    .footer {
        padding: 2rem 0 1.5rem;
    }
    
    .footer-grid {
        gap: 1.5rem;
    }
    
    .footer-title {
        font-size: 1rem;
    }
    
    .footer-logo-text {
        font-size: 1.2rem;
    }
    
    /* WhatsApp */
    .whatsapp-button {
        width: 50px;
        height: 50px;
        bottom: 16px;
        right: 16px;
    }
    
    .whatsapp-icon {
        width: 24px;
        height: 24px;
    }
    
    /* Video */
    .video-container {
        margin: 1rem auto;
    }
    
    .video-container iframe {
        min-height: 180px;
        border-radius: 6px;
    }
    
    /* FAQ */
    .faq-question {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .faq-answer {
        padding: 0 1rem 0.75rem;
        font-size: 0.85rem;
    }
    
    /* Cookie Banner */
    .cookie-banner {
        padding: 0.75rem;
    }
    
    .cookie-text {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-buttons .btn {
        min-width: 100px;
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* Extra Small Mobile - 360px and down */
@media (max-width: 360px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .btn-lg {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .current-price {
        font-size: 1.8rem;
    }
    
    .card {
        padding: 0.75rem;
    }
    
    .benefit-icon-container {
        width: 50px;
        height: 50px;
    }
    
    .benefit-icon {
        width: 25px;
        height: 25px;
    }
}

/* High DPI / Retina Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .module-icon, .benefit-icon {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero::before {
        animation: none;
    }
    
    .whatsapp-button {
        animation: none;
    }
    
    .glitch {
        animation: none;
    }
}

/* LOADING ANIMATION */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

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

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* MOBILE RESPONSIVE CTA BUTTONS */
.hero-cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-cta-button {
    width: 100%;
    max-width: 400px;
    justify-content: center;
}

.cta-button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.cta-main-button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-cta-container {
        flex-direction: row;
        justify-content: center;
    }
    
    .hero-cta-button {
        width: auto;
        max-width: none;
    }
    
    .cta-button-container {
        flex-direction: row;
        justify-content: center;
    }
    
    .cta-main-button {
        width: auto;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .hero-cta-text,
    .cta-button-text {
        font-size: 14px;
    }
    
    .hero-cta-button,
    .cta-main-button {
        padding: 14px 20px;
    }
}

/* CYBERPUNK GLITCH EFFECT */
.glitch {
    position: relative;
    color: var(--neon-green);
    font-size: 4rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    animation: glitch-skew 1s infinite linear alternate-reverse;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-anim 2s infinite linear alternate-reverse;
    color: #ff0040;
    z-index: -1;
}

.glitch::after {
    animation: glitch-anim2 1s infinite linear alternate-reverse;
    color: #00ffff;
    z-index: -2;
}

@keyframes glitch-anim {
    0% {
        clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%);
        transform: translate(-2px);
    }
    20% {
        clip-path: polygon(0 78%, 100% 78%, 100% 100%, 0 100%);
        transform: translate(-1px);
    }
    40% {
        clip-path: polygon(0 35%, 100% 35%, 100% 85%, 0 85%);
        transform: translate(1px);
    }
    60% {
        clip-path: polygon(0 2%, 100% 2%, 100% 8%, 0 8%);
        transform: translate(-1px);
    }
    100% {
        clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%);
        transform: translate(0);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip-path: polygon(0 25%, 100% 25%, 100% 30%, 0 30%);
        transform: translate(1px);
    }
    15% {
        clip-path: polygon(0 3%, 100% 3%, 100% 3%, 0 3%);
        transform: translate(-1px);
    }
    25% {
        clip-path: polygon(0 5%, 100% 5%, 100% 20%, 0 20%);
        transform: translate(1px);
    }
    100% {
        clip-path: polygon(0 25%, 100% 25%, 100% 30%, 0 30%);
        transform: translate(0);
    }
}

@keyframes glitch-skew {
    0% {
        transform: skew(0deg);
    }
    100% {
        transform: skew(2deg);
    }
}