/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; /* Smooth scrolling for anchor links */
}

:root {
    --primary: #667eea;
    --primary-dark: #5568d3;
    --secondary: #764ba2;
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-light: #718096;
    --bg-primary: #ffffff;
    --bg-secondary: #f7fafc;
    --bg-tertiary: #edf2f7;
    --border: #e2e8f0;
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Cursor Trail Effect */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
}

.cursor-follower {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.15s ease;
    opacity: 0.6;
}

.cursor-follower.active {
    transform: scale(1.5);
    opacity: 0.8;
    background: rgba(102, 126, 234, 0.1);
}

/* Animated Grid Background */
.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.03;
    background-image: 
        linear-gradient(var(--primary) 1px, transparent 1px),
        linear-gradient(90deg, var(--primary) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Spotlight Effect */
.spotlight {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    transition: transform 0.2s ease;
    mix-blend-mode: soft-light;
}

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

/* Typography */
h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

.gradient-text {
    background: var(--gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--bg-primary);
    color: var(--primary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s;
    border: 2px solid var(--primary);
}

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

.btn-outline {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s;
    border: 2px solid var(--border);
    cursor: pointer;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    cursor: pointer;
}

.btn-outline-nav {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: transparent;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s;
    border: 1.5px solid var(--border);
}

.btn-outline-nav:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(102, 126, 234, 0.05);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-image {
    height: 47px;
    width: auto;
    object-fit: contain;
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

/* Mejora visual de botones en navbar */
button.btn-outline-nav {
    border-radius: 10px;
    border-width: 2px;
}

.btn-secondary {
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.18);
}

.btn-secondary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.24);
}

.nav-links a:not(.btn-secondary):hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    padding: 9.5rem 0 6rem;
    background: linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.08) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(5deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.75rem;
    margin-top: 0.5rem;
    border: 1px solid rgba(102, 126, 234, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

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

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

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

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

.hero-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
}

.image-placeholder:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 80px rgba(102, 126, 234, 0.4);
}

.image-placeholder:hover::before {
    animation: shimmer 1.5s;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Why Reviews Matter Section */
.why-reviews {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    height: 100%;
    align-items: stretch;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.12);
    border-color: rgba(102, 126, 234, 0.3);
}

.benefit-icon {
    font-size: 2.5rem;
    line-height: 1;
    display: inline-block;
    opacity: 0.9;
}

.benefit-card h3 {
    font-size: 1.35rem;
    color: var(--text-primary);
    margin: 0;
    font-weight: 700;
}

.benefit-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    max-height: 4.8rem;
    overflow: hidden;
}

.benefit-description strong {
    color: var(--primary);
    font-weight: 700;
}

.benefit-stats-simple {
    display: flex;
    gap: 2rem;
    padding: 1.25rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    justify-content: center;
    min-height: 5.5rem;
    align-items: center;
}

.stat-item-simple {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.stat-num {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.3;
    font-weight: 500;
}

.benefit-value {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    min-height: 3.2rem;
    display: flex;
    align-items: flex-start;
}

.benefit-source {
    font-size: 0.7rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: auto;
    padding-top: 0.5rem;
}

.why-reviews-cta {
    text-align: center;
    padding: 2.5rem 3rem;
    background: white;
    border-radius: 16px;
    border: 2px solid var(--border);
}

.why-reviews-cta h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.why-reviews-cta p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--bg-primary);
    scroll-margin-top: 80px; /* Smooth scroll offset for fixed navbar */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
    border-color: var(--primary);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.3));
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotateZ(5deg);
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 100% {
        transform: scale(1.1) translateY(0);
    }
    50% {
        transform: scale(1.1) translateY(-10px);
    }
}

.feature-card h3 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: var(--bg-secondary);
    scroll-margin-top: 80px; /* Smooth scroll offset for fixed navbar */
}

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

.step {
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0;
    }
}

.step:hover .step-number {
    transform: scale(1.1) rotateY(360deg);
}

.step-content h3 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.step-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.step-image-placeholder {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-primary);
    box-shadow: var(--shadow-md);
}

