/* =====================================================
   BYTT SYSTEM - LANDING PAGE
   Estilo: Dark Tech (Propuesta 2 - Exacto)
   ===================================================== */

:root {
    --bg-dark: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a25;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --primary: #4f46e5;
    --primary-glow: rgba(79, 70, 229, 0.5);
    --secondary: #06b6d4;
    --secondary-glow: rgba(6, 182, 212, 0.5);
    --accent: #f43f5e;
    --accent-glow: rgba(244, 63, 94, 0.5);
    --success: #10b981;
    --warning: #f59e0b;
    --border: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(79, 70, 229, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sora', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* =====================================================
   BACKGROUND ELEMENTS
   ===================================================== */

/* Animated Grid Background */
.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(79, 70, 229, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 70, 229, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

/* Gradient Orbs */
.gradient-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -150px;
    left: -150px;
    animation: pulse-orb 8s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: -100px;
    right: -100px;
    animation: pulse-orb 8s ease-in-out infinite;
    animation-delay: -4s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    top: 50%;
    right: 20%;
    animation: pulse-orb 8s ease-in-out infinite;
    animation-delay: -2s;
    opacity: 0.2;
}

@keyframes pulse-orb {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* =====================================================
   NAVIGATION
   ===================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.nav-logo i {
    font-size: 1.75rem;
    color: var(--primary);
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

.nav-logo span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.5px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    transform: translateX(-50%) scale(0);
    transition: transform 0.3s ease;
    box-shadow: 0 0 10px var(--primary-glow);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::before {
    transform: translateX(-50%) scale(1);
}

.nav-cta {
    display: flex;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn-primary {
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Sora', sans-serif;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    box-shadow: 0 0 30px var(--primary-glow), 0 0 60px var(--secondary-glow);
    transform: translateY(-2px);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary.btn-large {
    padding: 1rem 2.25rem;
    font-size: 1rem;
    display: inline-flex;
}

.btn-secondary {
    padding: 0.875rem 2rem;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Sora', sans-serif;
    text-decoration: none;
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: rgba(79, 70, 229, 0.1);
    box-shadow: 0 0 20px var(--primary-glow);
}

.btn-secondary.btn-large {
    padding: 1rem 2.25rem;
    font-size: 1rem;
}

.btn-outline {
    padding: 0.875rem 2rem;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Sora', sans-serif;
    width: 100%;
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(79, 70, 229, 0.1);
    box-shadow: 0 0 20px var(--primary-glow);
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    min-height: 100vh;
    padding: 140px 0 80px;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: rgba(79, 70, 229, 0.1);
    border: 1px solid var(--border-glow);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-badge i {
    color: var(--warning);
    animation: blink 2s ease-in-out infinite;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--success);
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-title .highlight {
    position: relative;
    display: inline-block;
}

.hero-title .highlight::before {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 12px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0.3;
    z-index: -1;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 5s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 520px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stat-item i {
    font-size: 1.5rem;
    color: var(--secondary);
    filter: drop-shadow(0 0 8px var(--secondary-glow));
}

.stat-item div {
    text-align: left;
}

.stat-item strong,
.stat-value {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'JetBrains Mono', monospace;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1.2;
}

.stat-item span,
.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Visual - Dashboard Mockup */
.hero-visual {
    position: relative;
}

.dashboard-mockup {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 50px var(--primary-glow);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border);
}

.mockup-dots {
    display: flex;
    gap: 0.5rem;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.mockup-dots span:nth-child(1) { background: var(--accent); }
.mockup-dots span:nth-child(2) { background: var(--warning); }
.mockup-dots span:nth-child(3) { background: var(--success); }

.mockup-title {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
}

.mockup-content {
    padding: 0;
    min-height: 300px;
    background: #0d0d12;
    position: relative;
}

.mockup-content video,
.mockup-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* =====================================================
   SECTIONS COMMON STYLES
   ===================================================== */
section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header.centered {
    text-align: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(79, 70, 229, 0.1);
    border: 1px solid var(--border-glow);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(79, 70, 229, 0.1);
    border: 1px solid var(--border-glow);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* =====================================================
   PROBLEM SECTION
   ===================================================== */
.problem-section {
    padding: 250px 0;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--warning));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.problem-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px var(--accent-glow);
}

.problem-card:hover::before {
    opacity: 1;
}

.problem-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px var(--accent-glow));
}

.problem-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.problem-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.solution-banner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.solution-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05), rgba(6, 182, 212, 0.05));
    pointer-events: none;
}

.solution-banner i {
    font-size: 2.5rem;
    color: var(--warning);
    filter: drop-shadow(0 0 10px var(--warning));
    position: relative;
    z-index: 1;
}

.solution-banner div {
    position: relative;
    z-index: 1;
}

.solution-banner h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.solution-banner p {
    color: var(--text-secondary);
}

/* =====================================================
   VALUE PROPOSITION / 2-IN-1 SECTION
   ===================================================== */
.value-proposition {
    padding: 100px 0;
}

.two-in-one-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.system-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.system-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.system-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glow);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px var(--primary-glow);
}

