﻿/* =====================================================
   EDUGENERATIVA - PREMIUM DARK MODE 10/10
   Inspiración: MoureDev.pro
   Version: 5.0 - Conversion Optimized
   ===================================================== */

/* === FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* === CSS RESET === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

/* === DESIGN TOKENS === */
:root {
    /* Backgrounds */
    --bg-body: #050505;
    --bg-card: #0f0f0f;
    --bg-card-hover: #1a1a1a;
    --bg-elevated: #18181b;
    --bg-alt: #0a0a0a;

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;

    /* Brand Colors */
    --violet: #8b5cf6;
    --violet-dark: #7c3aed;
    --cyan: #06b6d4;
    --green: #22c55e;
    --green-dark: #16a34a;
    --orange: #f97316;
    --yellow: #facc15;
    --red: #ef4444;

    /* Gradients */
    --gradient-brand: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
    --gradient-cta: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    --gradient-orange: linear-gradient(135deg, #f97316 0%, #ea580c 100%);

    /* Borders */
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-default: rgba(255, 255, 255, 0.1);
    --border-accent: rgba(139, 92, 246, 0.3);

    /* Shadows */
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-glow-violet: 0 0 60px -20px rgba(139, 92, 246, 0.4);
    --shadow-glow-green: 0 0 40px -10px rgba(34, 197, 94, 0.4);

    /* Spacing */
    --section-padding: 120px;
    --container-padding: 24px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Font */
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}

/* === BODY === */
body {
    font-family: var(--font-sans);
    background-color: var(--bg-body);
    color: var(--text-secondary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    min-height: 100vh;
    position: relative;
}

/* === ACCESSIBILITY & FOCUS STATES === */
*:focus {
    outline: none;
}

*:focus-visible {
    outline: 2px solid var(--violet);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* === ANIMATED STARS BACKGROUND (WOW FACTOR) === */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 20px 30px, rgba(139, 92, 246, 0.4), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(6, 182, 212, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(139, 92, 246, 0.3), transparent),
        radial-gradient(1px 1px at 160px 120px, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(2px 2px at 200px 50px, rgba(6, 182, 212, 0.4), transparent),
        radial-gradient(1px 1px at 250px 160px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 300px 90px, rgba(139, 92, 246, 0.3), transparent),
        radial-gradient(1px 1px at 350px 200px, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(2px 2px at 400px 130px, rgba(6, 182, 212, 0.3), transparent),
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 450px 250px, 450px 250px, 450px 250px, 450px 250px, 450px 250px,
        450px 250px, 450px 250px, 450px 250px, 450px 250px, 450px 250px,
        80px 80px, 80px 80px;
    animation: starsFloat 120s linear infinite;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
    pointer-events: none;
    z-index: -1;
}

@keyframes starsFloat {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 450px 250px;
    }
}

/* === TYPOGRAPHY === */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-primary);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    margin-bottom: 16px;
}

h3 {
    font-size: 1.125rem;
    font-weight: 700;
}

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

a {
    color: var(--cyan);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--text-primary);
}

strong,
b {
    color: var(--text-primary);
    font-weight: 700;
}

/* === TEXT UTILITIES === */
.text-gradient-cyan {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-yellow {
    background: linear-gradient(135deg, #facc15 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-orange {
    color: var(--orange);
}

.text-gradient-red {
    color: var(--red);
}

/* === HERO ENHANCED (Contraste Emocional) === */
.hero-eyebrow-emergency {
    display: inline-block;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #ef4444;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: emergencyPulse 2s ease-in-out infinite;
}

@keyframes emergencyPulse {

    0%,
    100% {
        box-shadow: 0 0 20px -8px rgba(239, 68, 68, 0.5);
    }

    50% {
        box-shadow: 0 0 30px -5px rgba(239, 68, 68, 0.7);
    }
}

/* Texto dim (pasado aburrido) */
.hero-text-dim {
    color: #A1A1AA;
    opacity: 0.85;
    font-weight: 700;
}

/* Gradiente Cyberpunk (solución brillante) */
.text-gradient-hero {
    background: linear-gradient(to right, #4ade80, #2dd4bf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.05em;
}

/* === CONTAINER === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* === SECTION SPACING === */
.section-padding {
    padding: var(--section-padding) 0;
}

.section-alt {
    background: var(--bg-elevated);
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-80 {
    margin-top: 80px;
}

.text-center {
    text-align: center;
}

/* === SECTION HEADERS === */
.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* =====================================================
   URGENCY BAR
   ===================================================== */
.urgency-bar-premium {
    background: linear-gradient(90deg, #18181b 0%, #27272a 50%, #18181b 100%);
    border-bottom: 1px solid var(--border-subtle);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.875rem;
    flex-wrap: wrap;
}

.urgency-fire {
    font-size: 1.1rem;
}

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

.urgency-link {
    color: var(--cyan) !important;
    font-weight: 600;
    text-decoration: underline;
}

/* =====================================================
   NAVIGATION
   ===================================================== */
.nav-strategic {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 16px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.nav-logo {
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

.nav-link-demo {
    color: var(--green) !important;
    font-weight: 700;
}

.btn-nav-cta {
    background: var(--gradient-cta);
    color: #000 !important;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s;
    box-shadow: var(--shadow-glow-green);
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(34, 197, 94, 0.5);
}

/* Nav Mobile */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}

.nav-mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-elevated);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--border-subtle);
}

.nav-mobile-menu.active {
    display: flex;
}

.nav-mobile-menu a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-primary) !important;
    font-weight: 500;
}

@media (max-width: 900px) {

    .nav-links,
    .btn-nav-cta {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero-section {
    padding: 80px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Orb animado para wow factor */
.hero-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: orbFloat 15s ease-in-out infinite;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 0%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: orbFloat 20s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

.hero-grid-premium {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: left;
}

/* Badge - with glow effect */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.4);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 28px;
    box-shadow: 0 0 30px -10px rgba(139, 92, 246, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {

    0%,
    100% {
        box-shadow: 0 0 30px -10px rgba(139, 92, 246, 0.5);
    }

    50% {
        box-shadow: 0 0 40px -5px rgba(139, 92, 246, 0.7);
    }
}

.badge-dot {
    width: 10px;
    height: 10px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.6);
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.3);
    }
}

/* Headline - Premium Typography (MoureDev/Apple Style) */
.hero-title {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
    max-width: 800px;
}

/* Línea 1: El Dolor (gris, peso medio) */
.line-gray {
    color: #a1a1aa;
    font-weight: 600;
    font-size: 0.9em;
}

/* Línea 2: El Éxito (Gradiente Verde → Cyan) */
.line-gradient {
    background: linear-gradient(90deg, #4ade80 0%, #22d3ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    font-weight: 800;
}

/* Desktop break visible, mobile hidden if needed */
.desktop-break {
    display: block;
}

.hero-subtitle-premium {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}

/* Hero CTAs */
.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.btn-cta-massive {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-cta);
    color: #000 !important;
    padding: 18px 32px;
    border-radius: var(--radius-md);
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: var(--shadow-glow-green);
    animation: ctaPulse 3s ease-in-out infinite;
}

@keyframes ctaPulse {

    0%,
    100% {
        box-shadow: 0 0 30px -10px rgba(34, 197, 94, 0.4);
    }

    50% {
        box-shadow: 0 0 50px -5px rgba(34, 197, 94, 0.6);
    }
}

.btn-cta-massive:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(34, 197, 94, 0.5);
    animation: none;
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid var(--border-default);
    color: var(--text-primary) !important;
    padding: 16px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-cta-secondary:hover {
    border-color: var(--violet);
    background: rgba(139, 92, 246, 0.1);
}

/* CTA Micro-Urgency (FOMO Social Proof) */
.cta-micro-urgency {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 12px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    animation: urgencyPulse 3s ease-in-out infinite;
}

.cta-micro-urgency span {
    color: var(--orange);
    font-weight: 700;
}

@keyframes urgencyPulse {

    0%,
    100% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
    }
}

/* Trust Row */
.hero-trust-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Social Proof Inline */
.social-proof-inline {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatars-stack {
    display: flex;
}

.avatar-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    border: 2px solid var(--bg-body);
    margin-left: -8px;
}

.avatar-circle:first-child {
    margin-left: 0;
}

.proof-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

#liveCounter {
    color: var(--green);
    font-weight: 700;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.video-container-premium {
    position: relative;
}

.video-label-floating {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(249, 115, 22, 0.9);
    color: #fff;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    z-index: 10;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.browser-frame {
    background: var(--bg-card);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-glow-violet), var(--shadow-card);
}

.browser-dots {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border-subtle);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red {
    background: #ff5f57;
}

.dot-yellow {
    background: #ffbd2e;
}

.dot-green {
    background: #28ca42;
}

.browser-frame video {
    width: 100%;
    display: block;
}

@media (max-width: 968px) {
    .hero-section {
        min-height: auto;
        padding: 60px 0;
    }

    .hero-grid-premium {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
        order: 2;
    }

    .hero-visual {
        order: 1;
    }

    .hero-title {
        font-size: 2.5rem;
        /* 40px */
        text-align: center;
        line-height: 1.2;
        max-width: 100%;
    }

    .line-gray {
        display: block;
        margin-bottom: 8px;
    }

    .line-gradient {
        font-size: 1em;
    }

    .hero-eyebrow-emergency {
        font-size: 0.7rem;
        padding: 6px 12px;
        margin-bottom: 16px;
    }

    .hero-subtitle-premium {
        max-width: 100%;
    }

    .hero-cta-group {
        justify-content: center;
        flex-direction: column;
    }

    .btn-cta-massive,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-trust-row {
        justify-content: center;
    }

    .social-proof-inline {
        justify-content: center;
    }

    .video-label-floating {
        font-size: 0.7rem;
        top: -35px;
    }
}

/* =====================================================
   PAIN CARDS (Bento Grid 2x2)
   ===================================================== */

/* Contenedor del Grid 2x2 */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

/* La Tarjeta Pain Point Base */
.pain-card {
    background: #121212;
    border: 1px solid #27272a;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Hover general */
.pain-card:hover {
    transform: translateY(-4px);
}

/* Variantes de color por dolor */
.pain-card-red:hover {
    border-color: #ef4444;
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.15);
}

.pain-card-orange:hover {
    border-color: #f97316;
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.15);
}

.pain-card-purple:hover {
    border-color: #8b5cf6;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.15);
}

.pain-card-gray:hover {
    border-color: #6b7280;
    box-shadow: 0 0 30px rgba(107, 114, 128, 0.15);
}

/* El Emoji grande */
.pain-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

/* Título de la tarjeta */
.pain-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Descripción corta */
.pain-desc {
    color: #a1a1aa;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.solution-statement {
    text-align: center;
    margin-top: 48px;
    padding: 32px;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-lg);
}

.solution-statement p {
    font-size: 1.2rem;
    margin: 0;
}

/* Mobile: 1 columna */
@media (max-width: 768px) {
    .pain-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .pain-card {
        padding: 1.5rem;
    }

    .pain-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .problem-grid-4 {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   COMPARISON: LOSER vs WINNER (Glow Up Effect)
   ===================================================== */

/* Contenedor Flex Asimétrico */
.comparison-wrapper {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

/* 🔴 CARTA PERDEDORA - Apagada y pequeña */
.card-loser {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #3f3f46;
    color: #71717a;
    filter: grayscale(80%);
    transform: scale(0.95);
    padding: 2rem;
    border-radius: 16px;
    max-width: 380px;
    flex: 1;
    min-width: 300px;
}

.loser-title {
    color: #71717a;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.loser-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.loser-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.9rem;
    color: #a1a1aa;
}

/* 🟢 CARTA GANADORA - ÉPICA con borde gradiente */
.card-winner {
    background: linear-gradient(145deg, #121212, #1a1a1a);
    border: 2px solid transparent;
    position: relative;
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 450px;
    flex: 1;
    min-width: 320px;
    box-shadow: 0 0 50px rgba(74, 222, 128, 0.12);
    z-index: 1;
}

/* Borde Gradiente Brillante */
.card-winner::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    padding: 2px;
    background: linear-gradient(45deg, #4ade80, #3b82f6, #a855f7);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

/* Título gradiente */
.winner-title {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(to right, #fff, #4ade80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.winner-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.winner-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: #fff;
}

.icon-x {
    color: #ef4444;
    font-weight: 700;
}

.icon-emoji {
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .comparison-wrapper {
        flex-direction: column;
    }

    .card-loser {
        transform: scale(1);
        max-width: 100%;
        order: 2;
    }

    .card-winner {
        max-width: 100%;
        order: 1;
    }
}

/* =====================================================
   BENTO GRID (11 Herramientas)
   ===================================================== */
.bento-grid-premium {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(160px, auto);
    gap: 16px;
}

.bento-card {
    background: #121212;
    border: 1px solid #27272a;
    border-radius: 16px;
    padding: 24px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.bento-card:hover {
    transform: translateY(-5px);
    border-color: #3f3f46;
}

/* ═══ MVP HERO: SIMULADOR (span 2, ROJO) ═══ */
.bento-hero {
    grid-column: span 2;
    padding: 2rem;
}

.bento-red {
    background: linear-gradient(145deg, #1a0505, #121212);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.bento-red:hover {
    border-color: #ef4444;
    box-shadow: 0 0 40px rgba(239, 68, 68, 0.2);
}

.bento-title-hero {
    font-size: 1.5rem !important;
    font-weight: 800;
    background: linear-gradient(to right, #f87171, #fca5a5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

/* ═══ MVP CARDS: FLASHCARDS (VERDE) & PODCAST (MORADO) ═══ */
.bento-mvp {
    padding: 1.5rem;
}

.bento-green {
    background: linear-gradient(145deg, #051a05, #121212);
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.bento-green:hover {
    border-color: #4ade80;
    box-shadow: 0 0 30px rgba(74, 222, 128, 0.15);
}

.bento-purple {
    background: linear-gradient(145deg, #0f0520, #121212);
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.bento-purple:hover {
    border-color: #a855f7;
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.15);
}

/* ═══ EMOJIS GRANDES ═══ */
.bento-emoji {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.bento-hero .bento-emoji {
    font-size: 3rem;
}

/* ═══ ESTILOS LEGACY (para retrocompatibilidad) ═══ */
.bento-lg {
    grid-column: span 2;
}

.bento-tall {
    grid-row: span 2;
}

.bento-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bento-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--violet);
    transition: all 0.3s ease;
}

.bento-card:hover .bento-icon svg {
    stroke: var(--cyan);
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.5));
}

.bento-card h3 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.bento-card p {
    color: #a1a1aa;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
    flex-grow: 1;
}

.bento-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
}

.tag-star {
    background: linear-gradient(90deg, #ef4444, #f97316);
    color: #fff;
}

.tag-bonus {
    background: var(--yellow);
    color: #000;
}

@media (max-width: 900px) {
    .bento-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-lg,
    .bento-tall,
    .bento-hero {
        grid-column: span 2;
    }

    .bento-emoji {
        font-size: 2rem;
    }

    .bento-title-hero {
        font-size: 1.25rem !important;
    }
}

@media (max-width: 600px) {

    /* BENTO GRID: Forzar 1 columna con Flexbox */
    .bento-grid-premium {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
    }

    .bento-card {
        padding: 20px;
        width: 100% !important;
        flex-shrink: 0 !important;
    }

    .bento-card p {
        display: block !important;
        font-size: 0.85rem;
        color: #a1a1aa;
    }

    .bento-icon {
        font-size: 1.5rem;
    }

    .bento-card h3 {
        font-size: 1rem;
    }
}

/* =====================================================
   CTA BUTTONS
   ===================================================== */
.btn-cta-green {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-cta);
    color: #000 !important;
    padding: 18px 36px;
    border-radius: var(--radius-md);
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: var(--shadow-glow-green);
    text-decoration: none;
}

.btn-cta-green:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(34, 197, 94, 0.5);
}

.cta-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 16px;
}

/* =====================================================
   CREDENTIALS
   ===================================================== */
.credentials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.credential-card {
    position: relative;
    text-align: center;
}

.credential-tape {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    background: rgba(255, 255, 200, 0.9);
    color: #333;
    padding: 4px 24px;
    font-size: 0.7rem;
    font-weight: 700;
    border: 1px solid #ccc;
    z-index: 10;
}

.credential-img {
    max-width: 320px;
    width: 100%;
    border-radius: var(--radius-md);
    border: 4px solid var(--orange);
    box-shadow: 0 15px 50px rgba(249, 115, 22, 0.35),
        0 0 0 8px rgba(249, 115, 22, 0.1);
    transform: rotate(-1deg);
    transition: all 0.3s ease;
}

.credential-card:hover .credential-img {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 20px 60px rgba(249, 115, 22, 0.4),
        0 0 0 10px rgba(249, 115, 22, 0.15);
}

.credential-text {
    margin-top: 20px;
    font-size: 1rem;
}

.certs-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.certs-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
    text-align: center;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}

.cert-badge:hover {
    transform: translateX(6px);
    border-color: rgba(255, 255, 255, 0.2);
}

.cert-gemini {
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.15) 0%, rgba(155, 114, 203, 0.15) 50%, rgba(217, 101, 112, 0.15) 100%);
    border-color: rgba(66, 133, 244, 0.4);
}

.cert-gemini:hover {
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.25) 0%, rgba(155, 114, 203, 0.25) 50%, rgba(217, 101, 112, 0.25) 100%);
    border-color: rgba(66, 133, 244, 0.6);
    box-shadow: 0 8px 32px rgba(66, 133, 244, 0.2);
}

.cert-google {
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.15) 0%, rgba(52, 168, 83, 0.15) 100%);
    border-color: rgba(66, 133, 244, 0.4);
}

.cert-google:hover {
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.25) 0%, rgba(52, 168, 83, 0.25) 100%);
    border-color: rgba(66, 133, 244, 0.6);
    box-shadow: 0 8px 32px rgba(66, 133, 244, 0.2);
}

.cert-dev {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.4);
}

.cert-dev:hover {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.6);
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.2);
}

.cert-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cert-gemini .cert-icon {
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.2) 0%, rgba(155, 114, 203, 0.2) 100%);
    border-color: rgba(66, 133, 244, 0.3);
}

.cert-google .cert-icon {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(66, 133, 244, 0.3);
}

.cert-dev .cert-icon {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.3);
}

.cert-info {
    flex: 1;
}

.cert-info strong {
    display: block;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.cert-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.cert-check {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-weight: 700;
    font-size: 0.85rem;
}

.authority-statement {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    max-width: 800px;
    margin: 48px auto 0;
    text-align: center;
}

.authority-statement p {
    font-size: 1.1rem;
    margin: 0;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .credentials-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* =====================================================
   CREATOR CARD
   ===================================================== */
.creator-card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    position: relative;
}

.creator-avatar {
    margin-top: -80px;
    margin-bottom: 20px;
}

.creator-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--orange);
    object-fit: cover;
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.4);
}

.creator-card h3 {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.creator-handle {
    color: var(--orange);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.creator-bio {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.creator-tags {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.creator-tags .tag {
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid var(--orange);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: var(--text-primary);
}

/* =====================================================
   PROCESS TIMELINE (Energía Conectada)
   ===================================================== */

/* Contenedor del Timeline */
.process-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    position: relative;
    padding: 20px 0;
}

/* Línea de energía horizontal (Desktop) */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 44px;
    left: 12%;
    right: 12%;
    height: 3px;
    background: linear-gradient(90deg, #a855f7 0%, #8b5cf6 25%, #22d3ee 75%, #4ade80 100%);
    border-radius: 2px;
    z-index: 0;
    opacity: 0.4;
}

/* Cada paso del Timeline */
.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 250px;
    z-index: 1;
}

/* Número con Glow */
.step-glow-number {
    width: 50px;
    height: 50px;
    background: #1a1a1a;
    border: 2px solid #4ade80;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: #4ade80;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.4);
    transition: all 0.3s ease;
}

.timeline-step:hover .step-glow-number {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(74, 222, 128, 0.6);
}

/* Número final con dorado */
.step-final {
    border-color: #fbbf24;
    color: #fbbf24;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
}

.timeline-step:hover .step-final {
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.6);
}

/* Contenido del paso */
.step-content {
    background: #0f0f0f;
    border: 1px solid #27272a;
    border-radius: 16px;
    padding: 24px 20px;
    transition: all 0.3s ease;
    width: 100%;
}

.timeline-step:hover .step-content {
    border-color: #4ade80;
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.1);
}

.timeline-step-final:hover .step-content {
    border-color: #fbbf24;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.1);
}

/* Emoji grande */
.step-emoji {
    font-size: 2rem;
    display: block;
    margin-bottom: 12px;
}

/* Títulos */
.step-content h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

/* Descripción */
.step-content p {
    color: #a1a1aa;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.step-content strong {
    color: #4ade80;
}

.timeline-step-final .step-content strong {
    color: #fbbf24;
}

/* ═══ MOBILE: Timeline Vertical ═══ */
@media (max-width: 900px) {
    .process-timeline {
        flex-direction: column;
        align-items: stretch;
        padding-left: 40px;
    }

    /* Línea vertical a la izquierda */
    .process-timeline::before {
        top: 30px;
        bottom: 30px;
        left: 18px;
        right: auto;
        width: 3px;
        height: auto;
        background: linear-gradient(180deg, #a855f7 0%, #4ade80 100%);
    }

    .timeline-step {
        flex-direction: row;
        text-align: left;
        max-width: 100%;
        gap: 16px;
    }

    .step-glow-number {
        position: absolute;
        left: 0;
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 0;
    }

    .step-content {
        flex: 1;
    }
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-accent);
    box-shadow: 0 20px 60px -20px rgba(139, 92, 246, 0.4);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

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

.testimonial-info span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.status-approved {
    color: var(--green) !important;
}

.testimonial-quote {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.testimonial-result {
    background: var(--bg-elevated);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.testimonial-result .score {
    color: var(--green);
}

.testimonial-stars {
    font-size: 1rem;
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   PRICING CARD (Golden Ticket)
   ===================================================== */
.scarcity-banner {
    background: linear-gradient(90deg, #dc2626, #b91c1c);
    color: #fff;
    text-align: center;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.pricing-card-golden {
    max-width: 480px;
    margin: 0 auto;
    background: radial-gradient(ellipse at top, #1e1b4b 0%, var(--bg-card) 60%);
    border: 2px solid var(--violet);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-glow-violet);
}

.pricing-badge-popular {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-brand);
    color: #fff;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
}

.anchor-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.anchor-price del {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.discount-tag {
    background: var(--red);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
}

.price-main-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 16px;
}

.price-main-display .currency {
    font-size: 2rem;
    color: var(--text-primary);
    font-weight: 700;
}

.price-main-display .amount {
    font-size: 4.5rem;
    color: var(--text-primary);
    font-weight: 900;
    line-height: 1;
}

.price-main-display .period {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.pricing-desc {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-primary);
    font-size: 0.95rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.btn-cta-golden {
    display: block;
    width: 100%;
    background: var(--gradient-cta);
    color: #000 !important;
    padding: 18px 32px;
    border-radius: var(--radius-md);
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: var(--shadow-glow-green);
}

.btn-cta-golden:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(34, 197, 94, 0.5);
}

/* Guarantee Box */
.guarantee-box-premium {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-top: 24px;
    text-align: left;
}

.shield-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.guarantee-box-premium strong {
    display: block;
    color: var(--green);
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.guarantee-box-premium span {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* Payment Methods */
.payment-methods {
    margin-top: 24px;
    text-align: center;
}

.payment-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.payment-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0.7;
    transition: all 0.2s;
    cursor: default;
}

.payment-icon:hover {
    opacity: 1;
    transform: scale(1.05);
}

.payment-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--text-secondary);
}

.payment-icon span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* =====================================================
   FAQ
   ===================================================== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-item summary {
    padding: 20px 24px;
    font-weight: 700;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item[open] summary {
    border-bottom: 1px solid var(--border-subtle);
}

.faq-item p {
    padding: 20px 24px;
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer-premium {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border-subtle);
    padding: 60px 0 40px;
    margin-top: var(--section-padding);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--cyan);
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-col p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--text-secondary) !important;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--cyan) !important;
}

.footer-guarantee {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid var(--border-accent);
    padding: 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--text-primary);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--violet);
    border-color: var(--violet);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: var(--text-secondary);
}

.footer-social a:hover svg {
    fill: #fff;
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

/* =====================================================
   CTA FINAL
   ===================================================== */
.cta-final-section {
    background: var(--bg-elevated);
    padding: 60px 0 180px;
    border-top: 1px solid var(--border-subtle);
}

.cta-final-section h2 {
    margin-bottom: 24px;
}

.btn-cta-large {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-cta);
    color: #000 !important;
    padding: 18px 36px;
    border-radius: var(--radius-md);
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: var(--shadow-glow-green);
}

.btn-cta-large:hover {
    transform: translateY(-3px);
}

/* =====================================================
   FLOATING ELEMENTS
   ===================================================== */