/* Platforms Section */
.platforms {
    padding: 6rem 0;
    background: var(--bg-primary);
    scroll-margin-top: 80px; /* Smooth scroll offset for fixed navbar */
}

/* Beta Notice */
.beta-notice {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    margin-bottom: 3rem;
}

.beta-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.beta-content h3 {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.beta-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

.beta-content strong {
    color: var(--primary);
    font-weight: 700;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.platform-card {
    padding: 2rem;
    background: rgba(247, 250, 252, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s ease;
}

.platform-card:hover::before {
    left: 100%;
}

/* Platform Status Badges */
.platform-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.platform-status.available {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.platform-status.coming-soon {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

/* Active Platform */
.platform-card.active-platform {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.03);
}

.platform-card.active-platform:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.2);
    border-color: #10b981;
}

/* Disabled Platform */
.platform-card.disabled-platform {
    opacity: 0.6;
    pointer-events: none;
}

.platform-card.disabled-platform .platform-logo {
    filter: grayscale(100%);
    opacity: 0.5;
}

.platform-logo {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.platform-card h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.platform-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.platforms-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
}

.platforms-note a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.platforms-note a:hover {
    text-decoration: underline;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: var(--gradient);
    color: white;
    scroll-margin-top: 80px; /* Smooth scroll offset for fixed navbar */
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 1.5rem;
}

.cta-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
}

.cta-form button {
    white-space: nowrap;
    background: var(--text-primary);
}

.cta-form button:hover {
    background: var(--text-secondary);
}

.cta-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background: var(--text-primary);
    color: white;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 28px;
    width: auto;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 8rem 0 4rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .cta-form {
        flex-direction: column;
    }

    .beta-notice {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.5rem;
    }

    .beta-icon {
        font-size: 2rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .benefit-card {
        padding: 2rem 1.5rem;
    }

    .why-reviews-cta {
        padding: 2rem 1.5rem;
    }

    .why-reviews-cta h3 {
        font-size: 1.35rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    /* Navbar móvil - una sola línea */
    .nav-content {
        gap: 0.5rem;
        padding: 1rem 0;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
    }

    .nav-links {
        gap: 0.5rem;
        flex-wrap: nowrap;
        justify-content: flex-end;
        align-items: center;
        min-width: 0; /* Permite que se comprima */
    }

    .nav-links a:not(.btn-secondary):not(.btn-outline-nav) {
        display: none;
    }

    /* Botones más compactos para una sola línea */
    .btn-outline-nav {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
        white-space: nowrap;
        min-width: fit-content;
        position: relative;
        z-index: 100;
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(102, 126, 234, 0.2);
        touch-action: manipulation;
    }

    .btn-secondary {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
        white-space: nowrap;
        min-width: fit-content;
        position: relative;
        z-index: 100;
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(102, 126, 234, 0.2);
        touch-action: manipulation;
    }

    .logo {
        font-size: 1.1rem;
        flex-shrink: 0; /* No se comprime */
    }

    .logo-image {
        height: 35px;
        width: auto;
    }

    /* Asegurar que el hero no se solape con navbar */
    .hero {
        padding-top: 7.25rem !important;
    }

    .features-grid,
    .platforms-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        position: sticky;
        top: 80px;
        background: white;
        padding: 1rem;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        margin-top: 1rem;
        z-index: 10;
    }

    body {
        cursor: auto;
    }

    .cursor-dot, .cursor-follower, .spotlight {
        display: none;
    }

    /* Desactivar TODAS las animaciones/transiciones en móvil */
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }

    /* Quitar brillo/shine de la badge en móvil */
    .badge::before {
        animation: none !important;
    }
}