.system-card:hover::before {
    opacity: 1;
}

.system-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.system-card-header > i {
    font-size: 2rem;
    color: var(--primary);
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

.system-card.ecommerce-card .system-card-header > i {
    color: var(--secondary);
    filter: drop-shadow(0 0 10px var(--secondary-glow));
}

.system-card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.system-card-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.system-card-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--border);
    background: var(--bg-card-hover);
}

.feature-item > i {
    font-size: 1.25rem;
    color: var(--primary);
    margin-top: 0.1rem;
}

.feature-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.feature-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.sync-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: var(--bg-card);
    border: 1px dashed var(--border-glow);
    border-radius: 16px;
    text-align: center;
}

.sync-message i {
    font-size: 1.5rem;
    color: var(--success);
}

.sync-message h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.sync-message p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* =====================================================
   E-COMMERCE SPOTLIGHT SECTION
   ===================================================== */
.ecommerce-spotlight {
    padding: 100px 0;
}

.comparison-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.comparison-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.comparison-item i {
    color: var(--success);
}

.comparison-divider {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.ecommerce-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.ecommerce-feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.ecommerce-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ecommerce-feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px var(--secondary-glow);
}

.ecommerce-feature-card:hover::before {
    opacity: 1;
}

.ecommerce-feature-card .feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(79, 70, 229, 0.1));
    color: var(--secondary);
    border: 1px solid var(--border-glow);
}

.ecommerce-feature-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.ecommerce-feature-card ul {
    list-style: none;
}

.ecommerce-feature-card li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ecommerce-feature-card li::before {
    content: '→';
    color: var(--secondary);
}

/* Demo Stores */
.demo-stores-section h3 {
    margin-bottom: 2rem;
}

.demo-stores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.demo-store-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.demo-store-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px var(--primary-glow);
}

.demo-store-image {
    position: relative;
    height: 200px;
    background: #0d0d12;
    overflow: hidden;
}

.demo-store-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.demo-store-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem;
}

.demo-store-info i {
    font-size: 1.25rem;
    color: var(--secondary);
}

.demo-store-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* =====================================================
   DEMO SECTION
   ===================================================== */
.demo-section {
    padding: 100px 0;
}

.video-demo {
    margin-bottom: 3rem;
}

.video-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.video-placeholder i {
    font-size: 4rem;
    color: var(--primary);
    filter: drop-shadow(0 0 20px var(--primary-glow));
}

.video-placeholder p {
    color: var(--text-muted);
}

.interactive-demo {
    max-width: 700px;
    margin: 0 auto;
}

.interactive-demo-content {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.interactive-demo-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05), rgba(6, 182, 212, 0.05));
    pointer-events: none;
}

.interactive-demo-text {
    position: relative;
    z-index: 1;
}

.interactive-demo-text i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 0 15px var(--primary-glow));
}

.interactive-demo-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.interactive-demo-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* =====================================================
   USE CASES SECTION
   ===================================================== */
.use-cases-section {
    padding: 100px 0;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.use-case-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.use-case-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px var(--primary-glow);
}

.use-case-card:hover::before {
    opacity: 1;
}

.use-case-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 8px var(--primary-glow));
}

.use-case-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.use-case-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* =====================================================
   PRICING SECTION
   ===================================================== */
.pricing-section {
    padding: 100px 0;
}

.billing-period-selector {
    max-width: 600px;
    margin: 0 auto 3rem;
    text-align: center;
}