.whatsapp-fab {
    position: fixed;
    bottom: 70px;
    right: 24px;
    background: #25d366;
    color: #fff !important;
    padding: 14px 20px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 10000;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-fab:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* ═══ FLOATING DOCK PREMIUM (Apple Style) ═══ */
.floating-dock {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 15, 15, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.floating-dock.visible {
    opacity: 1;
    visibility: visible;
}

/* Demo: Sutil, no protagonista */
.dock-demo {
    color: #a1a1aa;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
    border-radius: 999px;
}

.dock-demo:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* Buy: El protagonista */
.dock-buy {
    background: #4ade80;
    color: #000;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(74, 222, 128, 0.35);
    transition: all 0.2s ease;
}

.dock-buy:hover {
    transform: scale(1.05);
    background: #22c55e;
    box-shadow: 0 6px 25px rgba(74, 222, 128, 0.5);
}

/* Sticky CTA Bar (Mobile) */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-accent);
    padding: 12px 20px;
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

.sticky-cta-bar.visible {
    display: flex;
}

.sticky-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sticky-emoji {
    font-size: 1.5rem;
}

.sticky-amount {
    display: block;
    color: var(--text-primary);
    font-weight: 800;
    font-size: 1.1rem;
}

.sticky-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.75rem;
}

.sticky-cta-btn {
    background: var(--gradient-cta);
    color: #000 !important;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 0.9rem;
    text-decoration: none;
}

@media (max-width: 768px) {
    .whatsapp-fab span {
        display: none;
    }

    .whatsapp-fab {
        padding: 14px;
        border-radius: 50%;
        bottom: 90px;
    }

    .floating-menu {
        bottom: 80px;
        left: 16px;
        right: 80px;
        transform: none;
    }

    .floating-menu a,
    .floating-menu button {
        flex: 1;
        text-align: center;
        padding: 10px 8px;
        font-size: 0.75rem;
    }

    .footer-premium {
        padding-bottom: 100px;
    }

    .cta-final-section {
        padding-bottom: 160px;
    }
}

/* =====================================================
   ANIMATIONS & REVEALS
   ===================================================== */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible,
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-body);
}

::-webkit-scrollbar-thumb {
    background: var(--violet);
    border-radius: 4px;
}

::selection {
    background: var(--violet);
    color: #fff;
}

/* =====================================================
   SOCIAL PROOF POPUP
   ===================================================== */
.social-proof-popup {
    position: fixed;
    bottom: 140px;
    left: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(139, 92, 246, 0.2);
    z-index: 10001;
    transform: translateX(-150%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 320px;
}

.social-proof-popup.show {
    transform: translateX(0);
    opacity: 1;
}

.popup-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.popup-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.popup-content strong {
    color: var(--text-primary);
    font-size: 0.95rem;
}

.popup-content span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.popup-time {
    color: var(--green) !important;
    font-size: 0.8rem !important;
}

.popup-close {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.popup-close:hover {
    opacity: 1;
}

/* =====================================================
   DELIVERY COUNTDOWN - URGENCY BAR
   ===================================================== */
.delivery-countdown {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.15), rgba(6, 182, 212, 0.1));
    border-top: 1px solid rgba(34, 197, 94, 0.3);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 9997;
    backdrop-filter: blur(10px);
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.4s ease;
}

.delivery-countdown.show {
    transform: translateY(0);
    opacity: 1;
}

.countdown-icon {
    font-size: 1.2rem;
    animation: pulse 2s ease-in-out infinite;
}

.countdown-text {
    font-size: 0.95rem;
    color: var(--text-primary);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* =====================================================
   TARGET AUDIENCE GRID
   ===================================================== */
.target-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.target-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.target-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-accent);
    box-shadow: 0 20px 50px -15px rgba(139, 92, 246, 0.3);
}

.target-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 16px;
}

.target-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.target-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 900px) {
    .target-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .target-card {
        padding: 24px 16px;
    }
}

@media (max-width: 600px) {
    .target-grid {
        grid-template-columns: 1fr;
    }

    .social-proof-popup {
        left: 12px;
        right: 12px;
        bottom: 140px;
        max-width: 100%;
    }

    .delivery-countdown {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}

/* ================================================
   CONVERSION OPTIMIZATION ELEMENTS
   ================================================ */

/* Testimonials Stats Bar */
.testimonials-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 24px 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-subtle);
}

/* Value Calculator in Pricing */
.value-calculator {
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: var(--radius-md);
    padding: 20px;
    margin: 24px 0;
}

.value-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.value-row:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.value-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.value-amount {
    font-weight: 700;
    color: var(--green);
    font-size: 1.1rem;
}

.value-crossed {
    color: var(--red);
    text-decoration: line-through;
    opacity: 0.7;
}

.value-savings {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed rgba(34, 197, 94, 0.3);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.value-savings strong {
    color: var(--green);
    font-weight: 700;
}

/* Mobile Adjustments for Stats */
@media (max-width: 600px) {
    .testimonials-stats {
        gap: 20px;
        padding: 20px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        flex: 1;
        min-width: 70px;
    }

    .value-calculator {
        padding: 16px;
    }

    .value-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

/* ================================================
   MICRO-OPTIMIZATIONS - CRO AUDIT FIXES
   ================================================ */

/* 1. Micro-Trust Line Below CTAs */
.cta-micro-trust {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 12px;
    margin-bottom: 4px;
    letter-spacing: 0.02em;
}

.cta-micro-trust::before {
    content: '';
}

/* ═══ GUARANTEE BOX - TRUST BADGE ═══ */
.guarantee-box {
    background: rgba(74, 222, 128, 0.05);
    border: 1px dashed rgba(74, 222, 128, 0.4);
    padding: 14px 20px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 20px;
    max-width: 480px;
}

.guarantee-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.guarantee-box p {
    color: #d1d5db;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}

.guarantee-box strong {
    color: #fff;
}

.guarantee-box b {
    color: #4ade80;
}

/* 2. Video Label More Visible */
.video-label-floating {
    background: rgba(0, 0, 0, 0.75) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 10px 18px !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: var(--radius-full);
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* 3. Larger Pricing CTA Button */
.btn-cta-golden {
    padding: 22px 52px !important;
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.03em;
    box-shadow:
        0 0 0 4px rgba(34, 197, 94, 0.15),
        0 8px 32px rgba(34, 197, 94, 0.3) !important;
}

.btn-cta-golden:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 0 0 6px rgba(34, 197, 94, 0.2),
        0 12px 40px rgba(34, 197, 94, 0.4) !important;
}

/* 4. Larger Guarantee Shield */
.guarantee-box-premium .shield-icon {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px;
    flex-shrink: 0;
}

.guarantee-box-premium {
    padding: 20px 24px !important;
    gap: 16px !important;
    border-width: 2px !important;
}

.guarantee-box-premium strong {
    font-size: 1rem !important;
    letter-spacing: 0.03em;
}

/* 5. Larger Payment Icons */
.payment-icon svg {
    width: 28px !important;
    height: 28px !important;
}

.payment-icon {
    padding: 10px 14px !important;
    gap: 8px !important;
}

.payment-icons {
    gap: 12px !important;
}

/* Mobile adjustments for micro-optimizations */
@media (max-width: 600px) {
    .cta-micro-trust {
        font-size: 0.75rem;
        text-align: center;
    }

    .btn-cta-golden {
        padding: 18px 32px !important;
        font-size: 1.1rem !important;
    }

    .guarantee-box-premium .shield-icon {
        width: 48px !important;
        height: 48px !important;
    }

    .payment-icon svg {
        width: 24px !important;
        height: 24px !important;
    }
}

/* ================================================
   PROCESS STEPS SECTION - EQUAL HEIGHT CARDS
   ================================================ */

.process-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 16px;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 200px;
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    border-color: var(--violet);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow-violet);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--gradient-brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.step-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
    flex-grow: 1;
}

.step-arrow {
    color: var(--text-muted);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    opacity: 0.5;
}

/* Mobile: Stack vertically */
@media (max-width: 900px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step-arrow {
        transform: rotate(90deg);
        justify-content: center;
        padding: 8px 0;
    }

    .step-card {
        min-height: auto;
        padding: 24px 20px;
    }
}

/* ================================================
   MOBILE FULL OPTIMIZATION - ALL SECTIONS
   Desktop remains untouched (max-width queries only)
   ================================================ */

@media (max-width: 600px) {

    /* === 1. HERO SECTION === */
    .hero-content h1 {
        font-size: 2.1rem !important;
        line-height: 1.2 !important;
        letter-spacing: -0.02em;
    }

    .hero-content .subtitle {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        margin-bottom: 20px;
    }

    .hero-badges {
        gap: 8px !important;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-badge {
        font-size: 0.8rem !important;
        padding: 8px 12px !important;
        white-space: nowrap;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 16px 24px !important;
        font-size: 1rem !important;
    }

    /* === 2. SOCIAL PROOF INLINE === */
    .social-proof-inline {
        padding: 12px 16px !important;
        gap: 12px !important;
    }

    .avatars-stack .avatar-circle {
        width: 36px !important;
        height: 36px !important;
        font-size: 0.7rem !important;
    }

    .social-proof-text {
        font-size: 0.9rem !important;
    }

    .social-proof-text strong {
        font-size: 1.1rem !important;
    }

    /* === 3. SECTION HEADERS === */
    .section-header-center h2,
    section h2 {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
    }

    .section-header-center p {
        font-size: 0.95rem !important;
    }

    /* === 4. PROBLEM CARDS (El Enemigo) === */
    .enemy-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
    }

    .enemy-card {
        padding: 16px !important;
    }

    .enemy-card .icon {
        font-size: 1.8rem !important;
        margin-bottom: 8px;
    }

    .enemy-card h3 {
        font-size: 0.9rem !important;
    }

    .enemy-card p {
        font-size: 0.8rem !important;
        display: none;
        /* Hide on mobile for cleaner look */
    }

    /* === 5. BENTO GRID === */
    .bento-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
    }

    .bento-card {
        padding: 20px 16px !important;
        min-height: 140px;
    }

    .bento-card .bento-icon {
        width: 40px !important;
        height: 40px !important;
        margin-bottom: 12px;
    }

    .bento-card .bento-icon svg {
        width: 22px !important;
        height: 22px !important;
    }

    .bento-card h3 {
        font-size: 0.95rem !important;
        margin-bottom: 6px;
    }

    .bento-card p {
        font-size: 0.8rem !important;
        line-height: 1.4;
    }

    /* Special cards span full width */
    .bento-lg,
    .bento-card:nth-child(8) {
        grid-column: span 2 !important;
    }

    /* === 6. CREATOR SECTION === */
    .creator-section {
        padding: 32px 16px !important;
    }

    .creator-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .creator-avatar {
        width: 100px !important;
        height: 100px !important;
    }

    .creator-info h3 {
        font-size: 1.2rem !important;
    }

    .creator-info p {
        font-size: 0.9rem !important;
    }

    /* === 7. TESTIMONIALS === */
    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .testimonial-card {
        padding: 20px !important;
    }

    .testimonial-avatar {
        width: 44px !important;
        height: 44px !important;
        font-size: 0.9rem !important;
    }

    .testimonial-info strong {
        font-size: 1rem !important;
    }

    .testimonial-info span {
        font-size: 0.8rem !important;
    }

    .testimonial-quote {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }

    /* === 8. STATS BAR === */
    .testimonials-stats {
        flex-wrap: wrap !important;
        gap: 16px !important;
        padding: 20px 16px !important;
    }

    .stat-item {
        flex: 1 1 40% !important;
        min-width: 80px;
    }

    .stat-number {
        font-size: 1.4rem !important;
    }

    .stat-label {
        font-size: 0.7rem !important;
    }

    .stat-divider {
        display: none !important;
    }

    /* === 9. TARGET CARDS (¿Para Quién?) === */
    .target-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
    }

    .target-card {
        padding: 20px 14px !important;
        text-align: center;
    }

    .target-card .icon {
        font-size: 2rem !important;
        margin-bottom: 10px;
    }

    .target-card h3 {
        font-size: 0.9rem !important;
    }

    .target-card p {
        font-size: 0.75rem !important;
        display: none;
        /* Cleaner on mobile */
    }

    /* === 10. CREDENTIALS === */
    .credentials-section {
        padding: 24px 16px !important;
    }

    .credential-image {
        max-width: 280px !important;
        margin: 0 auto;
    }

    .certification-badges {
        flex-direction: column;
        gap: 12px !important;
    }

    .cert-badge {
        width: 100% !important;
        padding: 16px !important;
    }

    /* === 11. PRICING SECTION === */
    .pricing-section {
        padding: 40px 16px !important;
    }

    .pricing-card {
        padding: 28px 20px !important;
        margin: 0 !important;
    }

    .pricing-badge {
        font-size: 0.75rem !important;
        padding: 6px 14px !important;
    }

    .pricing-card h3 {
        font-size: 1.3rem !important;
    }

    .price-container .price-original {
        font-size: 1.2rem !important;
    }

    .price-container .price-current {
        font-size: 3rem !important;
    }

    .price-container .price-currency {
        font-size: 1.2rem !important;
    }

    /* Value Calculator Mobile */
    .value-calculator {
        padding: 16px !important;
        margin: 16px 0 !important;
    }

    .value-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 4px !important;
    }

    .value-label {
        font-size: 0.85rem !important;
    }

    .value-amount {
        font-size: 1rem !important;
    }

    .value-savings {
        font-size: 0.9rem !important;
        padding: 10px !important;
    }

    /* CTA Button */
    .btn-cta-golden {
        width: 100% !important;
        padding: 18px 24px !important;
        font-size: 1.1rem !important;
    }

    /* Guarantee Box */
    .guarantee-box-premium {
        flex-direction: column !important;
        text-align: center !important;
        padding: 16px !important;
        gap: 12px !important;
    }

    .guarantee-box-premium .shield-icon {
        width: 48px !important;
        height: 48px !important;
    }

    /* Payment Icons */
    .payment-icons {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 8px !important;
    }

    .payment-icon {
        padding: 8px 10px !important;
    }

    .payment-icon svg {
        width: 22px !important;
        height: 22px !important;
    }

    /* === 12. FAQ SECTION === */
    .faq-item {
        padding: 16px !important;
    }

    .faq-question {
        font-size: 0.95rem !important;
    }

    .faq-answer {
        font-size: 0.85rem !important;
    }

    /* === 13. FOOTER === */
    footer {
        padding: 32px 16px 100px !important;
        /* Extra bottom for sticky CTA */
    }

    .footer-content {
        flex-direction: column !important;
        gap: 24px !important;
        text-align: center !important;
    }

    .footer-logo img {
        height: 32px !important;
    }

    .footer-links {
        flex-direction: column !important;
        gap: 12px !important;
    }

    .footer-links a {
        font-size: 0.9rem !important;
        padding: 8px 0 !important;
    }

    .footer-social {
        justify-content: center !important;
        gap: 16px !important;
    }

    /* === 14. FLOATING ELEMENTS === */
    .sticky-cta-mobile {
        padding: 12px 16px !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 999 !important;
    }

    .sticky-cta-mobile .btn {
        padding: 14px 20px !important;
        font-size: 0.95rem !important;
    }

    /* WhatsApp Button - Positioned above sticky CTA */
    .whatsapp-float,
    .wa-float,
    [class*="whatsapp"] {
        bottom: 80px !important;
        right: 16px !important;
        z-index: 998 !important;
    }

    /* Social Proof Popup */
    .social-proof-popup {
        left: 12px !important;
        right: 12px !important;
        bottom: 90px !important;
        max-width: calc(100% - 24px) !important;
        font-size: 0.85rem !important;
    }

    /* === 15. GENERAL MOBILE POLISH === */
    .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .section-padding {
        padding-top: 48px !important;
        padding-bottom: 48px !important;
    }

    /* Hide decorative elements on mobile */
    .decoration,
    .bg-decoration,
    .floating-shapes {
        display: none !important;
    }

    /* Improve tap targets */
    a,
    button,
    .btn {
        min-height: 44px;
    }

    /* Better text rendering */
    body {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
}

/* ================================================
   ADDITIONAL MOBILE POLISH - ADVANCED FIXES
   ================================================ */

@media (max-width: 600px) {

    /* === HERO VIDEO/BROWSER FRAME === */
    .browser-frame,
    .video-container,
    .hero-visual {
        width: 100% !important;
        max-width: 100% !important;
        margin: 20px 0 !important;
        border-radius: 12px !important;
    }

    .browser-frame {
        transform: none !important;
    }

    .browser-header {
        padding: 8px 12px !important;
    }

    .browser-dots span {
        width: 8px !important;
        height: 8px !important;
    }

    .video-label-floating {
        font-size: 0.75rem !important;
        padding: 6px 12px !important;
        top: auto !important;
        bottom: 12px !important;
        left: 12px !important;
    }

    /* === NAVBAR MOBILE === */
    .navbar,
    nav {
        padding: 12px 16px !important;
    }

    .nav-logo img {
        height: 28px !important;
    }

    .nav-cta-mobile,
    .mobile-nav-buttons {
        gap: 8px !important;
    }

    .nav-cta-mobile .btn,
    .mobile-nav-buttons .btn {
        padding: 10px 14px !important;
        font-size: 0.85rem !important;
    }

    /* === PROCESS STEPS (Cómo Funciona) === */
    .process-steps {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .step-card {
        padding: 24px 20px !important;
        min-height: auto !important;
    }

    .step-number {
        width: 52px !important;
        height: 52px !important;
        font-size: 1.4rem !important;
        margin-bottom: 14px !important;
        background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%) !important;
        color: #ffffff !important;
        font-weight: 800 !important;
        box-shadow: 0 4px 20px rgba(139, 92, 246, 0.5) !important;
    }

    .step-card h3 {
        font-size: 1.05rem !important;
        margin-bottom: 8px !important;
        color: #ffffff !important;
    }

    .step-card p {
        font-size: 0.85rem !important;
        color: rgba(255, 255, 255, 0.7) !important;
    }

    .step-arrow {
        display: none !important;
    }

    /* === MICRO TRUST LINE === */
    .cta-micro-trust {
        font-size: 0.75rem !important;
        text-align: center;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px !important;
    }

    /* === URGENCY BAR === */
    .urgency-bar,
    .countdown-bar,
    [class*="urgency"] {
        padding: 10px 16px !important;
        font-size: 0.85rem !important;
    }

    /* === FEATURES LIST (inside pricing) === */
    .features-list,
    .pricing-features {
        gap: 10px !important;
    }

    .features-list li,
    .pricing-features li {
        font-size: 0.9rem !important;
        padding: 8px 0 !important;
    }

    .feature-check,
    .check-icon {
        width: 20px !important;
        height: 20px !important;
        font-size: 0.85rem !important;
    }

    /* === SCIENCE SECTION === */
    .science-grid,
    .la-ciencia-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .science-card {
        padding: 20px !important;
    }

    .science-card h3 {
        font-size: 1rem !important;
    }

    .science-card p {
        font-size: 0.85rem !important;
    }

    /* === BONUS SECTION === */
    .bonus-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .bonus-card {
        padding: 16px !important;
        flex-direction: row !important;
        align-items: center !important;
    }

    .bonus-icon {
        width: 48px !important;
        height: 48px !important;
        flex-shrink: 0;
    }

    .bonus-card h4 {
        font-size: 0.95rem !important;
    }

    .bonus-card p {
        font-size: 0.8rem !important;
    }

    /* === COMPARISON TABLE === */
    .comparison-table {
        font-size: 0.85rem !important;
        overflow-x: auto;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 8px !important;
    }

    /* === COUNTDOWN TIMER === */
    .countdown-container {
        gap: 8px !important;
    }

    .countdown-item {
        min-width: 50px !important;
        padding: 8px !important;
    }

    .countdown-number {
        font-size: 1.3rem !important;
    }

    .countdown-label {
        font-size: 0.65rem !important;
    }

    /* === ADDITIONAL TEXT ENHANCEMENTS === */
    .highlight-text,
    .accent-text {
        font-size: inherit !important;
    }

    /* Better list spacing */
    ul,
    ol {
        padding-left: 20px !important;
    }

    li {
        margin-bottom: 8px !important;
    }

    /* === MODAL/POPUP MOBILE === */
    .modal-content,
    .popup-content {
        width: 95% !important;
        max-width: 340px !important;
        padding: 20px !important;
        margin: 20px auto !important;
    }

    /* === TRUST BADGES === */
    .trust-badges,
    .badges-row {
        flex-wrap: wrap !important;
        gap: 8px !important;
        justify-content: center !important;
    }

    .trust-badge {
        font-size: 0.75rem !important;
        padding: 6px 10px !important;
    }

    /* === SCROLL INDICATORS === */
    .scroll-indicator {
        display: none !important;
    }

    /* === FINAL POLISH === */

    /* Ensure no horizontal overflow */
    html,
    body {
        overflow-x: hidden !important;
    }

    * {
        max-width: 100vw;
    }

    /* Better image handling */
    img {
        max-width: 100% !important;
        height: auto !important;
    }

    /* Smooth scroll for anchor links */
    html {
        scroll-padding-top: 70px;
    }

    /* Card hover effects disabled on mobile for performance */
    .card:hover,
    .bento-card:hover,
    .step-card:hover,
    .testimonial-card:hover {
        transform: none !important;
    }

    /* Reduce animations for mobile performance */
    @media (prefers-reduced-motion: reduce) {

        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }
}