/* Mobile-only hardening to prevent horizontal scroll and center content */
@media (max-width: 640px) {
    html, body {
        max-width: 100vw;
        overflow-x: hidden;
    }

    .container {
        max-width: 100vw;
        margin: 0 auto;
        overflow-x: hidden;
    }

    /* Hide dashboard image on mobile */
    .image-container, .dashboard-screenshot {
        display: none !important;
    }

    /* Stack benefit cards to avoid lateral scroll */
    .benefits-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    .benefit-card {
        width: 100%;
    }

    /* Keep primary CTAs centered and wrapping */
    .hero-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }

    /* Botones centrados y a ancho completo en móvil */
    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        width: 100%;
        text-align: center;
    }

    /* Guard against navbar causing horizontal scroll */
    .navbar, .nav-content, .nav-links {
        max-width: 100vw;
        overflow-x: hidden;
    }

    /* Disable fade-in/out animations on mobile */
    .feature-card, .step, .platform-card, .benefit-card {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }

    /* Prevent nested/inner scrolling – make the page a single scroll layer */
    *, *::before, *::after {
        overscroll-behavior: none; /* avoid scroll chaining */
        -webkit-overflow-scrolling: auto;
    }
    .hero-content,
    .image-container,
    .features-grid, .platforms-grid, .steps,
    .benefits-grid, .benefit-card,
    .section, .section-header,
    .footer, .footer-content, .container {
        overflow: visible !important;
    }
    /* Ensure canvas/preview wrappers don't create their own scroll context */
    .image-container { max-height: none !important; }

    /* Make hero not overlap next sections on mobile */
    .hero {
        overflow: hidden !important;
        padding-bottom: 2rem !important;
    }
    .hero-content { z-index: 0 !important; }
    .image-container { margin-bottom: 1.5rem; }
    .hero::before, .hero::after { content: none !important; display: none !important; }
    .grid-background, .particles { display: none !important; }
}

/* Estilos específicos para pantallas muy pequeñas (iPhone 12 Pro, etc.) */
@media (max-width: 390px) {
    .nav-content {
        gap: 0.25rem;
        padding: 0.6rem 0;
    }

    .nav-links {
        gap: 0.25rem;
    }

    .btn-outline-nav {
        padding: 0.35rem 0.5rem;
        font-size: 0.7rem;
        position: relative;
        z-index: 100;
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(102, 126, 234, 0.2);
        touch-action: manipulation;
    }

    .btn-secondary {
        padding: 0.35rem 0.5rem;
        font-size: 0.7rem;
        position: relative;
        z-index: 100;
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(102, 126, 234, 0.2);
        touch-action: manipulation;
    }

    .logo {
        font-size: 1rem;
    }

    .logo-image {
        height: 31px;
        width: auto;
    }

    /* Ajustar hero para pantallas muy pequeñas y respetar espacio bajo navbar */
    .hero {
        padding-top: 7.5rem !important;
    }

    .badge {
        font-size: 0.82rem;
        padding: 0.6rem 1.1rem;
        margin-bottom: 1.75rem;
        margin-top: 0.6rem;
    }

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

    .benefit-stats-simple {
        gap: 1.5rem;
    }

    .why-reviews-cta {
        padding: 1.75rem 1.25rem;
    }

    .why-reviews-cta h3 {
        font-size: 1.2rem;
    }

    .why-reviews-cta p {
        font-size: 0.95rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.feature-card,
.step,
.platform-card {
    animation: fadeIn 0.6s ease-out;
}

/* Particles Effect */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat 15s infinite ease-in-out;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

/* Glow on hover for links */
a:not(.btn-primary):not(.btn-secondary):not(.btn-outline) {
    position: relative;
}

a:not(.btn-primary):not(.btn-secondary):not(.btn-outline)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

a:not(.btn-primary):not(.btn-secondary):not(.btn-outline):hover::after {
    width: 100%;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

/* Demo Modal - Centered */
#demoAccessModal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
    align-items: center;
    justify-content: center;
}

#demoAccessModal .modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(148, 163, 184, 0.1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

#demoAccessModal .modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
}

#demoAccessModal .modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

#demoAccessModal .modal-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#demoAccessModal .modal-header p {
    color: #64748b;
    font-size: 1rem;
    margin: 0;
}

/* Phone Input Group */
.phone-input-group {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.phone-input-group:focus-within {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.phone-prefix {
    background: #f8fafc;
    color: #64748b;
    padding: 1rem 0.75rem;
    font-weight: 500;
    font-size: 0.9rem;
    border-right: 1px solid #e2e8f0;
    min-width: 55px;
    text-align: center;
    border-radius: 10px 0 0 10px;
}

.phone-input-group input {
    border: none;
    outline: none;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    background: transparent;
    flex: 1;
    color: #1e293b;
    border-radius: 0 10px 10px 0;
}

.phone-input-group input::placeholder {
    color: #94a3b8;
}

/* Demo Form Enhancements */
#demoAccessForm .form-group {
    margin-bottom: 1.5rem;
}

#demoAccessForm .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
    font-size: 0.95rem;
}