.billing-toggle {
    display: inline-flex;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.5rem;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.billing-option {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: var(--text-secondary);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Sora', sans-serif;
    position: relative;
}

.billing-option.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.billing-option:hover:not(.active) {
    background: var(--bg-card-hover);
}

.discount-badge {
    padding: 0.2rem 0.5rem;
    background: var(--success);
    color: white;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
}

.discount-badge.promo {
    background: var(--accent);
}

.limited-time {
    font-size: 0.65rem;
    color: var(--accent);
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.billing-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.billing-note i {
    color: var(--accent);
    margin-right: 0.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    transition: all 0.4s ease;
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(6, 182, 212, 0.05));
    border-color: var(--primary);
    box-shadow: 0 0 50px var(--primary-glow);
}

.pricing-card:hover:not(.featured) {
    border-color: var(--border-glow);
    transform: translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.pricing-card:not(.featured) .pricing-header i {
    color: var(--text-secondary);
}

.pricing-card.featured .pricing-header i {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: var(--text-muted);
}

.pricing-price {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'JetBrains Mono', monospace;
}

.pricing-card.featured .price-amount {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-period {
    color: var(--text-muted);
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.pricing-features li i.fa-check {
    color: var(--success);
    font-size: 0.875rem;
}

.pricing-features li i.fa-times {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.pricing-features li.disabled {
    color: var(--text-muted);
}

.pricing-features li.disabled i {
    color: var(--text-muted);
}

.pricing-card .btn-primary,
.pricing-card .btn-outline {
    width: 100%;
    justify-content: center;
}

.pricing-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.pricing-note i {
    color: var(--accent);
    margin-right: 0.5rem;
}

/* Comparison Table */
.comparison-table-section {
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-table-section h3 {
    margin-bottom: 2rem;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.comparison-table th {
    background: rgba(0, 0, 0, 0.3);
    font-weight: 600;
    color: var(--text-primary);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
}

.comparison-table th:nth-child(2) {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(6, 182, 212, 0.1));
    color: var(--secondary);
}

.comparison-table td {
    color: var(--text-secondary);
}

.comparison-table .fa-check-circle {
    color: var(--success);
    font-size: 1.25rem;
}

.comparison-table .fa-times-circle {
    color: var(--accent);
    font-size: 1.25rem;
}

.comparison-table .fa-exclamation-circle {
    color: var(--warning);
    font-size: 1.25rem;
}

/* =====================================================
   PROCESS SECTION
   ===================================================== */
.process-section {
    padding: 100px 0;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.process-step {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    position: relative;
    transition: all 0.4s ease;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-step:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px var(--primary-glow);
}

.process-step:hover::before {
    opacity: 1;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
    font-family: 'JetBrains Mono', monospace;
}

.process-step > i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

.process-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.process-arrow {
    font-size: 1.5rem;
    color: var(--primary);
}

/* =====================================================
   TESTIMONIALS SECTION
   ===================================================== */
.testimonials-section {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-stars i {
    color: var(--warning);
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.author-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* =====================================================
   FAQ SECTION
   ===================================================== */
.faq-section {
    padding: 100px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--border-glow);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-card-hover);
}

.faq-question > i:first-child {
    color: var(--primary);
    font-size: 1.25rem;
}

.faq-question h3 {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-question > i:last-child {
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question > i:last-child {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem 3.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* =====================================================
   FINAL CTA SECTION
   ===================================================== */
.final-cta-section {
    padding: 100px 0;
}

.cta-section {
    padding: 100px 0;
}

.final-cta-content,
.cta-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-content::before,
.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05), rgba(6, 182, 212, 0.05));
    pointer-events: none;
}

.final-cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

.final-cta-icon i {
    font-size: 2rem;
    color: white;
}

.final-cta-content h2,
.cta-card h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.final-cta-subtitle,
.cta-card p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.final-cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-stat {
    text-align: center;
}

.cta-stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'JetBrains Mono', monospace;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-stat span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.final-cta-btn,
.cta-buttons {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.final-cta-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

.final-cta-note i {
    margin-right: 0.5rem;
    color: var(--success);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column:first-child p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo i {
    color: var(--primary);
    filter: drop-shadow(0 0 8px var(--primary-glow));
}

.footer-logo span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(79, 70, 229, 0.1);
    box-shadow: 0 0 15px var(--primary-glow);
}

.footer-column h4 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-column li i {
    color: var(--primary);
    font-size: 0.9rem;
}

.footer-column a,
.footer-column span {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-column a:hover {
    color: var(--secondary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
}

/* =====================================================
   SCROLL TO TOP
   ===================================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 0 20px var(--primary-glow);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px var(--primary-glow), 0 0 50px var(--secondary-glow);
}

/* =====================================================
   FEATURES SECTION (Generic)
   ===================================================== */
.features-section {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glow);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px var(--primary-glow);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(6, 182, 212, 0.1));
    color: var(--primary);
    border: 1px solid var(--border-glow);
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}


/* =====================================================
   RESPONSIVE
   ===================================================== */

/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ecommerce-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .use-cases-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-links {
        gap: 1.5rem;
    }
}

/* Tablets */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .two-in-one-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .pricing-grid {
        max-width: 600px;
    }
}

/* Small Tablets and Large Phones */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    /* Navigation Mobile */
    .nav-links {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 10px;
        color: var(--text-primary);
        font-size: 1.25rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .mockup-content {
        min-height: 200px;
    }

    .problem-section {
        padding: 300px 0px 50px;
    }
    
    .mobile-menu-toggle:hover {
        border-color: var(--primary);
        background: rgba(79, 70, 229, 0.1);
    }
    
    .nav-logo span {
        font-size: 1.25rem;
    }
    
    .nav-logo img {
        width: 45px !important;
    }
    
    /* Hero Section */
    .hero {
        padding: 100px 0 50px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.25rem;
        align-items: center;
        padding-top: 1.5rem;
    }
    
    .stat-item {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 1rem;
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 12px;
    }
    
    .stat-item strong {
        font-size: 1.5rem;
    }
    
    .stat-item span {
        font-size: 0.75rem;
    }
    
    .hero-visual {
        max-width: 100%;
    }
    
    .dashboard-mockup {
        border-radius: 12px;
    }
    
    .mockup-header {
        padding: 0.75rem 1rem;
    }
    
    .mockup-dots span {
        width: 10px;
        height: 10px;
    }
    
    .mockup-title {
        font-size: 0.7rem;
    }
    
    /* Sections General */
    section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .section-badge,
    .section-tag {
        font-size: 0.65rem;
        padding: 0.4rem 0.75rem;
    }
    
    /* Problems Section */
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .problem-card {
        padding: 1.5rem;
    }
    
    .problem-card i {
        font-size: 2rem;
    }
    
    .problem-card h3 {
        font-size: 1rem;
    }
    
    .problem-card p {
        font-size: 0.85rem;
    }
    
    .solution-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .solution-banner i {
        font-size: 2rem;
    }
    
    .solution-banner h3 {
        font-size: 1.1rem;
    }
    
    .solution-banner p {
        font-size: 0.9rem;
    }
    
    /* Two-in-One Grid (Value Proposition) */
    .system-card {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .system-card-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        flex-wrap: wrap;
    }
    
    .system-card-header > i {
        font-size: 1.75rem;
    }
    
    .system-card-header h3 {
        font-size: 1.25rem;
    }
    
    .system-card-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .feature-item {
        padding: 0.875rem;
    }
    
    .feature-item > i {
        font-size: 1.1rem;
    }
    
    .feature-item h4 {
        font-size: 0.9rem;
    }
    
    .feature-item p {
        font-size: 0.75rem;
    }
    
    .sync-message {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
        gap: 0.75rem;
    }
    
    .sync-message h3 {
        font-size: 1rem;
    }
    
    .sync-message p {
        font-size: 0.85rem;
    }
    
    /* E-commerce Spotlight */
    .comparison-banner {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.25rem;
    }
    
    .comparison-item {
        font-size: 0.9rem;
    }
    
    .comparison-divider {
        display: none;
    }
    
    .ecommerce-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .ecommerce-feature-card {
        padding: 1.5rem;
    }
    
    .ecommerce-feature-card .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    
    .ecommerce-feature-card h3 {
        font-size: 1rem;
    }
    
    .ecommerce-feature-card li {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }
    
    /* Demo Stores */
    .demo-stores-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .demo-store-image {
        height: 180px;
    }
    
    .demo-store-info {
        padding: 1rem;
    }
    
    .demo-store-info h4 {
        font-size: 0.95rem;
    }
    
    /* Use Cases */
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .use-case-card {
        padding: 1.25rem 1rem;
    }
    
    .use-case-card i {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .use-case-card h3 {
        font-size: 0.85rem;
    }
    
    .use-case-card p {
        font-size: 0.7rem;
        display: none;
    }
    
    /* Pricing Section */
    .billing-period-selector {
        margin-bottom: 2rem;
    }
    
    .billing-toggle {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }
    
    .billing-option {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1rem;
    }
    
    .billing-note {
        font-size: 0.8rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .pricing-card.featured {
        order: -1;
    }
    
    .popular-badge {
        font-size: 0.6rem;
        padding: 0.4rem 1rem;
    }
    
    .pricing-header i {
        font-size: 2rem;
    }
    
    .pricing-header h3 {
        font-size: 1.25rem;
    }
    
    .price-amount {
        font-size: 2.75rem;
    }
    
    .pricing-features li {
        font-size: 0.875rem;
        padding: 0.6rem 0;
    }
    
    /* Comparison Table */
    .comparison-table-wrapper {
        margin: 0 -1rem;
        padding: 0 1rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }
    
    /* Process Steps */
    .process-steps {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .process-step {
        max-width: 100%;
        padding: 2rem 1.5rem;
    }
    
    .process-step > i {
        font-size: 2rem;
    }
    
    .process-step h3 {
        font-size: 1.1rem;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: -0.5rem 0;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .author-avatar {
        width: 42px;
        height: 42px;
    }
    
    .author-info h4 {
        font-size: 0.95rem;
    }
    
    .author-info p {
        font-size: 0.8rem;
    }
    
    /* FAQ Section */
    .faq-grid {
        gap: 0.75rem;
    }
    
    .faq-question {
        padding: 1rem 1.25rem;
        gap: 0.75rem;
    }
    
    .faq-question > i:first-child {
        font-size: 1.1rem;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
    }
    
    .faq-answer p {
        padding: 0 1.25rem 1rem 2.75rem;
        font-size: 0.875rem;
    }
    
    /* Final CTA */
    .final-cta-content,
    .cta-card {
        padding: 2.5rem 1.5rem;
        border-radius: 16px;
    }
    
    .final-cta-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 1.5rem;
    }
    
    .final-cta-icon i {
        font-size: 1.5rem;
    }
    
    .final-cta-content h2,
    .cta-card h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .final-cta-subtitle,
    .cta-card p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .final-cta-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .cta-stat strong {
        font-size: 1.25rem;
    }
    
    .cta-stat span {
        font-size: 0.8rem;
    }
    
    .final-cta-note {
        font-size: 0.8rem;
        margin-top: 1.25rem;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-column:first-child {
        order: 0;
    }
    
    .footer-column:first-child p {
        max-width: 100%;
        margin: 0 auto 1.5rem;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-column h4 {
        margin-bottom: 1rem;
    }
    
    .footer-column li {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding-top: 1.5rem;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-links a {
        font-size: 0.8rem;
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    /* Buttons */
    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-primary.btn-large,
    .btn-secondary.btn-large {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    /* Scroll to Top */
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    
    /* Background Orbs - Reducir en móvil */
    .orb-1 {
        width: 300px;
        height: 300px;
        opacity: 0.3;
    }
    
    .orb-2 {
        width: 250px;
        height: 250px;
        opacity: 0.25;
    }
    
    .orb-3 {
        width: 200px;
        height: 200px;
        opacity: 0.15;
    }
}

/* Small Phones */
@media (max-width: 480px) {
    .container {
        padding: 0 0.875rem;
    }
    
    .hero {
        padding: 90px 0 40px;
    }
    
    .hero-title {
        font-size: 1.65rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .use-case-card {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 1rem;
        padding: 1rem 1.25rem;
    }
    
    .use-case-card i {
        margin-bottom: 0;
        font-size: 1.25rem;
    }
    
    .use-case-card h3 {
        font-size: 0.9rem;
        margin-bottom: 0;
    }
    
    .pricing-card {
        padding: 1.75rem 1.25rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .stat-item {
        padding: 0.875rem;
    }
    
    .final-cta-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-stat {
        padding: 0.75rem 1.5rem;
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 12px;
        width: 100%;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .faq-question h3 {
        font-size: 0.85rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Extra Small Phones */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-badge {
        font-size: 0.6rem;
    }
    
    .btn-primary.btn-large,
    .btn-secondary.btn-large {
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
    }
    
    .section-header h2 {
        font-size: 1.35rem;
    }
    
    .pricing-header h3 {
        font-size: 1.1rem;
    }
    
    .price-amount {
        font-size: 2.25rem;
    }
    
    .final-cta-content h2,
    .cta-card h2 {
        font-size: 1.35rem;
    }
}

video::-webkit-media-controls {
    display: none !important;
}