/* === EXTRA SMALL DEVICES (max-width: 375px) === */
@media (max-width: 375px) {
    .hero-content h1 {
        font-size: 1.8rem !important;
    }

    section h2 {
        font-size: 1.4rem !important;
    }

    .price-container .price-current {
        font-size: 2.5rem !important;
    }

    .bento-card {
        min-height: 120px !important;
        padding: 16px 12px !important;
    }

    .bento-card h3 {
        font-size: 0.85rem !important;
    }

    .testimonial-quote {
        font-size: 0.85rem !important;
    }

    .step-number {
        width: 44px !important;
        height: 44px !important;
        font-size: 1.2rem !important;
    }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE 10/10 ULTIMATE POLISH
   Complete optimization for mobile excellence
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 600px) {

    /* ══════════ GLOBAL MOBILE RESETS ══════════ */
    html,
    body {
        overflow-x: hidden !important;
    }

    .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .section-padding {
        padding-top: 48px !important;
        padding-bottom: 48px !important;
    }

    /* ══════════ URGENCY BAR POLISH ══════════ */
    .urgency-bar-premium {
        padding: 10px 12px !important;
        font-size: 0.75rem !important;
        gap: 6px !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .urgency-fire {
        font-size: 1rem !important;
    }

    .urgency-text {
        font-size: 0.7rem !important;
        line-height: 1.3 !important;
    }

    .urgency-link {
        font-size: 0.7rem !important;
        padding: 4px 10px !important;
    }

    /* ══════════ NAVBAR MOBILE POLISH ══════════ */
    .nav-strategic {
        padding: 10px 12px !important;
        margin-top: 0 !important;
    }

    .nav-container {
        padding: 0 !important;
    }

    .nav-logo svg {
        width: 150px !important;
        height: 32px !important;
    }

    .btn-nav-cta {
        padding: 8px 14px !important;
        font-size: 0.7rem !important;
        border-radius: 8px !important;
    }

    .nav-hamburger {
        width: 36px !important;
        height: 36px !important;
    }

    .nav-hamburger span {
        width: 18px !important;
        height: 2px !important;
    }

    /* ══════════ HERO SECTION MOBILE MASTERY ══════════ */
    .hero-section {
        padding-top: 100px !important;
        padding-bottom: 32px !important;
        min-height: auto !important;
    }

    .hero-grid-premium {
        gap: 24px !important;
    }

    /* Hero Badge */
    .hero-badge {
        padding: 8px 14px !important;
        font-size: 0.72rem !important;
        margin-bottom: 16px !important;
        gap: 6px !important;
    }

    .badge-dot {
        width: 6px !important;
        height: 6px !important;
    }

    /* Hero H1 - IMPACTFUL */
    .hero-headline-massive {
        font-size: 1.85rem !important;
        line-height: 1.15 !important;
        margin-bottom: 16px !important;
        letter-spacing: -0.02em !important;
    }

    .hero-headline-massive br {
        display: inline !important;
    }

    /* Hero Subtitle */
    .hero-subtitle-premium {
        font-size: 0.95rem !important;
        line-height: 1.45 !important;
        margin-bottom: 20px !important;
        opacity: 0.9 !important;
    }

    /* Hero CTAs - FULL WIDTH STACKED */
    .hero-cta-group {
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
    }

    .btn-cta-massive {
        width: 100% !important;
        padding: 16px 20px !important;
        font-size: 0.95rem !important;
        border-radius: 12px !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .btn-cta-secondary {
        width: 100% !important;
        padding: 14px 20px !important;
        font-size: 0.9rem !important;
        border-radius: 12px !important;
        justify-content: center !important;
        text-align: center !important;
    }

    /* Micro Trust Line */
    .cta-micro-trust {
        font-size: 0.7rem !important;
        margin-top: 12px !important;
        gap: 8px !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        text-align: center !important;
        line-height: 1.5 !important;
    }

    .cta-micro-urgency {
        font-size: 0.75rem !important;
        margin-top: 8px !important;
    }

    /* Hero Trust Row */
    .hero-trust-row {
        flex-direction: column !important;
        gap: 8px !important;
        margin-top: 16px !important;
        align-items: flex-start !important;
    }

    .trust-item {
        font-size: 0.75rem !important;
        gap: 6px !important;
    }

    .trust-item svg {
        width: 14px !important;
        height: 14px !important;
    }

    /* Social Proof Inline */
    .social-proof-inline {
        margin-top: 20px !important;
        padding: 12px 14px !important;
        border-radius: 12px !important;
        gap: 10px !important;
    }

    .avatars-stack {
        gap: 0 !important;
    }

    .avatar-circle {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.6rem !important;
        margin-left: -8px !important;
    }

    .avatar-circle:first-child {
        margin-left: 0 !important;
    }

    .proof-text {
        font-size: 0.75rem !important;
    }

    /* ══════════ VIDEO/BROWSER FRAME MOBILE ══════════ */
    .hero-visual {
        width: 100% !important;
        margin-top: 16px !important;
    }

    .video-container-premium {
        width: 100% !important;
    }

    .video-label-floating {
        padding: 6px 12px !important;
        font-size: 0.7rem !important;
        gap: 6px !important;
        top: -12px !important;
    }

    .pulse-dot {
        width: 6px !important;
        height: 6px !important;
    }

    .browser-frame {
        border-radius: 12px !important;
        transform: none !important;
        width: 100% !important;
    }

    .browser-dots {
        padding: 8px 10px !important;
    }

    .browser-dots .dot {
        width: 8px !important;
        height: 8px !important;
    }

    .browser-frame video {
        border-radius: 0 0 10px 10px !important;
    }

    /* ══════════ PROBLEM CARDS MOBILE ══════════ */
    .problem-grid-4 {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
    }

    .problem-card {
        padding: 16px 12px !important;
        border-radius: 12px !important;
    }

    .problem-icon-wrapper {
        width: 36px !important;
        height: 36px !important;
        margin-bottom: 10px !important;
    }

    .problem-icon {
        width: 18px !important;
        height: 18px !important;
    }

    .problem-card h3 {
        font-size: 0.8rem !important;
        margin-bottom: 6px !important;
    }

    .problem-card p {
        font-size: 0.7rem !important;
        line-height: 1.35 !important;
    }

    .solution-statement {
        padding: 20px 16px !important;
        margin-top: 24px !important;
        border-radius: 12px !important;
    }

    .solution-statement p {
        font-size: 0.9rem !important;
        line-height: 1.45 !important;
    }

    /* ══════════ COMPARISON GRID MOBILE ══════════ */
    .comparison-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .comparison-col {
        padding: 20px 16px !important;
        border-radius: 14px !important;
    }

    .comparison-col h3 {
        font-size: 1rem !important;
        margin-bottom: 14px !important;
    }

    .comparison-col ul li {
        font-size: 0.8rem !important;
        padding: 8px 0 !important;
        gap: 10px !important;
    }

    /* ══════════ BENTO GRID 11 TOOLS MOBILE ══════════ */
    .bento-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }

    .bento-card {
        padding: 14px 12px !important;
        border-radius: 12px !important;
        min-height: 120px !important;
    }

    .bento-card .bento-icon {
        font-size: 1.6rem !important;
        margin-bottom: 8px !important;
    }

    .bento-card h3 {
        font-size: 0.75rem !important;
        line-height: 1.25 !important;
        margin-bottom: 4px !important;
    }

    .bento-card p {
        font-size: 0.65rem !important;
        line-height: 1.3 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    /* Large Bento Cards span full width */
    .bento-lg,
    .bento-card:nth-child(5),
    .bento-card:nth-child(8),
    .bento-card:nth-child(11) {
        grid-column: span 2 !important;
        min-height: 100px !important;
    }

    .bento-lg h3,
    .bento-card:nth-child(5) h3,
    .bento-card:nth-child(8) h3,
    .bento-card:nth-child(11) h3 {
        font-size: 0.85rem !important;
    }

    /* ══════════ PROCESS STEPS (CÓMO FUNCIONA) ══════════ */
    .process-steps,
    .steps-grid {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .step-card {
        padding: 20px 16px !important;
        border-radius: 14px !important;
        text-align: center !important;
    }

    .step-number {
        width: 52px !important;
        height: 52px !important;
        font-size: 1.4rem !important;
        margin: 0 auto 14px auto !important;
        background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%) !important;
        color: #ffffff !important;
        font-weight: 800 !important;
        box-shadow: 0 4px 20px rgba(139, 92, 246, 0.5) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 50% !important;
    }

    .step-card h3 {
        font-size: 1rem !important;
        margin-bottom: 8px !important;
    }

    .step-card p {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
    }

    /* Hide step arrows on mobile */
    .step-arrow,
    .steps-arrow,
    [class*="arrow"] {
        display: none !important;
    }

    /* ══════════ TESTIMONIALS SECTION MOBILE ══════════ */
    .testimonials-stats {
        flex-wrap: wrap !important;
        gap: 12px !important;
        padding: 16px !important;
        border-radius: 14px !important;
    }

    .stat-item {
        flex: 1 1 45% !important;
        min-width: 80px !important;
        text-align: center !important;
    }

    .stat-number {
        font-size: 1.5rem !important;
    }

    .stat-label {
        font-size: 0.65rem !important;
    }

    .stat-divider {
        display: none !important;
    }

    .testimonials-grid,
    .testimonials-masonry {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .testimonial-card {
        padding: 18px 16px !important;
        border-radius: 14px !important;
    }

    .testimonial-header {
        gap: 12px !important;
        margin-bottom: 12px !important;
    }

    .testimonial-avatar {
        width: 44px !important;
        height: 44px !important;
    }

    .testimonial-name {
        font-size: 0.9rem !important;
    }

    .testimonial-uni {
        font-size: 0.7rem !important;
    }

    .testimonial-quote {
        font-size: 0.82rem !important;
        line-height: 1.45 !important;
    }

    /* ══════════ TARGETS (¿PARA QUIÉN?) MOBILE ══════════ */
    .targets-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .target-card {
        padding: 18px 16px !important;
        border-radius: 14px !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 14px !important;
    }

    .target-emoji {
        font-size: 2rem !important;
        flex-shrink: 0 !important;
    }

    .target-card h3 {
        font-size: 0.9rem !important;
        margin-bottom: 4px !important;
    }

    .target-card p {
        font-size: 0.75rem !important;
        line-height: 1.35 !important;
    }

    /* ══════════ CREDENTIALS SECTION MOBILE ══════════ */
    .credentials-section,
    .creator-section {
        padding: 32px 16px !important;
    }

    .credentials-grid,
    .creator-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .credentials-image,
    .creator-image {
        width: 140px !important;
        height: 140px !important;
        margin: 0 auto 16px auto !important;
        border-radius: 16px !important;
    }

    .credentials-image img,
    .creator-image img {
        border-radius: 16px !important;
    }

    .credentials-content h3,
    .creator-content h3 {
        font-size: 1.2rem !important;
        text-align: center !important;
        margin-bottom: 12px !important;
    }

    .credentials-content p,
    .creator-content p {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        text-align: center !important;
    }

    .credentials-list {
        gap: 10px !important;
        margin-top: 16px !important;
    }

    .credentials-list li {
        font-size: 0.8rem !important;
        gap: 8px !important;
    }

    /* Certificates Horizontal Scroll */
    .certificates-row {
        display: flex !important;
        overflow-x: auto !important;
        gap: 12px !important;
        padding-bottom: 10px !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .certificates-row::-webkit-scrollbar {
        height: 4px !important;
    }

    .certificate-card,
    .certificate-badge {
        flex-shrink: 0 !important;
        width: 85% !important;
        scroll-snap-align: start !important;
    }

    /* ══════════ SCIENCE SECTION MOBILE ══════════ */
    .science-grid,
    .ciencia-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .science-card,
    .ciencia-card {
        padding: 18px 16px !important;
        border-radius: 14px !important;
    }

    .science-card h3,
    .ciencia-card h3 {
        font-size: 0.95rem !important;
    }

    .science-card p,
    .ciencia-card p {
        font-size: 0.8rem !important;
    }

    /* ══════════ BONUS CARDS MOBILE ══════════ */
    .bonus-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }

    .bonus-card {
        padding: 14px 12px !important;
        border-radius: 12px !important;
        text-align: center !important;
    }

    .bonus-icon {
        font-size: 1.8rem !important;
        margin-bottom: 8px !important;
    }

    .bonus-title {
        font-size: 0.75rem !important;
    }

    .bonus-value {
        font-size: 0.65rem !important;
    }

    /* ══════════ PRICING SECTION MOBILE - GOLDEN TICKET ══════════ */
    .pricing-section,
    #precio {
        padding: 40px 16px !important;
    }

    .pricing-card,
    .pricing-card-premium {
        padding: 28px 20px !important;
        border-radius: 20px !important;
        max-width: 100% !important;
    }

    .pricing-badge {
        font-size: 0.7rem !important;
        padding: 6px 14px !important;
    }

    .pricing-header h3 {
        font-size: 1.1rem !important;
    }

    /* Price Display - PROMINENT */
    .pricing-display {
        margin: 20px 0 !important;
    }

    .price-original {
        font-size: 1rem !important;
    }

    .price-current {
        font-size: 3rem !important;
        font-weight: 900 !important;
    }

    .price-currency {
        font-size: 1.2rem !important;
    }

    .price-period {
        font-size: 0.8rem !important;
    }

    /* Features List */
    .pricing-features {
        gap: 10px !important;
        margin: 20px 0 !important;
    }

    .pricing-features li,
    .feature-item {
        font-size: 0.8rem !important;
        gap: 10px !important;
        padding: 8px 0 !important;
    }

    .feature-check,
    .pricing-features li svg {
        width: 16px !important;
        height: 16px !important;
        flex-shrink: 0 !important;
    }

    /* Pricing CTA */
    .pricing-cta,
    .pricing-card .btn-cta-massive {
        padding: 18px 24px !important;
        font-size: 1rem !important;
        border-radius: 14px !important;
    }

    .pricing-guarantee {
        font-size: 0.75rem !important;
        margin-top: 14px !important;
    }

    /* Countdown Timer */
    .countdown-box {
        flex-direction: row !important;
        justify-content: center !important;
        gap: 10px !important;
        padding: 16px !important;
    }

    .countdown-unit {
        min-width: 55px !important;
    }

    .countdown-number {
        font-size: 1.6rem !important;
    }

    .countdown-label {
        font-size: 0.6rem !important;
    }

    /* Trust Badges */
    .trust-badges {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 12px !important;
        margin-top: 20px !important;
    }

    .trust-badge {
        font-size: 0.7rem !important;
        padding: 8px 12px !important;
        gap: 6px !important;
    }

    .trust-badge svg,
    .trust-badge img {
        width: 16px !important;
        height: 16px !important;
    }

    /* Payment Methods */
    .payment-methods {
        gap: 10px !important;
        margin-top: 16px !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }

    .payment-method {
        width: 38px !important;
        height: 26px !important;
    }

    /* ══════════ FAQ SECTION MOBILE ══════════ */
    .faq-section {
        padding: 40px 16px !important;
    }

    .faq-list {
        gap: 10px !important;
    }

    .faq-item {
        padding: 16px !important;
        border-radius: 12px !important;
    }

    .faq-question {
        font-size: 0.88rem !important;
        padding-right: 24px !important;
    }

    .faq-answer {
        font-size: 0.8rem !important;
        padding-top: 12px !important;
        line-height: 1.5 !important;
    }

    .faq-icon {
        width: 20px !important;
        height: 20px !important;
    }

    /* ══════════ FOOTER MOBILE ══════════ */
    footer {
        padding: 40px 16px 120px 16px !important;
        /* Extra bottom for sticky CTA */
    }

    .footer-content {
        flex-direction: column !important;
        gap: 24px !important;
        text-align: center !important;
    }

    .footer-logo svg {
        width: 140px !important;
        height: auto !important;
    }

    .footer-links {
        flex-direction: column !important;
        gap: 12px !important;
    }

    .footer-links a {
        font-size: 0.85rem !important;
    }

    .footer-social {
        gap: 16px !important;
        justify-content: center !important;
    }

    .footer-social a {
        width: 40px !important;
        height: 40px !important;
    }

    .footer-bottom {
        font-size: 0.75rem !important;
        padding-top: 20px !important;
        margin-top: 20px !important;
    }

    /* ══════════ FLOATING ELEMENTS MOBILE ══════════ */
    /* WhatsApp Float - Above sticky CTA */
    .whatsapp-float,
    .wa-float,
    [class*="whatsapp-btn"],
    a[href*="wa.me"] img {
        bottom: 85px !important;
        right: 16px !important;
        width: 52px !important;
        height: 52px !important;
        z-index: 998 !important;
    }

    /* Sticky Mobile CTA Bar */
    .sticky-cta-mobile,
    .mobile-cta-bar {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 999 !important;
        padding: 12px 16px !important;
        background: rgba(10, 10, 15, 0.98) !important;
        backdrop-filter: blur(12px) !important;
        border-top: 1px solid rgba(139, 92, 246, 0.3) !important;
        box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5) !important;
    }

    /* Social Proof Popup */
    .social-proof-popup {
        bottom: 90px !important;
        left: 16px !important;
        right: 16px !important;
        max-width: none !important;
        font-size: 0.8rem !important;
    }

    /* Delivery Countdown Bar */
    .delivery-countdown {
        font-size: 0.7rem !important;
        padding: 8px 12px !important;
    }

    /* ══════════ PERFORMANCE & HOVER FIXES ══════════ */
    /* Disable hover effects on touch devices */
    .bento-card:hover,
    .problem-card:hover,
    .testimonial-card:hover,
    .target-card:hover,
    .step-card:hover,
    .bonus-card:hover,
    .faq-item:hover,
    .btn-cta-massive:hover,
    .btn-cta-secondary:hover {
        transform: none !important;
    }

    /* Reduce animations for performance */
    .reveal {
        transition-duration: 0.3s !important;
    }

    /* Remove complex transforms */
    * {
        perspective: none !important;
    }

    /* ══════════ SECTION HEADERS MOBILE ══════════ */
    .section-header-center h2 {
        font-size: 1.4rem !important;
        line-height: 1.2 !important;
        margin-bottom: 10px !important;
    }

    .section-subtitle {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        max-width: 100% !important;
    }
}

/* ═══════════════════════════════════════════════════════════
   EXTRA SMALL DEVICES (iPhone SE/Mini) - 375px and below
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 375px) {
    .hero-headline-massive {
        font-size: 1.6rem !important;
    }

    .hero-subtitle-premium {
        font-size: 0.88rem !important;
    }

    .btn-cta-massive {
        padding: 14px 16px !important;
        font-size: 0.88rem !important;
    }

    .bento-card {
        padding: 12px 10px !important;
        min-height: 110px !important;
    }

    .bento-card h3 {
        font-size: 0.7rem !important;
    }

    .bento-card p {
        font-size: 0.6rem !important;
    }

    .problem-card h3 {
        font-size: 0.75rem !important;
    }

    .problem-card p {
        font-size: 0.65rem !important;
    }

    .price-current {
        font-size: 2.6rem !important;
    }

    .testimonial-quote {
        font-size: 0.78rem !important;
    }

    .step-number {
        width: 46px !important;
        height: 46px !important;
        font-size: 1.2rem !important;
    }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE POLISH ENHANCEMENTS - EXTRA REFINEMENTS
   Final touches for 10/10 mobile excellence
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 600px) {

    /* ══════════ ENHANCED HERO BADGE ══════════ */
    .hero-badge {
        background: rgba(139, 92, 246, 0.2) !important;
        border: 1px solid rgba(139, 92, 246, 0.4) !important;
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
        animation: subtle-pulse 3s ease-in-out infinite !important;
    }

    @keyframes subtle-pulse {

        0%,
        100% {
            opacity: 1;
            transform: scale(1);
        }

        50% {
            opacity: 0.9;
            transform: scale(1.02);
        }
    }

    /* ══════════ ENHANCED H1 GRADIENT ══════════ */
    .hero-headline-massive .gradient-text,
    .hero-headline-massive span[style*="gradient"] {
        background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 50%, #c4b5fd 100%) !important;
        -webkit-background-clip: text !important;
        background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        text-shadow: none !important;
    }

    /* ══════════ ENHANCED CTA BUTTONS ══════════ */
    .btn-cta-massive {
        background: linear-gradient(135deg, #22c55e 0%, #16a34a 50%, #22c55e 100%) !important;
        background-size: 200% 200% !important;
        animation: gradient-shift 3s ease infinite !important;
        box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4), 0 0 0 2px rgba(34, 197, 94, 0.1) !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        font-weight: 700 !important;
    }

    @keyframes gradient-shift {
        0% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }

        100% {
            background-position: 0% 50%;
        }
    }

    .btn-cta-secondary {
        background: rgba(139, 92, 246, 0.15) !important;
        border: 1.5px solid rgba(139, 92, 246, 0.5) !important;
        color: #c4b5fd !important;
    }

    /* ══════════ ENHANCED PROBLEM CARDS ══════════ */
    .problem-card {
        background: rgba(30, 30, 45, 0.8) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
    }

    .problem-card h3 {
        color: #ffffff !important;
        font-weight: 600 !important;
    }

    .problem-card p {
        color: rgba(255, 255, 255, 0.75) !important;
    }

    .problem-icon-wrapper {
        background: linear-gradient(135deg, rgba(239, 68, 68, 0.3) 0%, rgba(239, 68, 68, 0.15) 100%) !important;
        border: 1px solid rgba(239, 68, 68, 0.3) !important;
        border-radius: 10px !important;
    }

    /* ══════════ ENHANCED BENTO CARDS ══════════ */
    .bento-card {
        background: linear-gradient(145deg, rgba(30, 30, 50, 0.9) 0%, rgba(20, 20, 35, 0.95) 100%) !important;
        border: 1px solid rgba(139, 92, 246, 0.15) !important;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
    }

    .bento-card .bento-icon {
        filter: drop-shadow(0 2px 8px rgba(139, 92, 246, 0.4)) !important;
    }

    .bento-card h3 {
        color: #ffffff !important;
        font-weight: 600 !important;
        letter-spacing: -0.01em !important;
    }

    .bento-card p {
        color: rgba(255, 255, 255, 0.7) !important;
    }

    /* ══════════ ENHANCED STEP CARDS ══════════ */
    .step-card {
        background: linear-gradient(145deg, rgba(30, 30, 50, 0.85) 0%, rgba(20, 20, 35, 0.9) 100%) !important;
        border: 1px solid rgba(139, 92, 246, 0.12) !important;
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25) !important;
    }

    .step-number {
        box-shadow: 0 4px 24px rgba(139, 92, 246, 0.5), 0 0 0 3px rgba(139, 92, 246, 0.15) !important;
    }

    .step-card h3 {
        color: #ffffff !important;
    }

    .step-card p {
        color: rgba(255, 255, 255, 0.75) !important;
    }

    /* ══════════ ENHANCED TESTIMONIALS ══════════ */
    .testimonial-card {
        background: linear-gradient(145deg, rgba(35, 35, 55, 0.9) 0%, rgba(25, 25, 40, 0.95) 100%) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25) !important;
    }

    .testimonial-quote {
        color: rgba(255, 255, 255, 0.9) !important;
        font-style: italic !important;
    }

    .testimonial-quote::before {
        content: '"' !important;
        font-size: 2rem !important;
        color: rgba(139, 92, 246, 0.5) !important;
        position: absolute !important;
        top: -8px !important;
        left: -4px !important;
        font-family: serif !important;
    }

    .testimonial-quote {
        position: relative !important;
        padding-left: 16px !important;
    }

    /* ══════════ ENHANCED PRICING SECTION ══════════ */
    .pricing-card,
    .pricing-card-premium {
        background: linear-gradient(145deg, rgba(30, 30, 50, 0.95) 0%, rgba(20, 20, 35, 1) 100%) !important;
        border: 2px solid rgba(139, 92, 246, 0.3) !important;
        box-shadow: 0 8px 40px rgba(139, 92, 246, 0.2), 0 0 60px rgba(139, 92, 246, 0.1) !important;
    }

    .pricing-badge {
        background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
        animation: badge-pulse 2s ease-in-out infinite !important;
    }

    @keyframes badge-pulse {

        0%,
        100% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }
    }

    .price-current {
        color: #22c55e !important;
        text-shadow: 0 0 30px rgba(34, 197, 94, 0.3) !important;
    }

    .price-original {
        color: rgba(255, 255, 255, 0.5) !important;
        text-decoration: line-through !important;
    }

    /* ══════════ COUNTDOWN ENHANCEMENT ══════════ */
    .countdown-box {
        background: rgba(239, 68, 68, 0.1) !important;
        border: 1px solid rgba(239, 68, 68, 0.3) !important;
        border-radius: 12px !important;
    }

    .countdown-number {
        color: #fbbf24 !important;
        font-weight: 800 !important;
        text-shadow: 0 0 15px rgba(251, 191, 36, 0.4) !important;
    }

    .countdown-label {
        color: rgba(255, 255, 255, 0.7) !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
    }

    /* ══════════ ENHANCED FAQ ══════════ */
    .faq-item {
        background: rgba(30, 30, 45, 0.8) !important;
        border: 1px solid rgba(255, 255, 255, 0.06) !important;
    }

    .faq-item.active,
    .faq-item[open] {
        border-color: rgba(139, 92, 246, 0.3) !important;
        background: rgba(35, 35, 55, 0.9) !important;
    }

    .faq-question {
        color: #ffffff !important;
        font-weight: 600 !important;
    }

    .faq-answer {
        color: rgba(255, 255, 255, 0.8) !important;
    }

    /* ══════════ TRUST ELEMENTS ══════════ */
    .trust-item,
    .cta-micro-trust span {
        color: rgba(255, 255, 255, 0.85) !important;
    }

    .trust-item svg {
        color: #22c55e !important;
    }

    /* ══════════ SECTION HEADERS POLISH ══════════ */
    .section-header-center h2 {
        color: #ffffff !important;
        text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5) !important;
    }

    .section-header-center h2 .gradient-text,
    .section-header-center h2 span[style*="gradient"] {
        background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%) !important;
        -webkit-background-clip: text !important;
        background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
    }

    .section-subtitle {
        color: rgba(255, 255, 255, 0.75) !important;
    }

    /* ══════════ SOCIAL PROOF INLINE POLISH ══════════ */
    .social-proof-inline {
        background: linear-gradient(145deg, rgba(30, 30, 50, 0.9) 0%, rgba(20, 20, 35, 0.95) 100%) !important;
        border: 1px solid rgba(139, 92, 246, 0.2) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
    }

    .proof-text strong {
        color: #22c55e !important;
    }

    /* ══════════ SCROLL SMOOTHNESS ══════════ */
    html {
        scroll-behavior: smooth !important;
    }

    /* ══════════ BETTER FOCUS STATES ══════════ */
    button:focus-visible,
    a:focus-visible {
        outline: 2px solid rgba(139, 92, 246, 0.6) !important;
        outline-offset: 2px !important;
    }

    /* ══════════ IMPROVED TEXT SELECTION ══════════ */
    ::selection {
        background: rgba(139, 92, 246, 0.4) !important;
        color: #ffffff !important;
    }
}

/* =====================================================
   MOBILE CRITICAL FIXES - CONVERSION OPTIMIZED
   ===================================================== */