#demoAccessForm input[type="text"] {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: #1e293b;
}

#demoAccessForm input[type="text"]:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

#demoAccessForm input[type="text"]::placeholder {
    color: #94a3b8;
}

#demoAccessForm .btn-full {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

#demoAccessForm .btn-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

#demoAccessForm .form-note {
    text-align: center;
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 1.5rem;
    line-height: 1.5;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 3rem;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.modal-close,
.modal-close-demo {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.2s;
    line-height: 1;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    user-select: none;
    -webkit-user-select: none;
}

.modal-close:hover,
.modal-close-demo:hover {
    color: var(--text-primary);
    background: var(--bg-secondary);
    transform: rotate(90deg);
}

.modal-header {
    margin-bottom: 2rem;
    text-align: center;
}

.modal-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* ===== Plan Confirmation Success State ===== */
.auth-modal-content.success-state {
    max-width: 400px;
    padding: 2rem 1.75rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(102,126,234,0.25);
    box-shadow: 0 20px 50px rgba(102,126,234,0.35);
}

.plan-confirmation {
    text-align: center;
    padding: 0.5rem 0;
}

.plan-confirmation .success-hero { 
    width: 90px; 
    height: 90px; 
    margin: 0 auto 1rem auto; 
    position: relative;
}

.plan-confirmation .success-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(from 180deg, rgba(102,126,234,.4), rgba(118,75,162,.4), rgba(102,126,234,.4));
    filter: blur(8px) saturate(130%);
    animation: ringSpin 2.4s linear infinite;
    opacity: .85;
}

.plan-confirmation .success-check { 
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #22c55e 0%, #10b981 60%, #059669 100%);
    box-shadow: 0 12px 30px rgba(16,185,129,.4), 0 0 0 4px rgba(34,197,94,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: popIn .5s ease-out both;
}

.plan-confirmation .success-check svg { 
    width: 36px; 
    height: 36px; 
    stroke: #ffffff; 
}

.plan-confirmation .success-title { 
    font-size: 2.25rem; 
    margin: .35rem 0 .35rem 0; 
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    line-height: 1.2;
}

.plan-confirmation .success-subtitle { 
    font-size: 1rem; 
    color: #64748b; 
    margin: 0 0 1rem 0; 
    line-height: 1.6;
}

.plan-confirmation .btn-primary { 
    width: 100%; 
    margin-top: .65rem; 
}

@keyframes popIn { 
    from { transform: scale(.65); opacity: 0; } 
    to { transform: scale(1); opacity: 1; } 
}

@keyframes ringSpin { 
    to { transform: rotate(360deg); } 
}

.dashboard-access-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group input {
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: -0.5rem;
}

/* ==================== PRICING SECTION ==================== */
.pricing-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 5rem 0;
    scroll-margin-top: 80px; /* Smooth scroll offset for fixed navbar */
}

.pricing-notice {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0 3rem 0;
    text-align: center;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15);
    animation: fadeInUp 0.6s ease-out;
}

.notice-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.notice-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.notice-text h3 {
    color: #92400e;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.notice-text p {
    color: #78350f;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .notice-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .notice-icon {
        font-size: 2rem;
    }
    
    .notice-text h3 {
        font-size: 1.25rem;
    }
    
    .notice-text p {
        font-size: 1rem;
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-color: #667eea;
    transform: scale(1.05);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.pricing-description {
    color: #718096;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.pricing-price {
    margin-bottom: 2.5rem;
}

.pricing-price .price {
    font-size: 3rem;
    font-weight: 800;
    color: #667eea;
    line-height: 1;
}

.pricing-price .period {
    font-size: 1rem;
    color: #718096;
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
    font-size: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

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

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
    font-size: 1.1rem;
}

.pricing-cta {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.pricing-card.featured .pricing-cta {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    box-shadow: 0 4px 15px rgba(72, 187, 120, 0.3);
}

.pricing-card.featured .pricing-cta:hover {
    box-shadow: 0 10px 25px rgba(72, 187, 120, 0.4);
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 3rem 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .pricing-price .price {
        font-size: 2.5rem;
    }
}

/* ==================== NOTIFICATION ANIMATIONS ==================== */
@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

/* ==================== USER AVATAR ==================== */
.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    border: 2px solid transparent;
}

.user-avatar:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.user-avatar svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .user-avatar {
        width: 36px;
        height: 36px;
    }
    
    .user-avatar svg {
        width: 18px;
        height: 18px;
    }
}

/* ==================== AUTH MODAL ==================== */
.auth-modal-content {
    max-width: 480px;
    width: 90%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity .2s ease;
}
.auth-modal-content.show { opacity: 1; }

/* Auth buttons styling */
.auth-modal-content .btn-primary,
.auth-modal-content .btn-secondary,
.auth-modal-content button[type="submit"] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 1rem;
}

.auth-modal-content .btn-primary:hover,
.auth-modal-content .btn-secondary:hover,
.auth-modal-content button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.auth-modal-content .btn-primary:disabled,
.auth-modal-content .btn-secondary:disabled,
.auth-modal-content button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.auth-container {
    position: relative;
}

.auth-form-container {
    display: none;
}

.auth-form-container.active {
    display: block;
    animation: fadeIn 0.3s ease-out;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.btn-google {
    width: 100%;
    padding: 0.875rem 1rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    color: #374151;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.btn-google:hover {
    border-color: #d1d5db;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.auth-divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
    color: #94a3b8;
    font-size: 0.9rem;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e2e8f0;
    z-index: 1;
}

.auth-divider span {
    background: white;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #64748b;
    gap: 0.5rem;
}

.checkbox-label input[type="checkbox"] {
    cursor: pointer;
}

.forgot-password {
    color: #667eea;
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-password:hover {
    text-decoration: underline;
}

.terms-link {
    color: #667eea;
    text-decoration: none;
}

.terms-link:hover {
    text-decoration: underline;
}

.auth-switch {
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
    margin: 1rem 0 0;
}

.auth-switch a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.auth-switch a:hover {
    text-decoration: underline;
}

/* Footer Logo Image */
.footer-logo-image {
    height: 28px;
    width: auto;
}

/* Mode Selector */
/* ===== Demo Review styles ===== */
.demo-modal-content {
    max-width: 880px;
    width: 88%;
    margin: auto;
    max-height: 80vh;
    overflow-y: auto;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.demo-modal-content.show {
    opacity: 1;
}

.demo-container {
    position: relative;
}

.demo-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.demo-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.demo-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.demo-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.btn-demo-option {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-align: left;
}

.btn-demo-option:hover {
    border-color: #667eea;
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.btn-demo-option.active {
    border-color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

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

.demo-option-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.demo-option-text strong {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
}

.demo-option-text small {
    color: var(--text-light);
    font-size: 0.8rem;
}

.demo-phone-section {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.demo-phone-section.error {
    border-color: #ef4444;
    background: #fef2f2;
}

.demo-phone-section .form-group {
    position: relative;
}

.demo-phone-section .error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: none;
}

.demo-phone-section.error .error-message {
    display: block;
}

.demo-phone-section.error .phone-input-group {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.stars-input {
    display: inline-flex;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.stars-input button {
    background: transparent;
    border: 2px solid #e2e8f0;
    color: #fbbf24;
    font-size: 1.2rem;
    border-radius: 8px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.stars-input button.active,
.stars-input button:hover {
    background: #fff7ed;
    border-color: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.2);
}

.ai-response-block {
    margin-top: 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.ai-response-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.ai-response {
    white-space: pre-wrap;
    color: #111827;
    line-height: 1.6;
    font-size: 0.9rem;
    background: white;
    padding: 1rem;
    border-radius: 12px;
    border-left: 4px solid #667eea;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.loading {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: #475569;
    margin-bottom: .75rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
}

.spinner {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid #e5e7eb;
    border-top-color: #667eea;
    animation: spin 1s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg) } }

/* Demo Progress Indicator */
.demo-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.progress-step.active {
    opacity: 1;
}

.progress-step.completed {
    opacity: 0.7;
}

.progress-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.progress-step.active .progress-circle {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    transform: scale(1.1);
}

.progress-step.completed .progress-circle {
    background: #10b981;
    color: white;
}

.progress-step span {
    font-size: 0.75rem;
    font-weight: 500;
    color: #64748b;
}

.progress-step.active span {
    color: #667eea;
    font-weight: 600;
}

.progress-line {
    width: 80px;
    height: 2px;
    background: #e2e8f0;
    margin: 0 0.5rem;
}

/* Demo Steps */
.demo-step {
    animation: fadeIn 0.3s ease;
}

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

/* Demo Actions */
.demo-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.demo-actions .btn-outline,
.demo-actions .btn-primary {
    flex: 1;
    padding: 0.875rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-actions .btn-outline {
    background: white;
    border: 2px solid #e2e8f0;
    color: #64748b;
}

.demo-actions .btn-outline:hover {
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.demo-actions .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
}

.demo-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

#generateAIResponseBtn,
#generateForDemoBtn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

#generateAIResponseBtn:hover,
#generateForDemoBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

#generateAIResponseBtn:disabled,
#generateForDemoBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Responsive */
@media (max-width: 640px) {
    .demo-options {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .btn-demo-option {
        padding: 0.75rem;
    }
    
    .demo-modal-content {
        width: 95%;
        max-width: 95%;
        max-height: 90vh;
        overflow-y: auto;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
    }
    
    .demo-header {
        margin-bottom: 1rem;
    }
    
    .demo-options {
        margin-bottom: 1rem;
    }
    
    .demo-phone-section {
        margin-bottom: 1rem;
        padding: 0.75rem;
    }
    
    .ai-response-block {
        padding: 1rem;
        margin-top: 0.75rem;
    }
    
    .ai-response {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
    
    #generateAIResponseBtn,
    #generateForDemoBtn {
        margin-top: 0.75rem;
        padding: 0.75rem 1.5rem;
    }
}
.mode-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.mode-option {
    cursor: pointer;
    position: relative;
}

.mode-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.mode-card {
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.mode-card:hover {
    border-color: var(--primary);
    background: rgba(102, 126, 234, 0.05);
    transform: translateY(-2px);
}

.mode-option input[type="radio"]:checked + .mode-card {
    border-color: var(--primary);
    background: rgba(102, 126, 234, 0.1);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.mode-icon {
    font-size: 2rem;
    line-height: 1;
}

.mode-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
}

.mode-description {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.3;
}

/* Button as link style */
button.btn-outline-nav {
    background: transparent;
    border: 2px solid var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--primary);
    transition: all 0.3s;
    font-size: 1rem;
}

button.btn-outline-nav:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}


/* ==================== IMAGEN PREVIEW ==================== */
.image-container {
    background: white;
    border-radius: 20px;
    padding: 0.75rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 3px solid #e2e8f0;
    transition: all 0.3s;
    max-width: 650px;
    margin: 0 auto;
}

.image-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    border-color: #667eea;
}

.dashboard-screenshot {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    border: 1px solid #e2e8f0;
}

/* Responsive adjustments for screenshot */
@media (max-width: 768px) {
    .image-container {
        padding: 0.5rem;
        max-width: 100%;
        box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    }
    
    .dashboard-screenshot {
        border-radius: 8px;
    }

    /* Badge ajustado para tablets */
    .badge {
        padding: 0.55rem 1.1rem;
        margin-bottom: 1.5rem;
        margin-top: 0.4rem;
        font-size: 0.85rem;
    }
}

/* Gradiente solo en el texto del título de confirmación */
.plan-confirmation .success-title { font-size: 2.25rem; margin: .35rem 0 .35rem 0; font-weight: 800; line-height: 1.2; }
.plan-confirmation .success-title .word { 
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.plan-confirmation .success-title .emoji { 
    display: inline-block; margin-left: .25rem; filter: none; color: inherit; -webkit-text-fill-color: initial; 
}