@media (max-width: 768px) {

    /* ══════════ HERO ABOVE-FOLD FIX ══════════ */
    .hero-section {
        padding: 40px 0 60px !important;
        min-height: auto !important;
    }

    .hero-grid-premium {
        display: flex !important;
        flex-direction: column !important;
        gap: 32px !important;
    }

    /* Copy primero, video después */
    .hero-content {
        order: 1 !important;
        text-align: center !important;
    }

    .hero-visual {
        order: 2 !important;
        margin-top: 20px !important;
    }

    /* Título más compacto en móvil */
    .hero-title {
        font-size: 1.75rem !important;
        line-height: 1.25 !important;
        margin-bottom: 16px !important;
    }

    .line-gray {
        font-size: 0.85em !important;
        display: block !important;
        margin-bottom: 8px !important;
    }

    .line-gradient {
        display: block !important;
    }

    .desktop-break {
        display: none !important;
    }

    /* Subtítulo más compacto */
    .hero-subtitle-premium {
        font-size: 0.95rem !important;
        margin-bottom: 24px !important;
        padding: 0 8px !important;
    }

    /* Badge de emergencia centrado */
    .hero-eyebrow-emergency {
        font-size: 0.7rem !important;
        padding: 6px 12px !important;
        margin-bottom: 16px !important;
    }

    /* ══════════ CTA GROUP FIX ══════════ */
    .hero-cta-group {
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px !important;
    }

    .btn-cta-massive {
        width: 100% !important;
        max-width: 320px !important;
        justify-content: center !important;
        padding: 16px 24px !important;
        font-size: 1rem !important;
    }

    .btn-cta-secondary {
        width: 100% !important;
        max-width: 320px !important;
        justify-content: center !important;
        padding: 14px 20px !important;
    }

    /* ══════════ VIDEO LABEL FIX ══════════ */
    .video-label-floating {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        margin: 0 auto 12px !important;
        width: fit-content !important;
        font-size: 0.7rem !important;
    }

    /* Video más compacto */
    .browser-frame {
        border-radius: 12px !important;
    }

    .browser-frame video {
        max-height: 200px !important;
        object-fit: cover !important;
    }

    /* ══════════ TRUST ROW CENTERED ══════════ */
    .hero-trust-row {
        justify-content: center !important;
        gap: 16px !important;
        margin-bottom: 16px !important;
    }

    .trust-item {
        font-size: 0.8rem !important;
    }

    /* ══════════ SOCIAL PROOF INLINE ══════════ */
    .social-proof-inline {
        justify-content: center !important;
    }

    /* ══════════ GUARANTEE BOX MÓVIL ══════════ */
    .guarantee-box {
        padding: 12px 16px !important;
        text-align: center !important;
        font-size: 0.85rem !important;
    }

    .guarantee-box p {
        font-size: 0.85rem !important;
    }

    /* ══════════ MICRO URGENCY ══════════ */
    .cta-micro-urgency {
        font-size: 0.8rem !important;
        justify-content: center !important;
    }

    /* ══════════ URGENCY BAR FIX ══════════ */
    .urgency-bar-premium {
        padding: 10px 16px !important;
        font-size: 0.75rem !important;
        flex-direction: column !important;
        gap: 6px !important;
        text-align: center !important;
    }

    .urgency-link {
        display: block !important;
    }

    /* ══════════ DELIVERY COUNTDOWN - OCULTAR EN MÓVIL ══════════ */
    /* La sticky CTA es más importante para conversión */
    .delivery-countdown {
        display: none !important;
    }

    /* ══════════ STICKY CTA MÓVIL VISIBLE ══════════ */
    .sticky-cta-bar {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 9999 !important;
        background: rgba(5, 5, 5, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border-top: 1px solid rgba(139, 92, 246, 0.3) !important;
        padding: 12px 16px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 12px !important;
        opacity: 0 !important;
        transform: translateY(100%) !important;
        transition: all 0.3s ease !important;
    }

    .sticky-cta-bar.visible {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    .sticky-price {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .sticky-emoji {
        font-size: 1.2rem !important;
    }

    .sticky-amount {
        font-size: 1.1rem !important;
        font-weight: 800 !important;
        color: #22c55e !important;
    }

    .sticky-label {
        font-size: 0.7rem !important;
        color: #a1a1aa !important;
        display: block !important;
    }

    .sticky-cta-btn {
        background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
        color: #000 !important;
        padding: 12px 20px !important;
        border-radius: 8px !important;
        font-weight: 700 !important;
        font-size: 0.9rem !important;
        text-decoration: none !important;
        white-space: nowrap !important;
        box-shadow: 0 0 20px rgba(34, 197, 94, 0.4) !important;
    }

    /* ══════════ FLOATING DOCK HIDE ON MOBILE ══════════ */
    .floating-dock {
        display: none !important;
    }

    /* ══════════ WHATSAPP FAB POSITION FIX ══════════ */
    #whatsappBtn {
        bottom: 80px !important;
        /* Above sticky CTA */
    }

    /* ══════════ BENTO GRID MÓVIL ══════════ */
    .bento-grid-premium {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .bento-card {
        padding: 16px !important;
    }

    .bento-hero {
        grid-column: span 2 !important;
    }

    .bento-mvp {
        grid-column: span 1 !important;
    }

    .bento-emoji {
        font-size: 1.8rem !important;
    }

    .bento-card h3 {
        font-size: 0.9rem !important;
    }

    .bento-card p {
        font-size: 0.75rem !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    .bento-tag {
        font-size: 0.6rem !important;
        padding: 3px 8px !important;
    }

    /* ══════════ PRICING SECTION MÓVIL ══════════ */
    .pricing-card-golden {
        padding: 24px 20px !important;
    }

    .price-main-display {
        gap: 4px !important;
    }

    .price-main-display .amount {
        font-size: 3rem !important;
    }

    .value-calculator {
        padding: 16px !important;
    }

    /* ══════════ TIMELINE MÓVIL ══════════ */
    .process-timeline {
        flex-direction: column !important;
        gap: 24px !important;
    }

    .timeline-step {
        flex-direction: row !important;
        gap: 16px !important;
    }

    .step-glow-number {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
        flex-shrink: 0 !important;
    }

    .step-content {
        text-align: left !important;
    }

    .step-content h3 {
        font-size: 1rem !important;
    }

    .step-content p {
        font-size: 0.85rem !important;
    }

    .step-emoji {
        font-size: 1.5rem !important;
    }

    /* ══════════ TESTIMONIALS MÓVIL ══════════ */
    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .testimonial-card {
        padding: 20px !important;
    }

    /* ══════════ CREDENTIALS MÓVIL ══════════ */
    .credentials-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .credential-img {
        max-width: 200px !important;
    }

    /* ══════════ FOOTER MÓVIL ══════════ */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
        text-align: center !important;
    }

    .footer-col h4 {
        margin-bottom: 12px !important;
    }

    .footer-social {
        justify-content: center !important;
    }

    /* ══════════ SECTION PADDING MÓVIL ══════════ */
    .section-padding {
        padding: 60px 0 !important;
    }

    .section-header-center {
        margin-bottom: 40px !important;
    }

    .section-header-center h2 {
        font-size: 1.5rem !important;
    }

    .section-subtitle {
        font-size: 0.95rem !important;
    }

    /* ══════════ FAQ MÓVIL ══════════ */
    .faq-item summary {
        font-size: 0.9rem !important;
        padding: 16px !important;
    }

    .faq-item p {
        font-size: 0.85rem !important;
        padding: 0 16px 16px !important;
    }
}

/* =====================================================
   AUDITORÍA MÓVIL 10/10 - PREMIUM POLISH
   ===================================================== */

@media (max-width: 768px) {

    /* ══════════ 1. SOCIAL PROOF POPUP - MÁS COMPACTO ══════════ */
    .social-proof-popup {
        bottom: 90px !important;
        left: 12px !important;
        right: 12px !important;
        max-width: none !important;
        padding: 12px 16px !important;
        gap: 10px !important;
        border-radius: 12px !important;
        font-size: 0.85rem !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
    }

    .popup-avatar {
        width: 36px !important;
        height: 36px !important;
        font-size: 1rem !important;
    }

    .popup-content strong {
        font-size: 0.85rem !important;
    }

    .popup-content span {
        font-size: 0.75rem !important;
    }

    .popup-time {
        font-size: 0.7rem !important;
    }

    /* ══════════ 2. WHATSAPP FAB REPOSICIONADO ══════════ */
    #whatsappBtn,
    .whatsapp-btn,
    .whatsapp-fab {
        bottom: 90px !important;
        right: 16px !important;
        width: 48px !important;
        height: 48px !important;
        font-size: 1.3rem !important;
        z-index: 9998 !important;
    }

    /* ══════════ 3. HERO POLISH ══════════ */
    .hero-eyebrow-emergency {
        font-size: 0.65rem !important;
        padding: 5px 10px !important;
        letter-spacing: 0.5px !important;
    }

    .hero-title {
        font-size: 1.6rem !important;
        line-height: 1.2 !important;
        margin-bottom: 12px !important;
    }

    .hero-subtitle-premium {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin-bottom: 20px !important;
        opacity: 0.9 !important;
    }

    /* CTAs más compactos pero tap-friendly */
    .btn-cta-massive {
        padding: 14px 20px !important;
        font-size: 0.95rem !important;
        gap: 8px !important;
    }

    .btn-cta-secondary {
        padding: 12px 18px !important;
        font-size: 0.9rem !important;
    }

    /* ══════════ 4. URGENCY BAR TOP ══════════ */
    .urgency-bar-premium {
        padding: 8px 12px !important;
        font-size: 0.7rem !important;
        gap: 4px !important;
    }

    .urgency-bar-premium span {
        font-size: 0.7rem !important;
    }

    /* ══════════ 5. PROBLEM SECTION CARDS ══════════ */
    .pain-grid {
        gap: 12px !important;
    }

    .pain-card {
        padding: 16px !important;
        border-radius: 12px !important;
    }

    .pain-icon {
        font-size: 2rem !important;
        margin-bottom: 8px !important;
    }

    .pain-card h3 {
        font-size: 1rem !important;
        margin-bottom: 6px !important;
    }

    .pain-card p {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
        opacity: 0.8 !important;
    }

    /* ══════════ 6. BENTO GRID ULTRA-OPTIMIZADO ══════════ */
    .bento-grid-premium {
        gap: 10px !important;
    }

    .bento-card {
        padding: 14px !important;
        border-radius: 10px !important;
        min-height: auto !important;
    }

    .bento-emoji {
        font-size: 1.5rem !important;
        margin-bottom: 6px !important;
    }

    .bento-card h3 {
        font-size: 0.85rem !important;
        margin-bottom: 4px !important;
        line-height: 1.3 !important;
    }

    .bento-card p {
        font-size: 0.7rem !important;
        line-height: 1.35 !important;
        margin-bottom: 0 !important;
    }

    .bento-tag {
        font-size: 0.55rem !important;
        padding: 2px 6px !important;
        margin-top: 6px !important;
    }

    /* Hero card full width */
    .bento-hero,
    .bento-card:first-child {
        padding: 18px !important;
    }

    .bento-hero .bento-emoji,
    .bento-card:first-child .bento-emoji {
        font-size: 2rem !important;
    }

    .bento-hero h3,
    .bento-card:first-child h3 {
        font-size: 1rem !important;
    }

    /* ══════════ 7. COMPARISON CARDS ══════════ */
    .comparison-wrapper {
        gap: 16px !important;
    }

    .card-loser,
    .card-winner {
        padding: 18px !important;
        border-radius: 12px !important;
        min-width: 0 !important;
    }

    .loser-title,
    .winner-title {
        font-size: 1.1rem !important;
        margin-bottom: 12px !important;
    }

    .loser-list li,
    .winner-list li {
        font-size: 0.85rem !important;
        margin-bottom: 10px !important;
        gap: 10px !important;
    }

    /* ══════════ 8. CREDENTIALS SECTION ══════════ */
    .credentials-grid {
        gap: 20px !important;
    }

    .credential-card {
        padding: 16px !important;
        border-radius: 12px !important;
    }

    .credential-card h4 {
        font-size: 0.9rem !important;
    }

    .credential-card p {
        font-size: 0.8rem !important;
    }

    /* ══════════ 9. TIMELINE ULTRA-COMPACT ══════════ */
    .process-timeline {
        gap: 20px !important;
    }

    .timeline-step {
        gap: 12px !important;
    }

    .step-glow-number {
        width: 36px !important;
        height: 36px !important;
        font-size: 0.9rem !important;
    }

    .step-emoji {
        font-size: 1.3rem !important;
    }

    .step-content h3 {
        font-size: 0.95rem !important;
        margin-bottom: 4px !important;
    }

    .step-content p {
        font-size: 0.8rem !important;
        opacity: 0.85 !important;
    }

    /* ══════════ 10. PRICING SECTION PREMIUM ══════════ */
    .pricing-card-golden {
        padding: 20px 16px !important;
        border-radius: 16px !important;
    }

    .price-main-display .currency {
        font-size: 1.5rem !important;
    }

    .price-main-display .amount {
        font-size: 2.8rem !important;
    }

    .price-main-display .original-price {
        font-size: 1rem !important;
    }

    .value-calculator {
        padding: 14px !important;
        margin: 16px 0 !important;
        border-radius: 10px !important;
    }

    .value-calculator p {
        font-size: 0.8rem !important;
    }

    /* CTA principal de pricing */
    .pricing-cta-main {
        padding: 16px 24px !important;
        font-size: 1rem !important;
        border-radius: 10px !important;
    }

    .pricing-guarantee {
        font-size: 0.75rem !important;
        margin-top: 12px !important;
    }

    /* ══════════ 11. TESTIMONIALS POLISH ══════════ */
    .testimonial-card {
        padding: 16px !important;
        border-radius: 12px !important;
    }

    .testimonial-header {
        gap: 10px !important;
        margin-bottom: 10px !important;
    }

    .testimonial-avatar {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }

    .testimonial-name {
        font-size: 0.9rem !important;
    }

    .testimonial-role {
        font-size: 0.75rem !important;
    }

    .testimonial-text {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
    }

    .testimonial-stars {
        font-size: 0.9rem !important;
    }

    /* ══════════ 12. FAQ POLISH ══════════ */
    .faq-section {
        padding: 50px 0 !important;
    }

    .faq-item {
        border-radius: 10px !important;
        margin-bottom: 10px !important;
    }

    .faq-item summary {
        font-size: 0.85rem !important;
        padding: 14px 16px !important;
        font-weight: 600 !important;
    }

    .faq-item p {
        font-size: 0.8rem !important;
        line-height: 1.5 !important;
    }

    /* ══════════ 13. FOOTER ALTO CONTRASTE ══════════ */
    .footer-section {
        padding: 40px 0 100px !important;
        /* Extra padding for sticky CTA */
    }

    .footer-grid {
        gap: 24px !important;
    }

    .footer-col h4 {
        font-size: 0.9rem !important;
        color: #ffffff !important;
        margin-bottom: 10px !important;
    }

    .footer-col p,
    .footer-col a,
    .footer-link {
        font-size: 0.8rem !important;
        color: #a1a1aa !important;
        /* Mayor contraste */
    }

    .footer-col a:hover {
        color: #ffffff !important;
    }

    /* Texto de disclaimer más legible */
    .footer-disclaimer,
    .footer-legal,
    .footer-bottom p {
        font-size: 0.75rem !important;
        color: #71717a !important;
        line-height: 1.5 !important;
    }

    .footer-social {
        gap: 12px !important;
    }

    .footer-social a {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.1rem !important;
    }

    /* ══════════ 14. SECTION HEADERS COMPACTOS ══════════ */
    .section-header-center {
        margin-bottom: 32px !important;
        padding: 0 8px !important;
    }

    .section-header-center h2 {
        font-size: 1.4rem !important;
        line-height: 1.25 !important;
        margin-bottom: 8px !important;
    }

    .section-subtitle {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        opacity: 0.85 !important;
    }

    .section-padding {
        padding: 50px 0 !important;
    }

    /* ══════════ 15. TRUST ELEMENTS ══════════ */
    .hero-trust-row {
        gap: 12px !important;
        flex-wrap: wrap !important;
    }

    .trust-item {
        font-size: 0.75rem !important;
        gap: 4px !important;
    }

    .trust-item svg,
    .trust-item i {
        font-size: 0.85rem !important;
    }

    /* ══════════ 16. GUARANTEE BOX ══════════ */
    .guarantee-box {
        padding: 10px 14px !important;
        border-radius: 10px !important;
    }

    .guarantee-box p {
        font-size: 0.8rem !important;
    }

    .guarantee-icon {
        font-size: 1.1rem !important;
    }

    /* ══════════ 17. STICKY CTA REFINADO ══════════ */
    .sticky-cta-bar {
        padding: 10px 14px !important;
        gap: 10px !important;
    }

    .sticky-amount {
        font-size: 1rem !important;
    }

    .sticky-label {
        font-size: 0.65rem !important;
    }

    .sticky-cta-btn {
        padding: 10px 16px !important;
        font-size: 0.85rem !important;
        border-radius: 8px !important;
    }

    /* ══════════ 18. VIDEO SECTION ══════════ */
    .browser-frame {
        border-radius: 10px !important;
        overflow: hidden !important;
    }

    .browser-dots {
        padding: 6px 10px !important;
    }

    .browser-dots span {
        width: 8px !important;
        height: 8px !important;
    }

    .video-label-floating {
        font-size: 0.65rem !important;
        padding: 4px 10px !important;
    }

    /* ══════════ 19. MICRO URGENCY PULIDO ══════════ */
    .cta-micro-urgency {
        font-size: 0.75rem !important;
        gap: 6px !important;
        margin-top: 8px !important;
    }

    /* ══════════ 20. SMOOTH TRANSITIONS ══════════ */
    * {
        -webkit-tap-highlight-color: transparent !important;
    }

    button,
    a,
    .bento-card,
    .testimonial-card,
    .faq-item {
        transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    }

    /* Active states for better feedback */
    button:active,
    a:active,
    .btn-cta-massive:active,
    .sticky-cta-btn:active {
        transform: scale(0.98) !important;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   📱 MOBILE ELITE 10/10 - VERSIÓN DEFINITIVA
   Fidelidad visual al desktop + Optimización de conversión
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

    /* ╔══════════════════════════════════════════════════════════════════════╗
       ║                      1. GLOBAL MOBILE RESETS                         ║
       ╚══════════════════════════════════════════════════════════════════════╝ */

    html {
        font-size: 15px !important;
    }

    body {
        overflow-x: hidden !important;
    }

    .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
        max-width: 100% !important;
    }

    /* Secciones con padding optimizado */
    section,
    .section-padding {
        padding: 48px 0 !important;
    }

    /* Headers de sección consistentes */
    .section-header,
    .section-header-center {
        margin-bottom: 28px !important;
        padding: 0 !important;
    }

    .section-header h2,
    .section-header-center h2,
    .section-title {
        font-size: 1.5rem !important;
        line-height: 1.25 !important;
        margin-bottom: 8px !important;
    }

    .section-subtitle {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        color: var(--text-secondary) !important;
    }

    /* ╔══════════════════════════════════════════════════════════════════════╗
       ║                    2. URGENCY BAR TOP (Perfecta)                     ║
       ╚══════════════════════════════════════════════════════════════════════╝ */

    .urgency-bar-premium {
        padding: 10px 16px !important;
        font-size: 0.75rem !important;
        gap: 6px !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .urgency-bar-premium span {
        font-size: 0.75rem !important;
    }

    .urgency-link {
        font-size: 0.7rem !important;
    }

    /* ╔══════════════════════════════════════════════════════════════════════╗
       ║                      3. NAVBAR COMPACTO                              ║
       ╚══════════════════════════════════════════════════════════════════════╝ */

    .navbar {
        padding: 12px 16px !important;
    }

    .navbar .logo {
        font-size: 1.1rem !important;
    }

    .hamburger-menu {
        padding: 8px !important;
    }

    /* ╔══════════════════════════════════════════════════════════════════════╗
       ║                   4. HERO SECTION (Above-Fold)                       ║
       ╚══════════════════════════════════════════════════════════════════════╝ */

    .hero-section {
        padding: 32px 0 40px !important;
        min-height: auto !important;
    }

    .hero-content {
        gap: 24px !important;
    }

    /* Badge de emergencia */
    .hero-eyebrow-emergency {
        font-size: 0.7rem !important;
        padding: 6px 12px !important;
        letter-spacing: 0.5px !important;
        display: inline-flex !important;
        margin-bottom: 8px !important;
    }

    /* Título principal - IMPACTO */
    .hero-title {
        font-size: 1.75rem !important;
        line-height: 1.2 !important;
        margin-bottom: 12px !important;
    }

    .hero-title-gradient {
        font-size: 1.75rem !important;
        display: block !important;
    }

    /* Subtítulo */
    .hero-subtitle-premium {
        font-size: 0.95rem !important;
        line-height: 1.55 !important;
        margin-bottom: 20px !important;
        padding: 0 8px !important;
    }

    /* CTAs del Hero - centrados y prominentes */
    .hero-cta-group,
    .cta-button-wrapper {
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
    }

    .btn-cta-massive {
        width: 100% !important;
        padding: 16px 24px !important;
        font-size: 1rem !important;
        font-weight: 700 !important;
        border-radius: 12px !important;
        justify-content: center !important;
    }

    .btn-cta-secondary {
        width: 100% !important;
        padding: 14px 20px !important;
        font-size: 0.9rem !important;
        border-radius: 10px !important;
        justify-content: center !important;
    }

    /* Micro urgency bajo CTAs */
    .cta-micro-urgency {
        font-size: 0.75rem !important;
        margin-top: 12px !important;
        justify-content: center !important;
    }

    /* Trust row */
    .hero-trust-row {
        justify-content: center !important;
        gap: 16px !important;
        flex-wrap: wrap !important;
        margin-top: 16px !important;
    }

    .trust-item {
        font-size: 0.75rem !important;
        gap: 6px !important;
    }

    /* ╔══════════════════════════════════════════════════════════════════════╗
       ║                    5. VIDEO BROWSER FRAME                            ║
       ╚══════════════════════════════════════════════════════════════════════╝ */

    .browser-frame {
        margin-top: 24px !important;
        border-radius: 12px !important;
    }

    .browser-dots {
        padding: 8px 12px !important;
    }

    .browser-dots span {
        width: 8px !important;
        height: 8px !important;
    }

    .video-label-floating {
        font-size: 0.65rem !important;
        padding: 4px 10px !important;
        top: 50px !important;
        right: 8px !important;
    }

    /* ╔══════════════════════════════════════════════════════════════════════╗
       ║                     6. PROMESA SECTION                               ║
       ╚══════════════════════════════════════════════════════════════════════╝ */

    .promise-box,
    .promesa-edugenerativa {
        padding: 20px 16px !important;
        border-radius: 16px !important;
        margin: 0 !important;
    }

    .promise-box h3,
    .promesa-edugenerativa h3 {
        font-size: 1.1rem !important;
        margin-bottom: 8px !important;
    }

    .promise-box p,
    .promesa-edugenerativa p {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
    }

    /* Avatares de prueba social */
    .avatars-stack {
        margin-top: 12px !important;
    }

    .avatars-stack img,
    .avatar-img {
        width: 28px !important;
        height: 28px !important;
        margin-left: -8px !important;
    }

    .avatars-text {
        font-size: 0.75rem !important;
        margin-left: 8px !important;
    }

    /* ╔══════════════════════════════════════════════════════════════════════╗
       ║                  7. PAIN POINTS / PROBLEM CARDS                      ║
       ╚══════════════════════════════════════════════════════════════════════╝ */

    .pain-grid,
    .problem-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .pain-card,
    .problem-card {
        padding: 16px !important;
        border-radius: 14px !important;
        text-align: center !important;
    }

    .pain-icon,
    .problem-icon {
        font-size: 2rem !important;
        margin-bottom: 8px !important;
    }

    .pain-card h3,
    .problem-card h3 {
        font-size: 0.9rem !important;
        margin-bottom: 6px !important;
        line-height: 1.3 !important;
    }

    .pain-card p,
    .problem-card p {
        font-size: 0.75rem !important;
        line-height: 1.4 !important;
        color: var(--text-muted) !important;
    }

    /* Statement central de la sección problema */
    .solution-statement,
    .problem-statement {
        padding: 20px 16px !important;
        margin-top: 20px !important;
        border-radius: 12px !important;
        text-align: center !important;
    }

    .solution-statement h3,
    .problem-statement h3 {
        font-size: 1.1rem !important;
        line-height: 1.4 !important;
    }

    /* ╔══════════════════════════════════════════════════════════════════════╗
       ║              8. COMPARISON SECTION (IA vs Tradicional)               ║
       ╚══════════════════════════════════════════════════════════════════════╝ */

    .comparison-wrapper {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
    }

    .card-winner,
    .card-loser {
        padding: 20px 16px !important;
        border-radius: 16px !important;
    }

    .winner-title,
    .loser-title {
        font-size: 1.15rem !important;
        margin-bottom: 16px !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .winner-list li,
    .loser-list li {
        font-size: 0.85rem !important;
        margin-bottom: 12px !important;
        display: flex !important;
        align-items: flex-start !important;
        gap: 10px !important;
        line-height: 1.45 !important;
    }

    .winner-list li::before,
    .loser-list li::before {
        font-size: 1rem !important;
        flex-shrink: 0 !important;
    }

    /* ╔══════════════════════════════════════════════════════════════════════╗
       ║                  9. BENTO GRID - 11 HERRAMIENTAS                     ║
       ╚══════════════════════════════════════════════════════════════════════╝ */

    .bento-grid-premium,
    .tools-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    /* Hero card (primera) ocupa todo el ancho */
    .bento-hero,
    .bento-card:first-child,
    .tool-card-hero {
        grid-column: span 2 !important;
        padding: 18px !important;
    }

    .bento-card,
    .tool-card {
        padding: 14px !important;
        border-radius: 12px !important;
        min-height: auto !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .bento-emoji,
    .tool-icon {
        font-size: 1.6rem !important;
        margin-bottom: 8px !important;
    }

    .bento-card h3,
    .tool-card h3 {
        font-size: 0.85rem !important;
        line-height: 1.3 !important;
        margin-bottom: 4px !important;
        font-weight: 600 !important;
    }

    .bento-card p,
    .tool-card p {
        font-size: 0.7rem !important;
        line-height: 1.4 !important;
        color: var(--text-muted) !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    .bento-tag,
    .tool-badge {
        font-size: 0.55rem !important;
        padding: 3px 8px !important;
        margin-top: auto !important;
        align-self: flex-start !important;
        border-radius: 6px !important;
    }

    /* ╔══════════════════════════════════════════════════════════════════════╗
       ║                    10. CREDENTIALS SECTION                           ║
       ╚══════════════════════════════════════════════════════════════════════╝ */

    .credentials-section {
        padding: 48px 0 !important;
    }

    .credentials-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .credential-card {
        padding: 20px !important;
        border-radius: 14px !important;
        display: flex !important;
        gap: 14px !important;
        align-items: flex-start !important;
    }

    .credential-icon,
    .credential-card img {
        width: 48px !important;
        height: 48px !important;
        border-radius: 12px !important;
        flex-shrink: 0 !important;
    }

    .credential-card h4 {
        font-size: 0.95rem !important;
        margin-bottom: 4px !important;
        font-weight: 600 !important;
    }

    .credential-card p {
        font-size: 0.8rem !important;
        line-height: 1.45 !important;
        color: var(--text-muted) !important;
    }

    /* ╔══════════════════════════════════════════════════════════════════════╗
       ║                      11. TIMELINE / PROCESO                          ║
       ╚══════════════════════════════════════════════════════════════════════╝ */

    .process-timeline,
    .timeline-section {
        padding: 48px 0 !important;
    }

    .timeline-steps {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    .timeline-step {
        display: flex !important;
        gap: 14px !important;
        align-items: flex-start !important;
    }

    .step-glow-number,
    .step-number {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        font-size: 1rem !important;
        font-weight: 700 !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .step-content {
        flex: 1 !important;
    }

    .step-content h3 {
        font-size: 1rem !important;
        margin-bottom: 4px !important;
        font-weight: 600 !important;
    }

    .step-content p {
        font-size: 0.8rem !important;
        line-height: 1.5 !important;
        color: var(--text-muted) !important;
    }

    /* ╔══════════════════════════════════════════════════════════════════════╗
       ║                       12. PRICING SECTION                            ║
       ╚══════════════════════════════════════════════════════════════════════╝ */

    .pricing-section {
        padding: 50px 0 !important;
    }

    .pricing-card-golden,
    .pricing-card {
        padding: 24px 20px !important;
        border-radius: 20px !important;
        margin: 0 auto !important;
        max-width: 100% !important;
    }

    /* Precio display */
    .price-main-display {
        text-align: center !important;
        margin-bottom: 20px !important;
    }

    .price-main-display .currency {
        font-size: 1.5rem !important;
    }

    .price-main-display .amount {
        font-size: 3rem !important;
        font-weight: 800 !important;
    }

    .price-main-display .original-price {
        font-size: 1.1rem !important;
        text-decoration: line-through !important;
        color: var(--text-muted) !important;
    }

    /* Value calculator */
    .value-calculator {
        padding: 16px !important;
        border-radius: 12px !important;
        margin: 16px 0 !important;
    }

    .value-calculator p {
        font-size: 0.8rem !important;
        line-height: 1.5 !important;
    }

    /* Lista de beneficios del precio */
    .pricing-features,
    .price-benefits {
        margin: 20px 0 !important;
    }

    .pricing-features li,
    .price-benefit-item {
        font-size: 0.85rem !important;
        padding: 8px 0 !important;
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
    }

    /* CTA de pricing */
    .pricing-cta-main,
    .pricing-btn {
        width: 100% !important;
        padding: 18px 24px !important;
        font-size: 1.05rem !important;
        font-weight: 700 !important;
        border-radius: 12px !important;
        margin-top: 16px !important;
    }

    .pricing-guarantee {
        text-align: center !important;
        font-size: 0.75rem !important;
        margin-top: 14px !important;
        color: var(--text-muted) !important;
    }

    /* ╔══════════════════════════════════════════════════════════════════════╗
       ║                     13. FOUNDER / CREATOR SECTION                    ║
       ╚══════════════════════════════════════════════════════════════════════╝ */

    .founder-section,
    .creator-section {
        padding: 48px 0 !important;
    }

    .founder-card,
    .creator-card {
        padding: 24px 20px !important;
        border-radius: 20px !important;
        text-align: center !important;
    }

    .founder-avatar,
    .creator-avatar {
        width: 90px !important;
        height: 90px !important;
        border-radius: 50% !important;
        margin: 0 auto 16px !important;
    }

    .founder-name,
    .creator-name {
        font-size: 1.2rem !important;
        margin-bottom: 4px !important;
    }

    .founder-handle,
    .creator-handle {
        font-size: 0.85rem !important;
        color: var(--cyan) !important;
        margin-bottom: 12px !important;
    }

    .founder-bio,
    .creator-bio {
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
        text-align: center !important;
    }

    /* ╔══════════════════════════════════════════════════════════════════════╗
       ║                      14. TESTIMONIALS SECTION                        ║
       ╚══════════════════════════════════════════════════════════════════════╝ */

    .testimonials-section {
        padding: 48px 0 !important;
    }

    .testimonials-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .testimonial-card {
        padding: 20px !important;
        border-radius: 16px !important;
    }

    .testimonial-header {
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        margin-bottom: 12px !important;
    }

    .testimonial-avatar {
        width: 44px !important;
        height: 44px !important;
        border-radius: 50% !important;
        font-size: 1.2rem !important;
    }

    .testimonial-name {
        font-size: 0.95rem !important;
        font-weight: 600 !important;
    }

    .testimonial-role {
        font-size: 0.75rem !important;
        color: var(--text-muted) !important;
    }

    .testimonial-text {
        font-size: 0.875rem !important;
        line-height: 1.55 !important;
        font-style: italic !important;
    }

    .testimonial-stars {
        margin-top: 12px !important;
        font-size: 0.9rem !important;
    }

    .testimonial-grade {
        font-size: 0.8rem !important;
        font-weight: 600 !important;
        color: var(--green) !important;
    }

    /* ╔══════════════════════════════════════════════════════════════════════╗
       ║                         15. FAQ SECTION                              ║
       ╚══════════════════════════════════════════════════════════════════════╝ */

    .faq-section {
        padding: 48px 0 !important;
    }

    .faq-list {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }

    .faq-item {
        border-radius: 12px !important;
        overflow: hidden !important;
    }

    .faq-item summary {
        padding: 16px 18px !important;
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        cursor: pointer !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .faq-item p {
        padding: 0 18px 16px !important;
        font-size: 0.85rem !important;
        line-height: 1.55 !important;
        color: var(--text-secondary) !important;
    }

    /* ╔══════════════════════════════════════════════════════════════════════╗
       ║                     16. FOOTER SECTION                               ║
       ╚══════════════════════════════════════════════════════════════════════╝ */

    .footer-section,
    footer {
        padding: 40px 0 110px !important;
        /* Extra para sticky CTA */
    }

    .footer-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 28px !important;
        text-align: center !important;
    }

    .footer-col {
        text-align: center !important;
    }

    .footer-col h4 {
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        color: var(--text-primary) !important;
        margin-bottom: 12px !important;
    }

    .footer-col p,
    .footer-col a {
        font-size: 0.8rem !important;
        color: #9ca3af !important;
        /* Alto contraste */
        line-height: 1.6 !important;
    }

    .footer-col a:hover {
        color: #ffffff !important;
    }

    .footer-social {
        display: flex !important;
        justify-content: center !important;
        gap: 14px !important;
        margin-top: 12px !important;
    }

    .footer-social a {
        width: 42px !important;
        height: 42px !important;
        border-radius: 10px !important;
        font-size: 1.1rem !important;
    }

    .footer-bottom,
    .footer-legal {
        text-align: center !important;
        padding-top: 20px !important;
        margin-top: 20px !important;
        border-top: 1px solid var(--border-subtle) !important;
    }

    .footer-bottom p {
        font-size: 0.75rem !important;
        color: #6b7280 !important;
    }

    /* ╔══════════════════════════════════════════════════════════════════════╗
       ║                   17. STICKY CTA BAR (Conversión)                    ║
       ╚══════════════════════════════════════════════════════════════════════╝ */

    .sticky-cta-bar {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        padding: 12px 16px !important;
        z-index: 10000 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 12px !important;
        background: rgba(15, 15, 15, 0.95) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border-top: 1px solid rgba(139, 92, 246, 0.2) !important;
        box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5) !important;
    }

    .sticky-price-info {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
    }

    .sticky-amount {
        font-size: 1.15rem !important;
        font-weight: 800 !important;
        color: var(--text-primary) !important;
    }

    .sticky-label {
        font-size: 0.65rem !important;
        color: var(--text-muted) !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
    }

    .sticky-cta-btn {
        padding: 12px 20px !important;
        font-size: 0.9rem !important;
        font-weight: 700 !important;
        border-radius: 10px !important;
        white-space: nowrap !important;
    }

    /* ╔══════════════════════════════════════════════════════════════════════╗
       ║                  18. SOCIAL PROOF POPUP (No intrusivo)               ║
       ╚══════════════════════════════════════════════════════════════════════╝ */

    .social-proof-popup {
        position: fixed !important;
        bottom: 75px !important;
        /* Encima del sticky CTA */
        left: 12px !important;
        right: 12px !important;
        max-width: none !important;
        padding: 10px 14px !important;
        border-radius: 10px !important;
        font-size: 0.8rem !important;
        z-index: 9999 !important;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4) !important;
    }

    .popup-avatar {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.9rem !important;
    }

    .popup-content strong {
        font-size: 0.8rem !important;
    }

    .popup-content span {
        font-size: 0.7rem !important;
    }

    .popup-time {
        font-size: 0.65rem !important;
    }

    /* ╔══════════════════════════════════════════════════════════════════════╗
       ║                     19. WHATSAPP FAB BUTTON                          ║
       ╚══════════════════════════════════════════════════════════════════════╝ */

    #whatsappBtn,
    .whatsapp-btn,
    .whatsapp-fab {
        position: fixed !important;
        bottom: 75px !important;
        /* Encima del sticky CTA */
        right: 14px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 1.4rem !important;
        z-index: 9998 !important;
        border-radius: 50% !important;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important;
    }

    /* ╔══════════════════════════════════════════════════════════════════════╗
       ║                    20. DELIVERY COUNTDOWN BAR                        ║
       ╚══════════════════════════════════════════════════════════════════════╝ */

    .delivery-countdown {
        display: none !important;
        /* Ocultar en móvil - sticky CTA la reemplaza */
    }

    /* ╔══════════════════════════════════════════════════════════════════════╗
       ║                21. GUARANTEE BOX (Confianza extra)                   ║
       ╚══════════════════════════════════════════════════════════════════════╝ */

    .guarantee-box {
        padding: 14px 16px !important;
        border-radius: 12px !important;
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
    }

    .guarantee-icon {
        font-size: 1.3rem !important;
        flex-shrink: 0 !important;
    }

    .guarantee-box p {
        font-size: 0.8rem !important;
        line-height: 1.45 !important;
    }

    /* ╔══════════════════════════════════════════════════════════════════════╗
       ║            22. ANIMATIONS & MICRO-INTERACTIONS                       ║
       ╚══════════════════════════════════════════════════════════════════════╝ */

    * {
        -webkit-tap-highlight-color: transparent !important;
    }

    /* Smooth transitions para todos los elementos interactivos */
    button,
    a,
    .bento-card,
    .testimonial-card,
    .faq-item,
    .credential-card,
    .pain-card {
        transition: transform 0.15s ease, box-shadow 0.15s ease,
            background-color 0.15s ease !important;
    }

    /* Active state feedback */
    button:active,
    .btn-cta-massive:active,
    .sticky-cta-btn:active,
    .pricing-cta-main:active {
        transform: scale(0.97) !important;
    }

    /* Scroll reveal base */
    .scroll-reveal {
        opacity: 1 !important;
        transform: none !important;
    }

    /* ╔══════════════════════════════════════════════════════════════════════╗
       ║              23. SPECIAL CARDS (Full width special items)            ║
       ╚══════════════════════════════════════════════════════════════════════╝ */

    /* Mapa Mental card - full width */
    .bento-card.mind-map,
    .bento-card:nth-child(7) {
        grid-column: span 2 !important;
    }

    /* Lección V2 con badge BONUS */
    .bento-card:last-child {
        position: relative !important;
    }

    /* ╔══════════════════════════════════════════════════════════════════════╗
       ║                     24. CERTIFICATES SECTION                         ║
       ╚══════════════════════════════════════════════════════════════════════╝ */

    .certificates-section {
        padding: 48px 0 !important;
    }

    .certificates-grid,
    .certificates-wrapper {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
    }

    .certificate-card,
    .certificate-item {
        border-radius: 14px !important;
        padding: 16px !important;
    }

    .certificate-card img {
        max-width: 100% !important;
        border-radius: 10px !important;
    }

    /* ╔══════════════════════════════════════════════════════════════════════╗
       ║                     25. FINAL POLISH & FIXES                         ║
       ╚══════════════════════════════════════════════════════════════════════╝ */

    /* Prevent horizontal scroll SIEMPRE */
    html,
    body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }

    /* Asegurar que nada sobresalga */
    section,
    .container,
    .bento-grid-premium,
    .pain-grid,
    .testimonials-grid,
    .credentials-grid {
        overflow: hidden !important;
    }

    /* Imágenes responsive */
    img {
        max-width: 100% !important;
        height: auto !important;
    }

    /* Text selection mejorada */
    ::selection {
        background: rgba(139, 92, 246, 0.3) !important;
        color: white !important;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   📱 FIXES CRÍTICOS ROUND 2 - Problemas de la auditoría
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

    /* ══════════════════════════════════════════════════════════════════════
       FIX 1: SOCIAL PROOF POPUP - Ultra compacto, no intrusivo
       ══════════════════════════════════════════════════════════════════════ */

    .social-proof-popup {
        position: fixed !important;
        bottom: 70px !important;
        left: 10px !important;
        right: auto !important;
        width: auto !important;
        max-width: 260px !important;
        padding: 8px 12px !important;
        border-radius: 10px !important;
        font-size: 0.75rem !important;
        z-index: 9990 !important;
        background: rgba(15, 15, 15, 0.95) !important;
        border: 1px solid rgba(34, 197, 94, 0.3) !important;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4) !important;
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
    }

    .social-proof-popup .popup-avatar {
        width: 28px !important;
        height: 28px !important;
        min-width: 28px !important;
        font-size: 0.8rem !important;
        border-radius: 50% !important;
        flex-shrink: 0 !important;
    }

    .social-proof-popup .popup-content {
        flex: 1 !important;
        min-width: 0 !important;
    }

    .social-proof-popup .popup-content strong {
        font-size: 0.75rem !important;
        display: block !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .social-proof-popup .popup-content span,
    .social-proof-popup .popup-location {
        font-size: 0.65rem !important;
        color: var(--text-muted) !important;
        display: block !important;
    }

    .social-proof-popup .popup-time {
        font-size: 0.6rem !important;
        color: var(--green) !important;
    }

    .social-proof-popup .popup-close,
    .social-proof-popup button {
        position: absolute !important;
        top: 4px !important;
        right: 4px !important;
        width: 18px !important;
        height: 18px !important;
        font-size: 0.7rem !important;
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
        color: var(--text-muted) !important;
    }

    /* ══════════════════════════════════════════════════════════════════════
       FIX 2: FLOATING DOCK - Más compacto y menos intrusivo
       ══════════════════════════════════════════════════════════════════════ */

    .floating-dock,
    .mobile-floating-cta,
    .floating-cta-bar {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        padding: 8px 12px !important;
        z-index: 10000 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 8px !important;
        background: rgba(10, 10, 10, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border-top: 1px solid rgba(139, 92, 246, 0.2) !important;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5) !important;
        max-height: 56px !important;
    }

    .floating-dock .dock-demo,
    .dock-demo-btn {
        padding: 8px 14px !important;
        font-size: 0.8rem !important;
        background: transparent !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        color: var(--text-secondary) !important;
        border-radius: 8px !important;
        white-space: nowrap !important;
    }

    .floating-dock .dock-buy,
    .dock-buy-btn {
        padding: 10px 16px !important;
        font-size: 0.85rem !important;
        font-weight: 700 !important;
        background: linear-gradient(135deg, #22c55e, #16a34a) !important;
        border: none !important;
        border-radius: 10px !important;
        color: white !important;
        white-space: nowrap !important;
        box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3) !important;
    }

    /* ══════════════════════════════════════════════════════════════════════
       FIX 3: DELIVERY COUNTDOWN BAR (Bottom verde) - Hacerla más sutil
       ══════════════════════════════════════════════════════════════════════ */

    .delivery-countdown,
    .countdown-bar,
    .urgency-countdown-bar {
        display: none !important;
        /* Ocultar en móvil - dock la reemplaza */
    }

    /* ══════════════════════════════════════════════════════════════════════
       FIX 4: HERO SECTION - Video más pequeño en above fold
       ══════════════════════════════════════════════════════════════════════ */

    .hero-visual,
    .hero-video-wrapper {
        margin-top: 20px !important;
        max-height: 280px !important;
        overflow: hidden !important;
        border-radius: 12px !important;
    }

    .browser-frame {
        max-height: 260px !important;
        overflow: hidden !important;
    }

    .browser-frame iframe,
    .browser-frame video {
        max-height: 220px !important;
    }

    /* ══════════════════════════════════════════════════════════════════════
       FIX 5: WHATSAPP FAB - Reposicionado correctamente
       ══════════════════════════════════════════════════════════════════════ */

    #whatsappBtn,
    .whatsapp-btn,
    .whatsapp-fab {
        position: fixed !important;
        bottom: 64px !important;
        right: 12px !important;
        width: 44px !important;
        height: 44px !important;
        font-size: 1.2rem !important;
        z-index: 9995 !important;
        border-radius: 50% !important;
    }

    /* ══════════════════════════════════════════════════════════════════════
       FIX 6: CARDS DE HERRAMIENTAS - Grid 2x2 perfecto
       ══════════════════════════════════════════════════════════════════════ */

    .bento-grid-premium {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
    }

    .bento-card {
        padding: 12px !important;
        min-height: 100px !important;
    }

    .bento-card:first-child {
        grid-column: span 2 !important;
        min-height: 80px !important;
    }

    /* Mapa Mental + otras cards especiales full width */
    .bento-card:nth-child(7) {
        grid-column: span 2 !important;
    }

    .bento-emoji {
        font-size: 1.4rem !important;
        margin-bottom: 6px !important;
    }

    .bento-card h3 {
        font-size: 0.8rem !important;
        margin-bottom: 4px !important;
    }

    .bento-card p {
        font-size: 0.65rem !important;
        line-height: 1.35 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    .bento-tag {
        font-size: 0.5rem !important;
        padding: 2px 6px !important;
        margin-top: 6px !important;
    }

    /* ══════════════════════════════════════════════════════════════════════
       FIX 7: PAIN CARDS - Perfeccionar el grid 2x2
       ══════════════════════════════════════════════════════════════════════ */

    .pain-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .pain-card {
        padding: 14px 12px !important;
        text-align: center !important;
        min-height: 120px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
    }

    .pain-card .pain-icon {
        font-size: 1.8rem !important;
        margin-bottom: 8px !important;
    }

    .pain-card h3 {
        font-size: 0.85rem !important;
        margin-bottom: 4px !important;
    }

    .pain-card p {
        font-size: 0.7rem !important;
        line-height: 1.4 !important;
        color: var(--text-muted) !important;
    }

    /* ══════════════════════════════════════════════════════════════════════
       FIX 8: COMPARISON SECTION - Más compacta
       ══════════════════════════════════════════════════════════════════════ */

    .comparison-wrapper {
        gap: 14px !important;
    }

    .card-winner,
    .card-loser {
        padding: 16px 14px !important;
    }

    .winner-title,
    .loser-title {
        font-size: 1rem !important;
        margin-bottom: 12px !important;
    }

    .winner-list li,
    .loser-list li {
        font-size: 0.8rem !important;
        margin-bottom: 8px !important;
        padding-left: 28px !important;
    }

    /* ══════════════════════════════════════════════════════════════════════
       FIX 9: PRICING CARD - Pricing display optimizado
       ══════════════════════════════════════════════════════════════════════ */

    .pricing-card-golden {
        padding: 20px 16px !important;
    }

    .price-main-display {
        margin-bottom: 16px !important;
    }

    .price-main-display .amount {
        font-size: 2.8rem !important;
    }

    .pricing-features li {
        font-size: 0.8rem !important;
        padding: 6px 0 !important;
    }

    /* ══════════════════════════════════════════════════════════════════════
       FIX 10: FOOTER - Más padding en bottom para dock
       ══════════════════════════════════════════════════════════════════════ */

    footer,
    .footer-section {
        padding-bottom: 80px !important;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   📱 ROUND 3 - FIXES ULTRA ESPECÍFICOS (Máxima prioridad CSS)
   Estos estilos tienen la última palabra
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

    /* ══════════════════════════════════════════════════════════════════════
       POPUP SOCIAL PROOF - Versión MINI toast notification
       ══════════════════════════════════════════════════════════════════════ */

    #socialProofPopup,
    .social-proof-popup,
    div.social-proof-popup {
        position: fixed !important;
        bottom: 62px !important;
        left: 8px !important;
        right: auto !important;
        width: auto !important;
        max-width: 200px !important;
        padding: 6px 10px 6px 8px !important;
        border-radius: 8px !important;
        font-size: 0.7rem !important;
        z-index: 9990 !important;
        background: rgba(10, 10, 10, 0.95) !important;
        border: 1px solid rgba(34, 197, 94, 0.25) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        transform: translateX(-150%) !important;
        opacity: 0 !important;
        transition: transform 0.3s ease, opacity 0.3s ease !important;
    }

    #socialProofPopup.show,
    .social-proof-popup.show,
    div.social-proof-popup.show {
        transform: translateX(0) !important;
        opacity: 1 !important;
    }

    #socialProofPopup .popup-avatar,
    .social-proof-popup .popup-avatar {
        width: 22px !important;
        height: 22px !important;
        min-width: 22px !important;
        font-size: 0.65rem !important;
        border-radius: 50% !important;
        flex-shrink: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    #socialProofPopup .popup-content,
    .social-proof-popup .popup-content {
        flex: 1 !important;
        min-width: 0 !important;
        line-height: 1.2 !important;
    }

    #socialProofPopup .popup-content strong,
    .social-proof-popup .popup-content strong {
        font-size: 0.68rem !important;
        display: block !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        max-width: 130px !important;
        font-weight: 600 !important;
    }

    #socialProofPopup .popup-content span,
    .social-proof-popup .popup-content span,
    #socialProofPopup .popup-location,
    .social-proof-popup .popup-location {
        font-size: 0.58rem !important;
        color: var(--text-muted) !important;
        display: block !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    #socialProofPopup .popup-time,
    .social-proof-popup .popup-time {
        font-size: 0.55rem !important;
        color: var(--green) !important;
    }

    /* Ocultar botón de cerrar - se cierra automáticamente */
    #socialProofPopup .popup-close,
    .social-proof-popup .popup-close,
    #socialProofPopup button,
    .social-proof-popup button {
        display: none !important;
    }

    /* ══════════════════════════════════════════════════════════════════════
       BARRA INFERIOR STICKY - Ultra compacta
       ══════════════════════════════════════════════════════════════════════ */

    .sticky-cta-bar,
    .floating-dock,
    div.sticky-cta-bar,
    div.floating-dock {
        max-height: 52px !important;
        padding: 6px 12px !important;
    }

    /* ══════════════════════════════════════════════════════════════════════
       HERO TEXT - Mejor jerarquía en above fold
       ══════════════════════════════════════════════════════════════════════ */

    .hero-section .hero-eyebrow-emergency {
        font-size: 0.65rem !important;
        padding: 5px 10px !important;
    }

    .hero-section .hero-title {
        font-size: 1.65rem !important;
        line-height: 1.18 !important;
    }

    .hero-section .hero-title-gradient {
        font-size: 1.65rem !important;
    }

    .hero-section .hero-subtitle-premium {
        font-size: 0.88rem !important;
        line-height: 1.5 !important;
    }

    /* ══════════════════════════════════════════════════════════════════════
       TOOLS GRID - Perfeccionar spacing entre cards
       ══════════════════════════════════════════════════════════════════════ */

    section#herramientas .bento-grid-premium,
    .tools-section .bento-grid-premium {
        gap: 8px !important;
        padding: 0 !important;
    }

    section#herramientas .bento-card {
        border-radius: 10px !important;
    }

    /* ══════════════════════════════════════════════════════════════════════
       TESTIMONIALS - Cards más compactas
       ══════════════════════════════════════════════════════════════════════ */

    .testimonials-grid .testimonial-card {
        padding: 16px !important;
    }

    .testimonial-header {
        gap: 10px !important;
        margin-bottom: 10px !important;
    }

    .testimonial-avatar {
        width: 38px !important;
        height: 38px !important;
    }

    .testimonial-text {
        font-size: 0.82rem !important;
        line-height: 1.5 !important;
    }

    /* ══════════════════════════════════════════════════════════════════════
       FAQ - Spacing optimizado
       ══════════════════════════════════════════════════════════════════════ */

    .faq-list .faq-item {
        margin-bottom: 8px !important;
    }

    .faq-item summary {
        padding: 14px 16px !important;
        font-size: 0.85rem !important;
    }

    .faq-item p {
        padding: 0 16px 14px !important;
        font-size: 0.8rem !important;
    }

    /* ══════════════════════════════════════════════════════════════════════
       URGENCY BAR TOP - Más legible
       ══════════════════════════════════════════════════════════════════════ */

    .urgency-bar-premium {
        padding: 8px 12px !important;
    }

    .urgency-bar-premium span {
        font-size: 0.72rem !important;
    }

    /* ══════════════════════════════════════════════════════════════════════
       MOBILE MENU HAMBURGER - Touch target correcto
       ══════════════════════════════════════════════════════════════════════ */

    .hamburger-menu {
        width: 44px !important;
        height: 44px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* ══════════════════════════════════════════════════════════════════════
       SPACING CONSISTENTE ENTRE SECCIONES
       ══════════════════════════════════════════════════════════════════════ */

    section {
        scroll-margin-top: 60px !important;
    }

    /* Reducir gaps excesivos */
    .section-header-center {
        margin-bottom: 24px !important;
    }

    /* ══════════════════════════════════════════════════════════════════════
       CREATOR/FOUNDER SECTION
       ══════════════════════════════════════════════════════════════════════ */

    .founder-card,
    .creator-card {
        padding: 20px 16px !important;
    }

    .founder-avatar,
    .creator-avatar {
        width: 80px !important;
        height: 80px !important;
    }

    /* ══════════════════════════════════════════════════════════════════════
       CERTIFICATES - Vertical stack perfecto
       ══════════════════════════════════════════════════════════════════════ */

    .certificates-grid,
    .certificates-wrapper {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        overflow: visible !important;
    }

    .certificate-card {
        width: 100% !important;
        flex-shrink: 0 !important;
    }

    /* ══════════════════════════════════════════════════════════════════════
       PREVENT ANY HORIZONTAL OVERFLOW
       ══════════════════════════════════════════════════════════════════════ */

    * {
        max-width: 100vw !important;
    }

    pre,
    code,
    table {
        overflow-x: auto !important;
        word-wrap: break-word !important;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   📱 ROUND 4 FINAL - FIXES DEFINITIVOS 10/10
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

    /* ══════════════════════════════════════════════════════════════════════
       FIX FINAL 1: POPUP A LA DERECHA (no tapa contenido izquierdo)
       ══════════════════════════════════════════════════════════════════════ */

    #socialProofPopup,
    .social-proof-popup,
    div.social-proof-popup {
        left: auto !important;
        right: 8px !important;
        transform: translateX(150%) !important;
    }

    #socialProofPopup.show,
    .social-proof-popup.show,
    div.social-proof-popup.show {
        transform: translateX(0) !important;
    }

    /* ══════════════════════════════════════════════════════════════════════
       FIX FINAL 2: BENTO CARDS CON MÁS CONTRASTE Y BRILLO
       ══════════════════════════════════════════════════════════════════════ */

    .bento-card {
        background: rgba(20, 20, 30, 0.85) !important;
        border: 1px solid rgba(139, 92, 246, 0.15) !important;
        box-shadow:
            0 4px 12px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
    }

    .bento-card:nth-child(1) {
        background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(34, 197, 94, 0.1)) !important;
        border: 1px solid rgba(139, 92, 246, 0.25) !important;
    }

    .bento-card h3 {
        color: #fff !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
    }

    .bento-card p {
        color: rgba(255, 255, 255, 0.75) !important;
    }

    .bento-emoji {
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) !important;
    }

    .bento-tag {
        background: rgba(139, 92, 246, 0.2) !important;
        border: 1px solid rgba(139, 92, 246, 0.3) !important;
        color: rgba(255, 255, 255, 0.9) !important;
    }

    /* ══════════════════════════════════════════════════════════════════════
       FIX FINAL 3: PAIN CARDS TAMBIÉN CON MÁS BRILLO
       ══════════════════════════════════════════════════════════════════════ */

    .pain-card {
        background: rgba(25, 25, 35, 0.9) !important;
        border: 1px solid rgba(239, 68, 68, 0.15) !important;
    }

    /* ══════════════════════════════════════════════════════════════════════
       FIX FINAL 4: COMPARISON CARDS MÁS DEFINIDAS
       ══════════════════════════════════════════════════════════════════════ */

    .card-winner {
        background: rgba(20, 35, 25, 0.95) !important;
        border: 1px solid rgba(34, 197, 94, 0.3) !important;
    }

    .card-loser {
        background: rgba(35, 25, 25, 0.9) !important;
        border: 1px solid rgba(239, 68, 68, 0.2) !important;
    }

    /* ══════════════════════════════════════════════════════════════════════
       FIX FINAL 5: TESTIMONIAL CARDS CON BORDES SUTILES
       ══════════════════════════════════════════════════════════════════════ */

    .testimonial-card {
        background: rgba(20, 20, 30, 0.85) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    /* ══════════════════════════════════════════════════════════════════════
       FIX FINAL 6: FAQ ITEMS MEJOR DEFINIDOS
       ══════════════════════════════════════════════════════════════════════ */

    .faq-item {
        background: rgba(20, 20, 30, 0.8) !important;
        border: 1px solid rgba(255, 255, 255, 0.06) !important;
    }

    .faq-item[open] {
        border-color: rgba(139, 92, 246, 0.2) !important;
    }
}

/* ============================================================
   FIXES BRUTALES ROUND 5 - Auditoría Final 10/10
   ============================================================ */
@media (max-width: 480px) {

    /* --------------------------------------------------------
       1. SOCIAL PROOF POPUP - Ultra-compacto y NO intrusivo
       -------------------------------------------------------- */
    .social-proof-popup {
        position: fixed !important;
        bottom: 70px !important;
        /* Arriba del dock */
        right: 8px !important;
        left: auto !important;
        width: auto !important;
        min-width: 140px !important;
        max-width: 180px !important;
        padding: 8px 10px !important;
        font-size: 11px !important;
        line-height: 1.3 !important;
        background: rgba(15, 15, 20, 0.95) !important;
        border: 1px solid rgba(139, 92, 246, 0.3) !important;
        border-radius: 8px !important;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4) !important;
        z-index: 9998 !important;
        opacity: 0.92 !important;
    }

    .social-proof-popup .proof-avatar {
        width: 22px !important;
        height: 22px !important;
        min-width: 22px !important;
        border-radius: 50% !important;
    }

    .social-proof-popup .proof-name {
        font-size: 10px !important;
        font-weight: 600 !important;
    }

    .social-proof-popup .proof-action,
    .social-proof-popup .proof-product {
        font-size: 9px !important;
        opacity: 0.8 !important;
    }

    .social-proof-popup .proof-time {
        font-size: 8px !important;
        opacity: 0.6 !important;
    }

    .social-proof-popup::before {
        display: none !important;
    }

    /* --------------------------------------------------------
       2. WhatsApp FAB - Reposicionado ARRIBA del dock
       -------------------------------------------------------- */
    .whatsapp-fab,
    a[href*="whatsapp"],
    .fab-whatsapp,
    [class*="whatsapp"] {
        position: fixed !important;
        bottom: 75px !important;
        /* Arriba del dock */
        right: 12px !important;
        z-index: 10000 !important;
        width: 48px !important;
        height: 48px !important;
        padding: 0 !important;
        border-radius: 50% !important;
    }

    /* --------------------------------------------------------
       3. DOCK INFERIOR - Más compacto y limpio
       -------------------------------------------------------- */
    .floating-dock,
    .sticky-cta-bar,
    .mobile-bottom-bar {
        height: 54px !important;
        max-height: 54px !important;
        padding: 8px 12px !important;
        gap: 8px !important;
    }

    .floating-dock .dock-price,
    .sticky-cta-bar .price-display {
        font-size: 14px !important;
        font-weight: 700 !important;
    }

    .floating-dock .dock-cta,
    .sticky-cta-bar .cta-button {
        padding: 8px 16px !important;
        font-size: 12px !important;
        font-weight: 600 !important;
        border-radius: 20px !important;
    }

    /* --------------------------------------------------------
       4. BENTO CARDS - Más padding y respiración
       -------------------------------------------------------- */
    .bento-card,
    .tool-card,
    .feature-card {
        padding: 16px 14px !important;
        min-height: 120px !important;
        border-radius: 12px !important;
        background: rgba(18, 18, 28, 0.9) !important;
        border: 1px solid rgba(139, 92, 246, 0.2) !important;
    }

    .bento-card .card-emoji,
    .tool-card .emoji,
    .feature-card .icon {
        font-size: 28px !important;
        margin-bottom: 8px !important;
    }

    .bento-card h3,
    .tool-card h3,
    .feature-card h3 {
        font-size: 14px !important;
        font-weight: 600 !important;
        margin-bottom: 6px !important;
        line-height: 1.3 !important;
    }

    .bento-card p,
    .tool-card p,
    .feature-card p {
        font-size: 11px !important;
        line-height: 1.4 !important;
        opacity: 0.75 !important;
    }

    /* Badge #1 MÁS USADO - Más visible */
    .bento-card .tag,
    .tool-card .badge,
    .most-popular-badge,
    [class*="mas-usado"] {
        font-size: 9px !important;
        padding: 4px 8px !important;
        font-weight: 700 !important;
        letter-spacing: 0.5px !important;
        border-radius: 4px !important;
        background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%) !important;
        color: white !important;
    }

    /* --------------------------------------------------------
       5. HERO - Badge Superior más destacado
       -------------------------------------------------------- */
    .hero-badge,
    .emergency-badge,
    .hero .badge {
        padding: 8px 14px !important;
        font-size: 11px !important;
        font-weight: 600 !important;
        letter-spacing: 0.5px !important;
        border-radius: 20px !important;
    }

    .hero h1 {
        font-size: 26px !important;
        line-height: 1.2 !important;
        margin-bottom: 8px !important;
    }

    .hero h1 span,
    .hero .gradient-text {
        font-size: inherit !important;
    }

    .hero-subtitle,
    .hero p {
        font-size: 14px !important;
        line-height: 1.5 !important;
        opacity: 0.9 !important;
    }

    /* Promesa EduGenerativa box - padding equilibrado */
    .promise-box,
    .guarantee-inline,
    .hero-promise {
        padding: 14px 16px !important;
        border-radius: 12px !important;
    }

    .promise-box .shield-icon,
    .guarantee-inline .icon {
        width: 24px !important;
        height: 24px !important;
        margin-right: 10px !important;
    }

    /* --------------------------------------------------------
       6. TIMELINE - Alineación perfecta
       -------------------------------------------------------- */
    .timeline-line,
    .steps-connector {
        left: 20px !important;
        width: 2px !important;
    }

    .timeline-step,
    .how-step {
        padding-left: 50px !important;
    }

    .timeline-step::before,
    .step-number {
        left: 8px !important;
        width: 26px !important;
        height: 26px !important;
        font-size: 12px !important;
        font-weight: 700 !important;
    }

    .timeline-step .step-emoji,
    .how-step .emoji {
        font-size: 24px !important;
    }

    /* --------------------------------------------------------
       7. FOUNDER TAGS - Wrap y más espacio
       -------------------------------------------------------- */
    .founder-tags,
    .credential-tags,
    .about-tags {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 6px !important;
        justify-content: center !important;
    }

    .founder-tags .tag,
    .credential-tags .tag,
    .about-tags .tag {
        font-size: 10px !important;
        padding: 5px 10px !important;
        border-radius: 6px !important;
        white-space: nowrap !important;
    }

    /* Foto founder - glow controlado */
    .founder-photo,
    .about-image,
    .founder-image {
        box-shadow: 0 0 30px rgba(251, 146, 60, 0.3) !important;
    }

    /* --------------------------------------------------------
       8. PAIN CARDS - Grid 2x2 bien proporcionado
       -------------------------------------------------------- */
    .pain-grid,
    .problem-cards {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .pain-card,
    .problem-card {
        padding: 14px 12px !important;
        min-height: 80px !important;
        border-radius: 10px !important;
        background: rgba(25, 25, 35, 0.92) !important;
    }

    .pain-card .emoji,
    .problem-card .emoji {
        font-size: 22px !important;
        margin-bottom: 6px !important;
    }

    .pain-card h4,
    .problem-card h4 {
        font-size: 12px !important;
        font-weight: 600 !important;
        margin-bottom: 4px !important;
    }

    .pain-card p,
    .problem-card p {
        font-size: 10px !important;
        opacity: 0.7 !important;
    }

    /* --------------------------------------------------------
       9. TESTIMONIALS - Cards más definidas
       -------------------------------------------------------- */
    .testimonial-card {
        padding: 14px !important;
        border-radius: 12px !important;
        background: rgba(18, 18, 28, 0.9) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    .testimonial-card .stars {
        font-size: 14px !important;
        margin-bottom: 6px !important;
    }

    .testimonial-card .review-text {
        font-size: 12px !important;
        line-height: 1.5 !important;
    }

    .testimonial-card .reviewer-name {
        font-size: 11px !important;
        font-weight: 600 !important;
    }

    .testimonial-card .subject-name {
        font-size: 10px !important;
        opacity: 0.7 !important;
    }

    .testimonial-card .grade-badge {
        font-size: 13px !important;
        font-weight: 700 !important;
        padding: 4px 10px !important;
        border-radius: 6px !important;
    }

    /* --------------------------------------------------------
       10. FOOTER CTA - Botón Eduardo más pequeño
       -------------------------------------------------------- */
    .footer-cta-section .cta-button,
    .contact-cta,
    [class*="hablar-eduardo"] {
        padding: 12px 24px !important;
        font-size: 14px !important;
        border-radius: 25px !important;
    }

    /* Título de sección de contacto */
    .footer-cta-section h2,
    .contact-section h2 {
        font-size: 20px !important;
        margin-bottom: 12px !important;
    }

    /* --------------------------------------------------------
       11. COMPARISON SECTION - Más contraste
       -------------------------------------------------------- */
    .comparison-card.card-winner {
        border: 2px solid rgba(34, 197, 94, 0.5) !important;
        background: rgba(34, 197, 94, 0.08) !important;
    }

    .comparison-card.card-loser {
        border: 2px solid rgba(239, 68, 68, 0.3) !important;
        background: rgba(239, 68, 68, 0.05) !important;
    }

    .comparison-card h3 {
        font-size: 14px !important;
        font-weight: 600 !important;
    }

    .comparison-card li {
        font-size: 11px !important;
        padding: 6px 0 !important;
    }

    /* --------------------------------------------------------
       12. GLOBAL POLISH
       -------------------------------------------------------- */
    section {
        padding: 40px 16px !important;
    }

    section h2 {
        font-size: 22px !important;
        margin-bottom: 20px !important;
    }

    section h2 .gradient-text {
        font-size: inherit !important;
    }

    /* Avoid any horizontal overflow */
    body,
    html {
        overflow-x: hidden !important;
    }

    * {
        max-width: 100vw !important;
        box-sizing: border-box !important;
    }
}

/* =====================================================
   DESKTOP POLISH - MEJORAS 10/10
   Version: 6.0 - Premium Optimizations
   ===================================================== */

/* ═══════════════════════════════════════════════════════
   1. HERO SECTION - IMPACTO VISUAL MEJORADO
   ═══════════════════════════════════════════════════════ */

/* H1 más grande y con text-shadow sutil */
@media (min-width: 969px) {
    .hero-title {
        font-size: clamp(2.8rem, 5.5vw, 4.5rem) !important;
    }

    .line-gradient {
        text-shadow: 0 0 60px rgba(74, 222, 128, 0.3),
            0 0 120px rgba(34, 211, 238, 0.2);
    }

    .line-gray {
        font-size: 0.85em;
        letter-spacing: -0.02em;
    }

    .hero-subtitle-premium {
        font-size: 1.2rem;
        line-height: 1.8;
        max-width: 560px;
    }
}

/* ═══════════════════════════════════════════════════════
   2. URGENCY BAR - MÁS LLAMATIVA
   ═══════════════════════════════════════════════════════ */
.urgency-bar-premium {
    background: linear-gradient(90deg,
            rgba(139, 92, 246, 0.15) 0%,
            rgba(34, 197, 94, 0.1) 50%,
            rgba(139, 92, 246, 0.15) 100%) !important;
    border-bottom: 1px solid rgba(139, 92, 246, 0.3) !important;
    animation: urgencyBarShimmer 3s ease-in-out infinite;
}

@keyframes urgencyBarShimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.urgency-text strong {
    text-shadow: 0 0 20px rgba(250, 204, 21, 0.5);
}

/* ═══════════════════════════════════════════════════════
   3. VIDEO FRAME - GLOW MEJORADO
   ═══════════════════════════════════════════════════════ */
.browser-frame {
    box-shadow:
        0 0 80px -20px rgba(139, 92, 246, 0.5),
        0 0 40px -10px rgba(6, 182, 212, 0.3),
        0 25px 80px -20px rgba(0, 0, 0, 0.8) !important;
    transition: all 0.4s ease;
}

.browser-frame:hover {
    box-shadow:
        0 0 100px -20px rgba(139, 92, 246, 0.6),
        0 0 60px -10px rgba(6, 182, 212, 0.4),
        0 30px 100px -20px rgba(0, 0, 0, 0.9) !important;
    transform: translateY(-5px);
}

.video-label-floating {
    animation: floatingLabelPulse 2s ease-in-out infinite;
}

@keyframes floatingLabelPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(249, 115, 22, 0.6);
    }
}

/* ═══════════════════════════════════════════════════════
   4. BENTO GRID - MVP CARDS MÁS DESTACADAS
   ═══════════════════════════════════════════════════════ */
.bento-hero.bento-red {
    background: linear-gradient(145deg, #1f0808 0%, #121212 100%) !important;
    border: 2px solid rgba(239, 68, 68, 0.5) !important;
    box-shadow: 0 0 50px -15px rgba(239, 68, 68, 0.3);
}

.bento-hero.bento-red:hover {
    border-color: #ef4444 !important;
    box-shadow: 0 0 70px -10px rgba(239, 68, 68, 0.4) !important;
    transform: translateY(-8px) scale(1.01);
}

.bento-mvp.bento-green {
    border: 2px solid rgba(74, 222, 128, 0.4) !important;
}

.bento-mvp.bento-purple {
    border: 2px solid rgba(168, 85, 247, 0.4) !important;
}

.bento-card h3 {
    transition: color 0.3s ease;
}

.bento-card:hover h3 {
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Tag animado */
.tag-star {
    animation: tagStarPulse 2s ease-in-out infinite;
}

@keyframes tagStarPulse {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(239, 68, 68, 0.4);
    }

    50% {
        box-shadow: 0 0 20px rgba(239, 68, 68, 0.7);
    }
}

/* ═══════════════════════════════════════════════════════
   5. PRICING - NÚMERO $199 MÁS IMPACTANTE
   ═══════════════════════════════════════════════════════ */
.price-main-display .amount {
    font-size: 5.5rem !important;
    background: linear-gradient(180deg, #ffffff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.2));
    animation: priceGlow 3s ease-in-out infinite;
}

@keyframes priceGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.2));
    }

    50% {
        filter: drop-shadow(0 0 50px rgba(255, 255, 255, 0.35));
    }
}

.pricing-card-golden {
    box-shadow:
        0 0 80px -20px rgba(139, 92, 246, 0.5),
        0 25px 80px -20px rgba(0, 0, 0, 0.6) !important;
    transition: all 0.4s ease;
}

.pricing-card-golden:hover {
    transform: translateY(-8px);
    box-shadow:
        0 0 100px -15px rgba(139, 92, 246, 0.6),
        0 35px 100px -20px rgba(0, 0, 0, 0.7) !important;
}

/* Scarcity banner con animación */
.scarcity-banner {
    animation: scarcityPulse 2s ease-in-out infinite;
    box-shadow: 0 0 30px -10px rgba(220, 38, 38, 0.5);
}

@keyframes scarcityPulse {

    0%,
    100% {
        box-shadow: 0 0 30px -10px rgba(220, 38, 38, 0.5);
    }

    50% {
        box-shadow: 0 0 50px -5px rgba(220, 38, 38, 0.7);
    }
}

/* Discount tag más visible */
.discount-tag {
    animation: discountBlink 1.5s ease-in-out infinite;
}

@keyframes discountBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

/* ═══════════════════════════════════════════════════════
   6. TIMELINE - NÚMEROS MÁS VISIBLES
   ═══════════════════════════════════════════════════════ */
.step-glow-number {
    width: 60px !important;
    height: 60px !important;
    font-size: 1.5rem !important;
    border-width: 3px !important;
    box-shadow:
        0 0 30px rgba(74, 222, 128, 0.5),
        inset 0 0 20px rgba(74, 222, 128, 0.1) !important;
}

.step-final {
    box-shadow:
        0 0 30px rgba(251, 191, 36, 0.5),
        inset 0 0 20px rgba(251, 191, 36, 0.1) !important;
}

/* Línea conectora más brillante */
.process-timeline::before {
    height: 4px !important;
    opacity: 0.6 !important;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

.step-content {
    border-width: 2px !important;
}

/* ═══════════════════════════════════════════════════════
   7. BOTONES CTA - ANIMACIÓN MEJORADA
   ═══════════════════════════════════════════════════════ */
.btn-cta-massive,
.btn-cta-green,
.btn-cta-golden,
.btn-cta-large {
    position: relative;
    overflow: hidden;
}

.btn-cta-massive::after,
.btn-cta-green::after,
.btn-cta-golden::after,
.btn-cta-large::after {
    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 ease;
}

.btn-cta-massive:hover::after,
.btn-cta-green:hover::after,
.btn-cta-golden:hover::after,
.btn-cta-large:hover::after {
    left: 100%;
}

/* ═══════════════════════════════════════════════════════
   8. ESPACIADO OPTIMIZADO
   ═══════════════════════════════════════════════════════ */
@media (min-width: 969px) {
    :root {
        --section-padding: 100px;
    }

    .section-header-center {
        margin-bottom: 50px;
    }

    .hero-section {
        min-height: 85vh;
    }
}

/* ═══════════════════════════════════════════════════════
   9. TESTIMONIALS - HOVER MEJORADO
   ═══════════════════════════════════════════════════════ */
.testimonial-card {
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

/* ═══════════════════════════════════════════════════════
   10. FOOTER - DISEÑO MEJORADO
   ═══════════════════════════════════════════════════════ */
.footer-premium {
    background: linear-gradient(180deg,
            var(--bg-elevated) 0%,
            rgba(5, 5, 5, 1) 100%) !important;
}

.footer-social a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social a:hover {
    transform: translateY(-3px) scale(1.1);
}

/* ═══════════════════════════════════════════════════════
   11. GUARANTEE BOX - MÁS DESTACADA
   ═══════════════════════════════════════════════════════ */
.guarantee-box {
    background: rgba(34, 197, 94, 0.08) !important;
    border: 1px solid rgba(34, 197, 94, 0.3) !important;
    border-radius: 12px !important;
    padding: 16px 20px !important;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.guarantee-box:hover {
    background: rgba(34, 197, 94, 0.12) !important;
    border-color: rgba(34, 197, 94, 0.5) !important;
    box-shadow: 0 0 30px -10px rgba(34, 197, 94, 0.3);
}

.guarantee-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.guarantee-box p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════════
   12. PAIN CARDS - HOVER MÁS FLUIDO
   ═══════════════════════════════════════════════════════ */
@media (min-width: 769px) {
    .pain-card {
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .pain-card:hover {
        transform: translateY(-8px) scale(1.02);
    }
}

/* ═══════════════════════════════════════════════════════
   13. FLOATING DOCK - ANIMACIÓN DE ENTRADA
   ═══════════════════════════════════════════════════════ */
.floating-dock.visible {
    animation: dockSlideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes dockSlideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* ═══════════════════════════════════════════════════════
   14. SOCIAL PROOF POPUP - MEJORADO
   ═══════════════════════════════════════════════════════ */
.social-proof-popup {
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.5),
        0 0 40px -10px rgba(139, 92, 246, 0.3) !important;
}

/* ═══════════════════════════════════════════════════════
   15. SCROLL PROGRESS - MÁS VISIBLE
   ═══════════════════════════════════════════════════════ */
#scrollProgress {
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE ELITE OPTIMIZATION - 10/10 PERFECTION
   Version: 8.0 - Fixed Selectors for Real HTML
   Author: Antigravity Mobile Expert
   Last Updated: Feb 2026
   ═══════════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════
   1. HERO COMPACTADO - ABOVE THE FOLD OPTIMIZADO
   ═══════════════════════════════════════════════════════ */
@media (max-width: 600px) {
    .hero-section {
        padding-top: 60px !important;
        padding-bottom: 30px !important;
        min-height: auto !important;
    }

    .hero-eyebrow-emergency,
    .hero-badge {
        margin-bottom: 12px !important;
        padding: 8px 14px !important;
        font-size: 0.7rem !important;
    }

    .hero-title,
    .hero-headline-massive {
        font-size: 1.75rem !important;
        line-height: 1.15 !important;
        margin-bottom: 14px !important;
        letter-spacing: -0.03em !important;
    }

    .line-gray {
        font-size: 0.85em !important;
        display: block !important;
        margin-bottom: 6px !important;
    }

    .line-gradient {
        font-size: 1em !important;
    }

    .hero-subtitle-premium {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin-bottom: 18px !important;
        opacity: 0.95 !important;
    }

    .hero-cta-group {
        gap: 10px !important;
        margin-bottom: 16px !important;
        flex-direction: column !important;
        position: relative !important;
        display: flex !important;
    }

    .btn-cta-massive,
    .hero-cta-group .btn-cta-massive {
        padding: 16px 24px !important;
        font-size: 0.95rem !important;
        border-radius: 12px !important;
        width: 100% !important;
        justify-content: center !important;
        position: static !important;
        transform: none !important;
        margin: 0 !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
    }

    .btn-cta-secondary,
    .hero-cta-group .btn-cta-secondary {
        padding: 14px 20px !important;
        font-size: 0.88rem !important;
        border-radius: 12px !important;
        width: 100% !important;
        justify-content: center !important;
        position: static !important;
        transform: none !important;
        margin: 0 !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
    }

    .hero-trust-row {
        gap: 14px !important;
        margin-bottom: 14px !important;
        flex-wrap: wrap !important;
    }

    .trust-item {
        font-size: 0.75rem !important;
    }

    .guarantee-box {
        margin-top: 16px !important;
        padding: 14px 16px !important;
        gap: 12px !important;
    }

    .guarantee-box p {
        font-size: 0.8rem !important;
        line-height: 1.5 !important;
    }

    .social-proof-inline {
        padding: 12px 14px !important;
        margin-top: 14px !important;
        border-radius: 12px !important;
    }

    .proof-text {
        font-size: 0.75rem !important;
    }

    /* Video optimizado */
    .hero-visual {
        margin-top: 20px !important;
    }

    .video-label-floating {
        padding: 6px 12px !important;
        font-size: 0.68rem !important;
        top: -35px !important;
    }

    .browser-frame {
        border-radius: 14px !important;
    }

    .browser-frame video {
        max-height: 200px !important;
        border-radius: 0 0 14px 14px !important;
    }

    /* NAVBAR MOBILE FIX */
    .nav-links {
        display: none !important;
    }

    .btn-nav-cta,
    .nav-container .btn-nav-cta {
        display: none !important;
        position: static !important;
        transform: none !important;
    }

    .nav-hamburger {
        display: flex !important;
    }

    .nav-container {
        padding: 0 16px !important;
        justify-content: space-between !important;
    }
}

/* ═══════════════════════════════════════════════════════
   2. BENTO GRID - TAGS SIN OVERLAP
   ═══════════════════════════════════════════════════════ */
@media (max-width: 600px) {

    .bento-grid,
    .bento-grid-premium {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
    }

    .bento-card {
        padding: 20px 16px !important;
        min-height: 145px !important;
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        border-radius: 14px !important;
    }

    /* Tags sin position absolute para evitar overlap */
    .bento-tag,
    .tag-star,
    .bento-badge,
    .card-tag,
    .tag-bonus {
        position: static !important;
        display: inline-block !important;
        margin-bottom: 8px !important;
        font-size: 0.55rem !important;
        padding: 3px 6px !important;
        border-radius: 5px !important;
        line-height: 1.2 !important;
        font-weight: 700 !important;
    }

    .tag-star {
        background: rgba(239, 68, 68, 0.15) !important;
        color: #ef4444 !important;
        border: 1px solid rgba(239, 68, 68, 0.4) !important;
    }

    .tag-bonus {
        background: linear-gradient(135deg, #f59e0b, #d97706) !important;
        color: #000 !important;
    }

    .bento-card .bento-emoji {
        font-size: 2.2rem !important;
        margin-bottom: 10px !important;
        display: block !important;
        line-height: 1 !important;
    }

    .bento-card h3,
    .bento-title-hero {
        font-size: 0.95rem !important;
        line-height: 1.3 !important;
        margin-bottom: 6px !important;
        color: #ffffff !important;
        font-weight: 700 !important;
    }

    .bento-card p {
        font-size: 0.78rem !important;
        line-height: 1.45 !important;
        color: rgba(255, 255, 255, 0.85) !important;
        margin: 0 !important;
        overflow: hidden !important;
        display: -webkit-box !important;
        -webkit-box-orient: vertical !important;
        -webkit-line-clamp: 2 !important;
    }

    /* Hero card (Simulador) full width */
    .bento-hero {
        grid-column: 1 / -1 !important;
        min-height: 110px !important;
        padding: 16px 14px !important;
    }

    .bento-hero .bento-emoji {
        font-size: 2.8rem !important;
    }

    .bento-hero h3,
    .bento-hero .bento-title-hero {
        font-size: 0.95rem !important;
        margin-bottom: 6px !important;
    }

    .bento-hero p {
        font-size: 0.7rem !important;
        -webkit-line-clamp: 3 !important;
    }

    /* MVP cards (Flashcards, Podcast) */
    .bento-mvp {
        grid-column: span 1 !important;
        min-height: 108px !important;
    }
}

/* ═══════════════════════════════════════════════════════
   3. PAIN CARDS - CLASES CORRECTAS DEL HTML
   ═══════════════════════════════════════════════════════ */
@media (max-width: 600px) {
    .pain-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
    }

    .pain-card {
        padding: 18px 16px !important;
        border-radius: 14px !important;
        min-height: 140px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .pain-icon {
        font-size: 2.4rem !important;
        margin-bottom: 14px !important;
        line-height: 1 !important;
    }

    .pain-title {
        font-size: 1rem !important;
        color: #ffffff !important;
        font-weight: 700 !important;
        margin-bottom: 10px !important;
        line-height: 1.3 !important;
    }

    .pain-desc {
        font-size: 0.88rem !important;
        line-height: 1.55 !important;
        color: rgba(255, 255, 255, 0.9) !important;
        margin: 0 !important;
    }

    .solution-statement {
        padding: 18px 16px !important;
        margin-top: 24px !important;
        border-radius: 14px !important;
    }

    .solution-statement p {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
    }
}

/* ═══════════════════════════════════════════════════════
   4. TIMELINE/PROCESO - CLASES CORRECTAS DEL HTML
   ═══════════════════════════════════════════════════════ */
@media (max-width: 600px) {
    .process-timeline {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        position: relative !important;
        padding-left: 0 !important;
    }

    /* Línea conectora vertical brillante */
    .process-timeline::before {
        content: '' !important;
        position: absolute !important;
        left: 27px !important;
        top: 54px !important;
        width: 4px !important;
        height: calc(100% - 108px) !important;
        background: linear-gradient(180deg, #8b5cf6 0%, #06b6d4 100%) !important;
        border-radius: 2px !important;
        opacity: 0.6 !important;
        z-index: 0 !important;
    }

    .timeline-step {
        display: flex !important;
        align-items: flex-start !important;
        gap: 16px !important;
        padding: 0 !important;
        position: relative !important;
        z-index: 1 !important;
    }

    .step-glow-number {
        width: 54px !important;
        height: 54px !important;
        min-width: 54px !important;
        font-size: 1.3rem !important;
        font-weight: 800 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 50% !important;
        background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%) !important;
        color: #fff !important;
        border: 3px solid rgba(139, 92, 246, 0.3) !important;
        box-shadow:
            0 0 30px rgba(139, 92, 246, 0.6),
            0 0 60px rgba(139, 92, 246, 0.3),
            inset 0 0 20px rgba(255, 255, 255, 0.1) !important;
        position: relative !important;
        z-index: 2 !important;
    }

    .step-final {
        background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
        border-color: rgba(34, 197, 94, 0.3) !important;
        box-shadow:
            0 0 30px rgba(34, 197, 94, 0.6),
            0 0 60px rgba(34, 197, 94, 0.3),
            inset 0 0 20px rgba(255, 255, 255, 0.1) !important;
    }

    .step-content {
        flex: 1 !important;
        padding-top: 6px !important;
    }

    .step-emoji {
        font-size: 1.8rem !important;
        margin-bottom: 8px !important;
        display: block !important;
        line-height: 1 !important;
    }

    .step-content h3 {
        font-size: 1.1rem !important;
        color: #ffffff !important;
        font-weight: 700 !important;
        margin-bottom: 8px !important;
        line-height: 1.3 !important;
    }

    .step-content p {
        font-size: 0.92rem !important;
        line-height: 1.55 !important;
        color: rgba(255, 255, 255, 0.9) !important;
        margin: 0 !important;
    }
}

/* ═══════════════════════════════════════════════════════
   5. PRICING - $199 MÁS IMPACTANTE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 600px) {

    .pricing-section,
    #precio {
        padding: 36px 16px !important;
    }

    .scarcity-banner {
        padding: 10px 14px !important;
        font-size: 0.75rem !important;
        margin-bottom: 20px !important;
        border-radius: 10px !important;
    }

    .pricing-card,
    .pricing-card-premium,
    .pricing-card-golden {
        padding: 28px 20px !important;
        border-radius: 18px !important;
        border: 2px solid rgba(139, 92, 246, 0.4) !important;
    }

    .pricing-badge-popular,
    .pricing-badge {
        font-size: 0.68rem !important;
        padding: 6px 14px !important;
        margin-bottom: 14px !important;
    }

    .anchor-price {
        margin-bottom: 6px !important;
    }

    .anchor-price del {
        font-size: 1rem !important;
    }

    .discount-tag {
        font-size: 0.72rem !important;
        padding: 4px 10px !important;
    }

    .price-main-display {
        margin: 16px 0 !important;
    }

    .price-main-display .currency {
        font-size: 1.8rem !important;
    }

    .price-current,
    .price-main-display .amount {
        font-size: 3.8rem !important;
        font-weight: 900 !important;
        background: linear-gradient(180deg, #ffffff 0%, #d1d5db 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        filter: drop-shadow(0 0 50px rgba(255, 255, 255, 0.3)) !important;
        line-height: 1 !important;
    }

    .price-main-display .period {
        font-size: 1.2rem !important;
    }

    .pricing-desc {
        font-size: 0.82rem !important;
        margin: 12px 0 !important;
    }

    .value-calculator {
        margin: 16px 0 !important;
        padding: 14px !important;
        border-radius: 10px !important;
    }

    .value-row {
        font-size: 0.75rem !important;
        padding: 5px 0 !important;
    }

    .value-savings {
        font-size: 0.8rem !important;
        padding-top: 10px !important;
    }

    .pricing-features {
        gap: 10px !important;
        margin: 18px 0 !important;
    }

    .pricing-features li,
    .feature-item {
        font-size: 0.82rem !important;
        padding: 8px 0 !important;
        gap: 10px !important;
        line-height: 1.4 !important;
    }

    .btn-cta-golden,
    .pricing-cta,
    .pricing-card .btn-cta-massive {
        padding: 16px 24px !important;
        font-size: 1rem !important;
        border-radius: 12px !important;
        margin-top: 16px !important;
    }

    .guarantee-box-premium {
        margin-top: 16px !important;
        padding: 14px !important;
        gap: 12px !important;
        border-radius: 12px !important;
    }

    .guarantee-box-premium strong {
        font-size: 0.85rem !important;
    }

    .guarantee-box-premium span {
        font-size: 0.75rem !important;
    }

    .payment-methods {
        margin-top: 16px !important;
    }

    .payment-label {
        font-size: 0.7rem !important;
    }

    .payment-icons {
        gap: 10px !important;
        margin-top: 10px !important;
    }

    .payment-icon {
        font-size: 0.65rem !important;
    }
}

/* ═══════════════════════════════════════════════════════
   6. TESTIMONIALS - COMPACTOS Y LEGIBLES
   ═══════════════════════════════════════════════════════ */
@media (max-width: 600px) {

    .testimonials-grid,
    .testimonials-masonry {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .testimonial-card {
        padding: 18px 16px !important;
        border-radius: 14px !important;
    }

    .testimonial-header {
        gap: 12px !important;
        margin-bottom: 12px !important;
    }

    .testimonial-avatar {
        width: 50px !important;
        height: 50px !important;
        flex-shrink: 0 !important;
    }

    .testimonial-info strong,
    .testimonial-name {
        font-size: 1rem !important;
        color: #ffffff !important;
        font-weight: 700 !important;
    }

    .testimonial-info span,
    .testimonial-uni {
        font-size: 0.72rem !important;
        color: rgba(255, 255, 255, 0.7) !important;
    }

    .status-approved {
        color: #22c55e !important;
        font-size: 0.7rem !important;
    }

    .testimonial-quote {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        color: rgba(255, 255, 255, 0.95) !important;
        margin-bottom: 14px !important;
    }

    .testimonial-result {
        margin: 10px 0 !important;
        font-size: 0.78rem !important;
    }

    .testimonial-result .score {
        font-size: 0.95rem !important;
        font-weight: 800 !important;
        color: #22c55e !important;
    }

    .testimonial-stars {
        font-size: 0.85rem !important;
    }

    .testimonials-stats {
        padding: 16px 14px !important;
        gap: 12px !important;
        border-radius: 14px !important;
        margin-top: 20px !important;
    }

    .stat-item {
        text-align: center !important;
    }

    .stat-number {
        font-size: 1.4rem !important;
        font-weight: 800 !important;
        display: block !important;
    }

    .stat-label {
        font-size: 0.68rem !important;
        display: block !important;
        margin-top: 2px !important;
    }

    .stat-divider {
        height: 30px !important;
        width: 1px !important;
    }
}

/* ═══════════════════════════════════════════════════════
   7. SPACING GLOBAL - REDUCIDO PARA MOBILE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 600px) {

    .section-padding,
    section,
    .hero-section,
    .bento-section,
    .pain-section,
    .timeline-section,
    .pricing-section,
    .testimonials-section,
    .faq-section,
    .footer-section {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
        max-width: 100% !important;
    }

    .section-header-center {
        margin-bottom: 24px !important;
        padding: 0 4px !important;
    }

    .section-header-center h2 {
        font-size: 1.4rem !important;
        line-height: 1.2 !important;
        margin-bottom: 10px !important;
    }

    .section-subtitle {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
    }

    /* Urgency bar optimizada */
    .urgency-bar-premium {
        padding: 10px 12px !important;
        font-size: 0.72rem !important;
        gap: 6px !important;
        text-align: center !important;
    }

    .urgency-fire {
        font-size: 0.95rem !important;
    }

    .urgency-text {
        line-height: 1.4 !important;
    }

    .urgency-link {
        display: inline-block !important;
        margin-top: 2px !important;
    }
}

/* ═══════════════════════════════════════════════════════
   8. TOUCH TARGETS - MÍNIMO 44px
   ═══════════════════════════════════════════════════════ */
@media (max-width: 600px) {

    .btn-cta-massive,
    .btn-cta-secondary,
    .btn-nav-cta,
    .sticky-cta-btn {
        min-height: 44px !important;
    }

    .faq-question {
        min-height: 44px !important;
        display: flex !important;
        align-items: center !important;
    }

    .nav-hamburger {
        min-width: 44px !important;
        min-height: 44px !important;
    }

    .nav-mobile-menu a {
        min-height: 44px !important;
        display: flex !important;
        align-items: center !important;
    }
}

/* ═══════════════════════════════════════════════════════
   9. FAQ - COMPACTO Y LEGIBLE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 600px) {
    .faq-container {
        gap: 10px !important;
    }

    .faq-item {
        border-radius: 12px !important;
    }

    .faq-item summary {
        font-size: 0.95rem !important;
        font-weight: 600 !important;
        padding: 16px 18px !important;
        padding-right: 40px !important;
        color: #ffffff !important;
        min-height: 48px !important;
        display: flex !important;
        align-items: center !important;
        cursor: pointer !important;
    }

    .faq-item p {
        font-size: 0.8rem !important;
        line-height: 1.5 !important;
        padding: 12px 16px 16px 16px !important;
        color: rgba(255, 255, 255, 0.85) !important;
    }

    .faq-icon {
        width: 20px !important;
        height: 20px !important;
    }
}

/* ═══════════════════════════════════════════════════════
   10. FOOTER - ESPACIO PARA STICKY CTA
   ═══════════════════════════════════════════════════════ */
@media (max-width: 600px) {

    .footer-premium,
    footer {
        padding: 36px 16px 100px 16px !important;
    }

    .footer-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .footer-col {
        text-align: left !important;
    }

    .footer-col h4 {
        font-size: 0.9rem !important;
        margin-bottom: 12px !important;
    }

    .footer-col p {
        font-size: 0.8rem !important;
        line-height: 1.5 !important;
    }

    .footer-logo svg {
        width: 140px !important;
        margin-bottom: 12px !important;
    }

    .footer-links {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
    }

    .footer-links a {
        font-size: 0.82rem !important;
        padding: 6px 0 !important;
    }

    .footer-guarantee {
        font-size: 0.8rem !important;
        line-height: 1.5 !important;
    }

    .footer-social {
        display: flex !important;
        gap: 14px !important;
        margin-top: 12px !important;
    }

    .footer-social a {
        width: 40px !important;
        height: 40px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: 10px !important;
        transition: all 0.3s !important;
    }

    .footer-social svg {
        width: 20px !important;
        height: 20px !important;
        fill: currentColor !important;
    }

    .footer-bottom {
        font-size: 0.72rem !important;
        padding-top: 20px !important;
        margin-top: 24px !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
        text-align: center !important;
    }
}

/* ═══════════════════════════════════════════════════════
   11. FLOATING ELEMENTS - POSICIÓN OPTIMIZADA
   ═══════════════════════════════════════════════════════ */
@media (max-width: 600px) {

    /* WhatsApp FAB ONLY - Specific selectors */
    #whatsappBtn,
    .whatsapp-fab:not(a[class*="btn-cta"]) {
        bottom: 76px !important;
        right: 16px !important;
        width: 56px !important;
        height: 56px !important;
        min-width: 56px !important;
        max-width: 56px !important;
        z-index: 998 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4) !important;
        font-size: 1.8rem !important;
        padding: 0 !important;
        position: fixed !important;
        border-radius: 50% !important;
    }

    /* FORCE Hero CTAs to full width */
    .hero-cta-group>a,
    .hero-cta-group>.btn-cta-massive,
    .hero-cta-group>.btn-cta-secondary,
    .btn-cta-massive,
    .btn-cta-secondary {
        width: 100% !important;
        max-width: 100% !important;
        min-width: auto !important;
        height: auto !important;
        min-height: 48px !important;
    }

    /* FORCE Sticky CTA button to proper width */
    .sticky-cta-btn,
    .sticky-cta-bar button,
    .sticky-cta-bar .btn-cta-massive {
        width: auto !important;
        max-width: none !important;
        min-width: auto !important;
        height: auto !important;
        flex: 1 !important;
        min-height: 44px !important;
    }

    .whatsapp-fab span {
        display: none !important;
    }

    /* Social proof popup - Above Sticky CTA */
    .social-proof-popup {
        bottom: 88px !important;
        left: 16px !important;
        right: auto !important;
        max-width: calc(100vw - 90px) !important;
        font-size: 0.75rem !important;
        padding: 10px 12px !important;
        border-radius: 10px !important;
    }

    .popup-avatar {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.9rem !important;
    }

    .popup-content {
        gap: 4px !important;
    }

    .popup-content strong {
        font-size: 0.75rem !important;
    }

    .popup-content span {
        font-size: 0.65rem !important;
    }

    /* Sticky CTA Bar - Bottom Fixed */
    .sticky-cta-bar,
    #stickyCta {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        padding: 12px 16px !important;
        gap: 12px !important;
        background: rgba(15, 15, 15, 0.95) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border-top: 1px solid rgba(139, 92, 246, 0.2) !important;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3) !important;
        z-index: 999 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    .sticky-price {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
    }

    .sticky-emoji {
        font-size: 1.2rem !important;
    }

    .sticky-amount {
        font-size: 1.1rem !important;
        font-weight: 800 !important;
        color: #22c55e !important;
        display: block !important;
    }

    .sticky-label {
        font-size: 0.68rem !important;
        color: rgba(255, 255, 255, 0.7) !important;
        display: block !important;
    }

    .sticky-cta-btn {
        padding: 12px 20px !important;
        font-size: 0.88rem !important;
        border-radius: 10px !important;
        background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
        color: #000 !important;
        font-weight: 700 !important;
        white-space: nowrap !important;
        min-height: 44px !important;
        display: flex !important;
        align-items: center !important;
    }

    /* Floating dock - Hidden on mobile */
    .floating-dock,
    #floatingMenu {
        display: none !important;
    }

    /* Delivery countdown */
    .delivery-countdown,
    #deliveryCountdown {
        font-size: 0.7rem !important;
        padding: 8px 12px !important;
    }
}

/* ═══════════════════════════════════════════════════════
   12. COMPARISON CARDS - COMPACTAS
   ═══════════════════════════════════════════════════════ */
@media (max-width: 600px) {

    /* Comparison wrapper and cards */
    .comparison-wrapper {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .comparison-grid {
        gap: 16px !important;
    }

    .card-loser,
    .card-winner,
    .comparison-col {
        padding: 18px 16px !important;
        border-radius: 14px !important;
    }

    .loser-title,
    .winner-title,
    .comparison-col h3 {
        font-size: 1rem !important;
        margin-bottom: 14px !important;
    }

    .loser-list,
    .winner-list,
    .comparison-col ul {
        gap: 10px !important;
    }

    .loser-list li,
    .winner-list li,
    .comparison-col ul li {
        font-size: 0.8rem !important;
        padding: 8px 0 !important;
        gap: 10px !important;
        line-height: 1.4 !important;
    }

    .icon-x,
    .icon-emoji {
        font-size: 1rem !important;
    }
}

/* ═══════════════════════════════════════════════════════
   13. CREDENTIALS/CREATOR SECTION
   ═══════════════════════════════════════════════════════ */
@media (max-width: 600px) {

    /* Credentials section */
    .credentials-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .credential-card {
        margin-bottom: 16px !important;
    }

    .credential-img,
    .credentials-image,
    .creator-image {
        width: 100% !important;
        max-width: 320px !important;
        height: auto !important;
        margin: 0 auto 16px auto !important;
        display: block !important;
        border: 2px solid rgba(139, 92, 246, 0.4) !important;
        border-radius: 14px !important;
        box-shadow: 0 8px 32px rgba(139, 92, 246, 0.25) !important;
    }

    .credential-text {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
    }

    .credential-tape {
        font-size: 0.65rem !important;
        padding: 4px 10px !important;
    }

    /* Certificates in horizontal scroll */
    .certs-column {
        width: 100% !important;
    }

    .certs-title {
        font-size: 0.95rem !important;
        margin-bottom: 16px !important;
    }

    .cert-badge {
        padding: 18px 16px !important;
        margin-bottom: 14px !important;
        border-radius: 14px !important;
        min-height: 80px !important;
        display: flex !important;
        align-items: center !important;
        gap: 14px !important;
    }

    .cert-icon svg {
        width: 24px !important;
        height: 24px !important;
    }

    .cert-info strong {
        font-size: 1.05rem !important;
        font-weight: 700 !important;
        color: #ffffff !important;
        display: block !important;
        margin-bottom: 4px !important;
    }

    .cert-info span {
        font-size: 0.85rem !important;
        color: rgba(255, 255, 255, 0.8) !important;
        display: block !important;
    }

    .authority-statement {
        padding: 18px 16px !important;
        margin-top: 24px !important;
        border-radius: 14px !important;
    }

    .authority-statement p {
        font-size: 0.88rem !important;
        line-height: 1.5 !important;
    }

    /* Creator section */
    .creator-card {
        padding: 24px 18px !important;
        text-align: center !important;
    }

    .creator-avatar img {
        width: 140px !important;
        height: 140px !important;
        border: 3px solid #f97316 !important;
        box-shadow: 0 8px 32px rgba(249, 115, 22, 0.3) !important;
    }

    .creator-card h3 {
        font-size: 1.2rem !important;
        margin-bottom: 8px !important;
    }

    .creator-handle {
        font-size: 0.92rem !important;
        margin-bottom: 16px !important;
        color: #3b82f6 !important;
    }

    .creator-bio,
    .creator-card p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        margin-bottom: 18px !important;
        color: rgba(255, 255, 255, 0.95) !important;
    }

    /* Creator Badges */
    .creator-badges,
    .badges-row {
        gap: 10px !important;
        margin-top: 16px !important;
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }

    .creator-badge,
    .badge {
        padding: 12px 16px !important;
        font-size: 0.95rem !important;
        border-radius: 12px !important;
        font-weight: 700 !important;
        white-space: nowrap !important;
        min-height: 44px !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .creator-bio {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
    }

    .creator-tags {
        gap: 8px !important;
        margin-top: 14px !important;
    }

    .creator-tags .tag {
        font-size: 0.7rem !important;
        padding: 5px 10px !important;
    }
}

/* ═══════════════════════════════════════════════════════
   14. BONUS CARDS - GRID COMPACTO
   ═══════════════════════════════════════════════════════ */
@media (max-width: 600px) {
    .bonus-grid {
        gap: 8px !important;
    }

    .bonus-card {
        padding: 12px 10px !important;
        border-radius: 10px !important;
    }

    .bonus-icon {
        font-size: 1.6rem !important;
        margin-bottom: 6px !important;
    }

    .bonus-title {
        font-size: 0.7rem !important;
    }

    .bonus-value {
        font-size: 0.6rem !important;
    }
}

/* ═══════════════════════════════════════════════════════
   15. GUARANTEE BOX MOBILE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 600px) {
    .guarantee-box {
        padding: 12px 14px !important;
        border-radius: 10px !important;
        gap: 10px !important;
        margin-top: 14px !important;
    }

    .guarantee-icon {
        font-size: 1.3rem !important;
    }

    .guarantee-box p {
        font-size: 0.78rem !important;
        line-height: 1.4 !important;
    }
}

/* ═══════════════════════════════════════════════════════
   16. EXTRA SMALL DEVICES (iPhone SE/Mini - 375px)
   ═══════════════════════════════════════════════════════ */
@media (max-width: 375px) {

    .hero-title,
    .hero-headline-massive {
        font-size: 1.4rem !important;
    }

    .hero-subtitle-premium {
        font-size: 0.8rem !important;
    }

    .btn-cta-massive {
        padding: 12px 16px !important;
        font-size: 0.85rem !important;
    }

    .bento-card {
        min-height: 95px !important;
        padding: 10px 8px !important;
    }

    .bento-card h3 {
        font-size: 0.65rem !important;
    }

    .bento-card p {
        font-size: 0.55rem !important;
    }

    .problem-card h3 {
        font-size: 0.7rem !important;
    }

    .problem-card p {
        font-size: 0.62rem !important;
    }

    .price-current,
    .price-main-display .amount {
        font-size: 2.8rem !important;
    }

    .section-header-center h2 {
        font-size: 1.15rem !important;
    }

    .testimonial-quote {
        font-size: 0.72rem !important;
    }

    .step-number,
    .step-glow-number {
        width: 44px !important;
        height: 44px !important;
        font-size: 1.1rem !important;
    }
}

/* ═══════════════════════════════════════════════════════
   17. PERFORMANCE - REDUCIR ANIMACIONES MOBILE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 600px) {

    /* Desactivar animaciones complejas en mobile */
    .bento-card:hover,
    .problem-card:hover,
    .testimonial-card:hover,
    .target-card:hover,
    .step-card:hover,
    .bonus-card:hover,
    .pricing-card:hover,
    .pricing-card-golden:hover {
        transform: none !important;
    }

    /* Reducir duración de transiciones */
    * {
        transition-duration: 0.2s !important;
    }

    /* Desactivar parallax y efectos pesados */
    .hero-section::before,
    .hero-section::after {
        animation: none !important;
    }

    /* Stars background más sutil en mobile */
    body::before {
        animation: none !important;
        opacity: 0.5 !important;
    }
}

/* ═══════════════════════════════════════════════════════
   18. GLOBAL OVERFLOW PREVENTION
   ═══════════════════════════════════════════════════════ */
@media (max-width: 600px) {

    html,
    body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }

    * {
        max-width: 100% !important;
    }

    img,
    video,
    iframe {
        max-width: 100% !important;
        height: auto !important;
    }
}

/* ═══════════════════════════════════════════════════════
   19. MOBILE ELITE OPTIMIZATION - BENTO 1 COL + SAFE AREA
   ═══════════════════════════════════════════════════════ */

/* === FASE 1: BENTO GRID 1 COLUMNA EN PANTALLAS MUY PEQUEÑAS === */
@media (max-width: 480px) {

    /* Forzar 1 columna para mejor legibilidad en móviles pequeños */
    .bento-grid-premium {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    /* Hero card ocupa todo el ancho */
    .bento-hero,
    .bento-lg,
    .bento-mvp {
        grid-column: span 1 !important;
    }

    /* Cards más amplias y legibles */
    .bento-card {
        padding: 20px 24px !important;
    }

    /* MOSTRAR descripciones en mobile (antes estaban ocultas) */
    .bento-card p {
        display: block !important;
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        color: #a1a1aa !important;
    }

    /* Emojis más grandes para mejor visibilidad */
    .bento-emoji {
        font-size: 2.2rem !important;
        margin-bottom: 0.75rem !important;
    }

    /* Título más legible */
    .bento-card h3 {
        font-size: 1rem !important;
        margin-bottom: 8px !important;
    }

    /* Tags mejor posicionados */
    .bento-tag {
        position: static !important;
        display: inline-block !important;
        margin-top: 12px !important;
    }
}

/* === FASE 2: SAFE AREA PARA iPhone X+ === */
@supports (padding-bottom: env(safe-area-inset-bottom)) {

    body {
        padding-bottom: env(safe-area-inset-bottom, 100px);
    }

    /* WhatsApp FAB - posición segura */
    .whatsapp-fab,
    .fab-whatsapp,
    .floating-whatsapp,
    [class*="whatsapp"] {
        bottom: calc(24px + env(safe-area-inset-bottom, 80px)) !important;
    }

    /* Dock flotante - clearance adicional */
    .mobile-dock,
    .floating-dock,
    .dock-premium,
    [class*="dock"] {
        padding-bottom: env(safe-area-inset-bottom, 16px) !important;
        bottom: env(safe-area-inset-bottom, 0) !important;
    }
}

/* === FASE 3: PADDING GLOBAL MOBILE === */
@media (max-width: 480px) {

    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    /* Secciones con menos padding vertical */
    section,
    .section-padding {
        padding-top: 48px !important;
        padding-bottom: 48px !important;
    }

    /* Header más compacto */
    .section-header-center {
        margin-bottom: 32px !important;
    }

    /* Cards de pain points mejor espaciadas */
    .pain-grid {
        gap: 12px !important;
    }

    .pain-card {
        padding: 16px !important;
    }
}

/* === FASE 4: TOUCH TARGETS MÍNIMOS (WCAG 2.1) === */
@media (max-width: 768px) {

    /* Todos los elementos interactivos mínimo 44x44px */
    a:not(.nav-logo):not(.bento-card),
    button,
    .btn,
    [role="button"],
    input[type="submit"],
    input[type="button"] {
        min-height: 44px !important;
        min-width: 44px !important;
    }

    /* Links inline con padding extra para tap */
    p a,
    li a,
    .footer-links a {
        padding: 6px 4px !important;
        margin: -6px -4px !important;
        display: inline-block !important;
    }

    /* Botones CTA más grandes en mobile */
    .btn-cta-massive,
    .btn-cta-green,
    .btn-cta-secondary {
        padding: 16px 28px !important;
        font-size: 1rem !important;
        width: 100% !important;
        justify-content: center !important;
    }

    /* Nav hamburger más grande */
    .nav-hamburger {
        padding: 12px !important;
    }
}

/* === EXTRA: MEJORAS DE LEGIBILIDAD MOBILE === */
@media (max-width: 480px) {

    /* Hero title más legible */
    .hero-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem) !important;
        line-height: 1.2 !important;
    }

    .line-gray {
        font-size: 0.85em !important;
    }

    /* Subtítulo con mejor interlineado */
    .hero-subtitle-premium {
        font-size: 1rem !important;
        line-height: 1.7 !important;
    }

    /* CTAs stack vertical */
    .hero-cta-group {
        flex-direction: column !important;
        gap: 12px !important;
    }

    /* Trust row más compacta */
    .hero-trust-row {
        flex-direction: column !important;
        gap: 8px !important;
    }

    .trust-item {
        font-size: 0.85rem !important;
    }

    /* Precio más prominente */
    .price-main-display .amount {
        font-size: 3.5rem !important;
    }

    /* Garantía box más legible */
    .guarantee-box {
        padding: 16px !important;
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
    }
}

/* =======================================================
   FASE 2: CORRECCIONES AUDITORÍA MOBILE
   ======================================================= */

/* Fix #2: WhatsApp FAB - Subir posición para no tapar contenido */
@media (max-width: 768px) {
    .whatsapp-fab {
        bottom: calc(100px + env(safe-area-inset-bottom, 0px)) !important;
        right: 16px !important;
        width: 50px !important;
        height: 50px !important;
        padding: 0 !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .whatsapp-fab span {
        display: none !important;
    }

    .whatsapp-fab svg {
        width: 24px !important;
        height: 24px !important;
    }
}

/* Fix #3: Testimonios - Reducir espaciado vacío */
@media (max-width: 600px) {
    #testimonios {
        padding-bottom: 24px !important;
    }

    .testimonios-grid,
    .testimonials-grid {
        gap: 16px !important;
    }

    .testimonio-card,
    .testimonial-card {
        padding: 16px !important;
    }
}

/* Fix #4: Dock flotante más compacto */
@media (max-width: 600px) {
    .floating-dock {
        padding: 8px 12px !important;
        gap: 8px !important;
        border-radius: 20px !important;
    }

    .dock-demo {
        padding: 8px 12px !important;
        font-size: 0.85rem !important;
    }

    .dock-buy {
        padding: 8px 16px !important;
        font-size: 0.9rem !important;
    }

    .sticky-cta-bar {
        padding: 8px 16px !important;
    }

    .sticky-amount {
        font-size: 1.1rem !important;
    }
}

/* =======================================================
   FIX CRÍTICO: BENTO GRID 1 COLUMNA (MÁXIMA PRIORIDAD)
   Esta regla debe ir al final para sobrescribir cualquier otra
   ======================================================= */
@media screen and (max-width: 768px) {

    .bento-grid-premium,
    .bento-grid,
    [class*="bento-grid"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
    }

    .bento-card,
    .bento-hero,
    .bento-mvp,
    [class*="bento-card"] {
        width: 100% !important;
        flex: 0 0 auto !important;
    }
}

/* =======================================================
   🔥 FASE 3: MOBILE ELITE 10/10 - PERFECCIÓN ABSOLUTA
   Tipografía impactante, glows, gradientes, animaciones
   ======================================================= */

@media screen and (max-width: 768px) {

    /* ==========================================
       1. TIPOGRAFÍA HERO - IMPACTO MÁXIMO
       ========================================== */
    .hero h1,
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.15 !important;
        letter-spacing: -0.02em !important;
    }

    .hero h1 .highlight,
    .hero-title .highlight,
    .hero h1 span[style*="color"],
    .text-gradient-cyan {
        font-size: 2.4rem !important;
        background: linear-gradient(135deg, #00ffc8 0%, #00d4ff 50%, #00ffc8 100%) !important;
        -webkit-background-clip: text !important;
        background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        text-shadow: none !important;
        filter: drop-shadow(0 0 20px rgba(0, 255, 200, 0.4)) !important;
        animation: pulseGlow 3s ease-in-out infinite !important;
    }

    @keyframes pulseGlow {

        0%,
        100% {
            filter: drop-shadow(0 0 20px rgba(0, 255, 200, 0.4));
        }

        50% {
            filter: drop-shadow(0 0 35px rgba(0, 255, 200, 0.6));
        }
    }

    /* ==========================================
       2. EFECTOS GLOW - NEON PREMIUM
       ========================================== */
    .bento-card {
        background: linear-gradient(145deg,
                rgba(20, 20, 30, 0.95) 0%,
                rgba(15, 15, 25, 0.98) 100%) !important;
        border: 1px solid rgba(0, 200, 255, 0.15) !important;
        box-shadow:
            0 0 20px rgba(0, 200, 255, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    .bento-card:active {
        transform: scale(0.98) !important;
        box-shadow:
            0 0 30px rgba(0, 200, 255, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
    }

    /* Hero card glow especial */
    .bento-hero {
        border: 1px solid rgba(0, 255, 200, 0.25) !important;
        box-shadow:
            0 0 40px rgba(0, 255, 200, 0.1),
            0 8px 32px rgba(0, 0, 0, 0.3) !important;
    }

    /* ==========================================
       3. GRADIENTE HERO - MESH SUTIL
       ========================================== */
    .hero,
    #hero,
    [class*="hero-section"] {
        background:
            radial-gradient(ellipse at 20% 20%, rgba(0, 100, 200, 0.08) 0%, transparent 50%),
            radial-gradient(ellipse at 80% 80%, rgba(100, 0, 150, 0.06) 0%, transparent 50%),
            radial-gradient(ellipse at 50% 50%, rgba(0, 150, 100, 0.04) 0%, transparent 70%) !important;
    }

    /* ==========================================
       4. URGENCY BAR - PROMINENTE
       ========================================== */
    .urgency-bar,
    .countdown-bar,
    [class*="urgency"] {
        font-size: 0.95rem !important;
        padding: 14px 20px !important;
        background: linear-gradient(90deg,
                rgba(255, 100, 50, 0.15) 0%,
                rgba(255, 50, 100, 0.1) 100%) !important;
        border-bottom: 1px solid rgba(255, 100, 50, 0.3) !important;
    }

    .urgency-bar strong,
    .countdown-timer {
        color: #ff6b35 !important;
        font-weight: 700 !important;
        text-shadow: 0 0 10px rgba(255, 107, 53, 0.5) !important;
    }

    /* ==========================================
       5. MICRO-ANIMACIONES
       ========================================== */
    .btn-primary,
    .btn-cta,
    .dock-buy,
    .sticky-cta-btn {
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
        position: relative !important;
        overflow: hidden !important;
    }

    .btn-primary:active,
    .btn-cta:active,
    .dock-buy:active,
    .sticky-cta-btn:active {
        transform: scale(0.96) !important;
    }

    /* Ripple effect base */
    .btn-primary::after,
    .dock-buy::after {
        content: '' !important;
        position: absolute !important;
        inset: 0 !important;
        background: linear-gradient(45deg,
                transparent 30%,
                rgba(255, 255, 255, 0.1) 50%,
                transparent 70%) !important;
        transform: translateX(-100%) !important;
        transition: transform 0.5s !important;
    }

    .btn-primary:active::after,
    .dock-buy:active::after {
        transform: translateX(100%) !important;
    }

    /* ==========================================
       6. ESPACIADO PREMIUM - BREATHING ROOM
       ========================================== */
    .hero-content,
    .hero .container {
        padding-top: 24px !important;
        padding-bottom: 20px !important;
    }

    .hero-description,
    .hero p {
        margin-top: 16px !important;
        margin-bottom: 24px !important;
        line-height: 1.7 !important;
        opacity: 0.9 !important;
    }

    section {
        padding-top: 56px !important;
        padding-bottom: 56px !important;
    }

    /* ==========================================
       7. TAGS BENTO - ESTILIZADOS
       ========================================== */
    .bento-tag,
    .tag,
    [class*="tag"] {
        font-size: 0.7rem !important;
        padding: 5px 12px !important;
        border-radius: 20px !important;
        font-weight: 600 !important;
        letter-spacing: 0.5px !important;
        text-transform: uppercase !important;
        background: linear-gradient(135deg,
                rgba(255, 200, 50, 0.2) 0%,
                rgba(255, 150, 50, 0.15) 100%) !important;
        border: 1px solid rgba(255, 200, 50, 0.3) !important;
        color: #ffc832 !important;
        box-shadow: 0 0 12px rgba(255, 200, 50, 0.2) !important;
    }

    /* ==========================================
       8. CTAs PREMIUM - GLOW BUTTONS
       ========================================== */
    .btn-primary,
    .btn-cta,
    .cta-primary,
    .dock-buy {
        background: linear-gradient(135deg, #00c896 0%, #00a87a 100%) !important;
        box-shadow:
            0 4px 15px rgba(0, 200, 150, 0.4),
            0 0 30px rgba(0, 200, 150, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
        font-weight: 700 !important;
    }

    .btn-secondary,
    .cta-secondary,
    .dock-demo {
        background: rgba(255, 255, 255, 0.08) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    }

    /* ==========================================
       9. NAVBAR ELITE
       ========================================== */
    .navbar,
    nav,
    header {
        backdrop-filter: blur(20px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
        background: rgba(10, 10, 15, 0.85) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    .navbar .logo,
    .logo-text {
        font-weight: 700 !important;
        letter-spacing: -0.02em !important;
    }

    /* ==========================================
       10. TESTIMONIOS ELITE
       ========================================== */
    .testimonio-card,
    .testimonial-card,
    [class*="testimonial"] {
        background: linear-gradient(145deg,
                rgba(25, 25, 35, 0.95) 0%,
                rgba(20, 20, 30, 0.98) 100%) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
        border-radius: 16px !important;
    }

    /* Estrellas más visibles */
    .stars,
    .rating,
    [class*="star"] {
        font-size: 1.1rem !important;
        filter: drop-shadow(0 0 4px rgba(255, 200, 50, 0.5)) !important;
    }

    /* ==========================================
       11. FOOTER ELITE
       ========================================== */
    footer {
        background: linear-gradient(180deg,
                rgba(10, 10, 15, 1) 0%,
                rgba(5, 5, 10, 1) 100%) !important;
        border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    }

    /* ==========================================
       12. DOCK FLOTANTE ULTRA-PREMIUM
       ========================================== */
    .floating-dock,
    .mobile-dock,
    [class*="dock"] {
        background: rgba(15, 15, 20, 0.92) !important;
        backdrop-filter: blur(24px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 24px !important;
        box-shadow:
            0 8px 32px rgba(0, 0, 0, 0.4),
            0 0 0 1px rgba(255, 255, 255, 0.05),
            inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    }

    /* ==========================================
       13. PROMISE BOX ELITE
       ========================================== */
    .promise-box,
    .guarantee-box,
    [class*="promise"] {
        background: linear-gradient(135deg,
                rgba(0, 100, 80, 0.15) 0%,
                rgba(0, 80, 60, 0.1) 100%) !important;
        border: 1px solid rgba(0, 200, 150, 0.25) !important;
        border-radius: 16px !important;
        box-shadow: 0 0 20px rgba(0, 200, 150, 0.1) !important;
    }

    .promise-box svg,
    .promise-icon {
        filter: drop-shadow(0 0 8px rgba(0, 200, 150, 0.5)) !important;
    }

    /* ==========================================
       14. SCROLL SUAVE GLOBAL
       ========================================== */
    html {
        scroll-behavior: smooth !important;
    }

    /* ==========================================
       15. SELECTION STYLE
       ========================================== */
    ::selection {
        background: rgba(0, 200, 150, 0.3) !important;
        color: #fff !important;
    }
}

/* =======================================================
   🚨 FIX NUCLEAR MOBILE - PRIORIDAD MÁXIMA
   REGLA CRÍTICA: Texto NO puede tocar los bordes
   ======================================================= */
@media screen and (max-width: 768px) {

    /* ==========================================
       1. PADDING LATERAL OBLIGATORIO - SIN EXCEPCIONES
       El texto NUNCA debe tocar el borde del teléfono
       ========================================== */
    body {
        padding-left: 20px !important;
        padding-right: 20px !important;
        overflow-x: hidden !important;
    }

    .container,
    .content,
    main,
    article,
    section>div,
    .hero-content,
    .section-header-center,
    .pricing-card-golden,
    .creator-card,
    .credentials-grid,
    .pain-grid,
    .comparison-wrapper,
    .target-grid,
    .testimonials-grid,
    .bento-grid-premium,
    .process-timeline {
        padding-left: 20px !important;
        padding-right: 20px !important;
        box-sizing: border-box !important;
    }

    /* Fix container ancho máximo */
    .container {
        max-width: 100% !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* ==========================================
       2. TÍTULOS H1 - OPTIMIZADO PARA LEGIBILIDAD
       ========================================== */
    h1,
    .hero-title,
    .hero h1 {
        font-size: 28px !important;
        line-height: 1.3 !important;
        letter-spacing: -0.02em !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        word-wrap: break-word !important;
        hyphens: none !important;
    }

    .line-gray {
        font-size: 0.85em !important;
        display: inline !important;
    }

    .line-gradient {
        font-size: 1em !important;
        display: inline !important;
    }

    /* H2 y H3 también ajustados */
    h2 {
        font-size: 1.5rem !important;
        text-align: center !important;
        line-height: 1.35 !important;
        padding: 0 !important;
        width: 100% !important;
    }

    h3 {
        font-size: 1.15rem !important;
        text-align: center !important;
    }

    /* ==========================================
       3. LAYOUT COLUMNA VERTICAL CENTRADA
       ========================================== */
    .hero-grid-premium,
    .hero-grid,
    .comparison-wrapper,
    .credentials-grid,
    .pain-grid,
    .target-grid,
    .testimonials-grid,
    .testimonials-stats {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
        width: 100% !important;
    }

    /* Cards a ancho completo CON PADDING INTERNO */
    .pain-card,
    .target-card,
    .testimonial-card,
    .credential-card,
    .certs-column,
    .card-winner,
    .card-loser,
    .bento-card,
    .creator-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 20px !important;
        box-sizing: border-box !important;
    }

    /* Texto dentro de cards respira */
    .pain-card h3,
    .pain-card p,
    .target-card h3,
    .target-card p,
    .bento-card h3,
    .bento-card p {
        margin: 0 0 12px 0 !important;
    }

    /* Hero content centrado */
    .hero-content,
    .hero-visual {
        width: 100% !important;
        text-align: center !important;
    }

    /* CTAs centrados y full width */
    .hero-cta-group {
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px !important;
        width: 100% !important;
    }

    .btn-cta-massive,
    .btn-cta-secondary,
    .btn-cta-green {
        width: 100% !important;
        max-width: 320px !important;
        text-align: center !important;
        justify-content: center !important;
    }

    /* Trust items centrados */
    .hero-trust-row {
        flex-direction: column !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .trust-item {
        justify-content: center !important;
    }

    /* Social proof centrado */
    .social-proof-inline {
        justify-content: center !important;
        flex-wrap: wrap !important;
    }

    /* ==========================================
       4. PÁRRAFOS Y TEXTO - LEGIBILIDAD
       ========================================== */
    p,
    .hero-subtitle-premium,
    .section-subtitle,
    .pain-desc,
    .creator-bio {
        font-size: 0.95rem !important;
        line-height: 1.65 !important;
        text-align: center !important;
        max-width: 100% !important;
    }

    /* Guarantee box legible */
    .guarantee-box {
        margin: 20px auto !important;
        padding: 16px !important;
        text-align: center !important;
        max-width: 100% !important;
    }

    .guarantee-box p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }

    /* ==========================================
       5. VIDEO CONTAINER - AJUSTADO
       ========================================== */
    .video-container-premium,
    .browser-frame {
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 24px !important;
    }

    .video-label-floating {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        margin-bottom: 12px !important;
        display: inline-flex !important;
    }

    /* ==========================================
       6. URGENCY BAR Y HEADERS FIJOS
       ========================================== */
    .urgency-bar-premium,
    .delivery-countdown {
        padding: 10px 20px !important;
        text-align: center !important;
        font-size: 0.8rem !important;
    }

    /* ==========================================
       7. EYEBROW BADGE CENTRADO
       ========================================== */
    .hero-eyebrow-emergency,
    .hero-badge {
        display: block !important;
        text-align: center !important;
        margin: 0 auto 20px auto !important;
        width: fit-content !important;
    }

    /* ==========================================
       8. SECCIONES - SEPARACIÓN VERTICAL ELEGANTE
       ========================================== */
    .section-padding {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    /* Separación entre secciones principales */
    section,
    .hero-section,
    #problema,
    #comparacion,
    #herramientas,
    #credenciales,
    #creador,
    #proceso,
    #testimonios,
    #para-quien,
    #precio {
        margin-bottom: 25px !important;
    }

    /* ==========================================
       9. PRICING CARD CENTRADO
       ========================================== */
    .pricing-card-golden {
        text-align: center !important;
        margin: 0 auto !important;
        max-width: 100% !important;
    }

    .pricing-features {
        text-align: left !important;
        padding-left: 20px !important;
    }

    .pricing-features li {
        font-size: 0.9rem !important;
    }

    /* ==========================================
       10. IMÁGENES PROTAGONISTAS EN MÓVIL
       ========================================== */

    /* FOTO DE EDUARDO - Perfil centrado y grande */
    .creator-card img,
    .creator-image,
    .creator-avatar,
    .about-image,
    .avatar-image,
    .profile-image,
    #creador img,
    .creador img {
        width: 150px !important;
        height: 150px !important;
        min-width: 150px !important;
        min-height: 150px !important;
        display: block !important;
        margin: 0 auto 20px auto !important;
        border-radius: 50% !important;
        object-fit: cover !important;
    }

    /* Texto del creador centrado */
    .creator-card,
    .creator-content,
    .creator-info,
    #creador .content,
    .creador-texto {
        text-align: center !important;
    }

    /* CREDENCIALES - Imágenes grandes y legibles */
    .credential-card img,
    .credential-image,
    .cert-image,
    .certificate-image,
    #credenciales img,
    .credenciales img,
    .credentials-grid img,
    .certs-column img {
        width: 90% !important;
        max-width: 300px !important;
        height: auto !important;
        display: block !important;
        margin: 0 auto 20px auto !important;
    }

    /* SEPARACIÓN GENERAL imagen-texto */
    section img,
    .card img,
    .bento-card img,
    .testimonial-card img,
    figure img {
        margin-bottom: 20px !important;
    }

    /* Imágenes generales en secciones - responsivas y centradas */
    .section-image,
    .content-image,
    .feature-image {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
        margin: 0 auto 20px auto !important;
    }

    /* ==========================================
       11. SECCIÓN RESPALDO/CREDENCIALES - COLUMNA
       ========================================== */
    .credentials-section,
    .credential-wrapper,
    .credential-content,
    #credenciales .container,
    #credenciales .content,
    .credentials-grid,
    .certs-column {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    /* Imagen credencial primero y grande */
    .credentials-grid img,
    .credential-card img,
    .certs-column img,
    #credenciales img {
        order: 1 !important;
        width: 80% !important;
        max-width: 280px !important;
        margin: 0 auto 20px auto !important;
    }

    /* Texto credencial después */
    .credentials-grid p,
    .credential-card p,
    .certs-column p,
    #credenciales p {
        order: 2 !important;
        text-align: center !important;
    }

    /* ==========================================
       12. TARJETAS DE DOLOR - PADDING INTERNO
       ========================================== */
    .pain-card,
    .feature-card,
    .problem-card,
    .pain-point,
    .esto-te-suena-card {
        padding: 1.5rem !important;
        box-sizing: border-box !important;
    }

    .pain-card h3,
    .pain-card p,
    .feature-card h3,
    .feature-card p {
        margin: 0 0 12px 0 !important;
        padding: 0 !important;
    }

    /* ==========================================
       13. PASOS 1-2-3-4 - ALINEACIÓN CENTRADA
       ========================================== */
    .process-step,
    .step-item,
    .timeline-item,
    .step-row,
    .process-timeline .step {
        display: flex !important;
        align-items: center !important;
        gap: 16px !important;
        text-align: left !important;
    }

    .step-number,
    .step-icon,
    .process-icon,
    .timeline-number {
        flex-shrink: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .step-content,
    .step-text,
    .timeline-content {
        flex: 1 !important;
    }

    /* ==========================================
       SOBREESCRITURA OBLIGATORIA - CÓDIGO EXACTO
       ========================================== */

    /* 1. CORRECCIÓN DE CREDENCIAL (RESPALDO) */
    .respaldo-container,
    .credencial-flex {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .respaldo-container img,
    .credencial-flex img {
        width: 85% !important;
        margin-bottom: 20px !important;
    }

    /* 2. CORRECCIÓN DE TARJETAS (AIRE INTERNO) */
    .feature-card,
    .pain-point-card,
    [class*='card'] {
        padding: 28px !important;
        margin-bottom: 15px !important;
    }

    /* 3. LIMPIEZA DE HEADLINE */
    h1 {
        font-size: 26px !important;
        line-height: 1.3 !important;
    }

    /* 4. ALINEACIÓN DE PASOS */
    .step-item,
    .how-it-works-row {
        display: flex !important;
        align-items: center !important;
        gap: 15px !important;
    }
}