/* TIENDAYA - Home Styles */

/* Variables y base mejoradas */
:root {
    --neon: #FF0000;
    --neon-light: #FF3333;
    --neon-bg: rgba(255, 0, 0, 0.08);
    --bg: #020202;
    --bg-light: #0a0a0a;
    --bg-medium: #151515;
    --bg-dark: #0f0f0f;
    --surface: rgba(20, 20, 20, 0.95);
    --surface-light: rgba(255, 255, 255, 0.05);
    --surface-medium: rgba(20, 20, 20, 0.15);
    --text-primary: #ffffff;
    --text-secondary: #b8b8b8;
    --text-muted: #808080;
    --text-light: #d0d0d0;
    --success: #22c55e;
    --success-light: #34d399;
    --warning: #f59e0b;
    --warning-light: #ffab40;
    --error: #dc2626;
    --error-light: #ef4444;
    --border: rgba(255, 255, 255, 0.1);
    --border-light: rgba(255, 255, 255, 0.05);
    --border-medium: rgba(255, 255, 255, 0.15);
    --border-dark: rgba(255, 255, 255, 0.25);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.4);
    --gradient-neon: linear-gradient(135deg, var(--neon-bg) 0%, var(--neon) 100%);
    --gradient-surface: linear-gradient(180deg, var(--surface), rgba(20, 20, 20, 0.98), var(--bg-light));
}

* {
    box-sizing: border-box;
}

*:focus {
    outline: none;
}

body {
    background-color: var(--bg);
    color: var(--text-primary);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--neon);
    color: var(--text-primary);
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
}

.skip-link:focus {
    top: 6px;
}

/* Tipografía */
h1 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    color: var(--text-primary);
}

h2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.015em;
    margin: 0 0 2rem 0;
    color: var(--text-primary);
}

h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin: 0 0 1rem 0;
    color: var(--text-primary);
}

.display-1 { font-size: clamp(2.5rem, 4vw, 3.5rem); }
.display-2 { font-size: clamp(2rem, 3.5vw, 2.5rem); }
.display-3 { font-size: clamp(1.5rem, 3vw, 2rem); }
.display-4 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

.text-large { font-size: 1.125rem; line-height: 1.5; }
.text-medium { font-size: 1rem; line-height: 1.4; }
.text-small { font-size: 0.875rem; line-height: 1.4; }

.neon-accent {
    color: var(--neon);
    font-weight: 600;
    text-shadow: 0 0 20px var(--neon-bg);
    transition: all 0.3s ease;
}

.neon-accent:hover {
    text-shadow: 0 0 30px var(--neon-bg);
    transform: translateY(-1px);
}

/* Navegación */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    max-width: 100%;
}

.logo {
    font-size: 22px;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.logo span {
    color: #FF0000;
    filter: drop-shadow(0 0 8px rgba(255, 0, 0, 0.6));
}

.nav-links {
    display: none;
    gap: 0;
    align-items: stretch;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.98);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 8px 0;
}

.nav-links.active {
    display: flex;
}

.nav-links a {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.2s;
}

.nav-links a:hover {
    background: rgba(255,0,0,0.1);
    color: #FF0000;
}

.menu-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    border-radius: 10px;
}

.menu-toggle {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s;
}

.menu-toggle:hover,
.menu-toggle:focus {
    background: rgba(255,255,255,0.15);
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        position: static;
        background: none;
        flex-direction: row;
        padding: 0;
    }

    .nav-links a {
        padding: 0;
        border: none;
    }

    .menu-toggle {
        display: none;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(2,2,2,0.95) 0%, rgba(2,2,2,0.7) 50%, rgba(2,2,2,0.95) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 30%, rgba(255,0,0,0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 420px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 0, 0, 0.15);
    color: #FF0000;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
    border: 1px solid rgba(255,0,0,0.3);
}

.hero h1 {
    font-size: clamp(36px, 10vw, 56px);
    font-weight: 900;
    line-height: 1;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.hero h1 .accent {
    color: #FF0000;
    font-style: italic;
    display: block;
    text-shadow: 0 0 40px rgba(255,0,0,0.5);
}

.hero p {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    margin: 0 0 28px 0;
    line-height: 1.5;
}

/* CTA Buttons */
.cta-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 320px;
    padding: 18px 32px;
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(255,0,0,0.5);
    text-decoration: none;
    margin: 0 auto;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255,0,0,0.6);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    border-color: #FF0000;
    background: rgba(255,0,0,0.1);
}

/* Stats Bar */
.stats {
    background: linear-gradient(90deg, transparent, rgba(255,0,0,0.1), transparent);
    border-top: 1px solid rgba(255,0,0,0.2);
    border-bottom: 1px solid rgba(255,0,0,0.2);
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

.stats-content {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 18px;
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,0.1);
}

.stat-item i {
    color: #FF0000;
}

@media (min-width: 768px) {
    .stats-content {
        gap: 32px;
    }
}

/* Process Section */
.process {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.process h2 {
    text-align: center;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 32px;
    text-transform: uppercase;
}

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

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
        flex-direction: row;
    }
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    padding: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
}

.step:hover {
    border-color: rgba(255,0,0,0.3);
    background: rgba(255,255,255,0.05);
}

.step-number {
    font-size: 32px;
    font-weight: 900;
    color: #FF0000;
    line-height: 1;
}

.step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.step p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

/* Footer */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 20px;
    text-align: center;
}

.footer-logo {
    font-size: 20px;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    margin-bottom: 16px;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

.footer-links a:hover,
.footer-links a:focus {
    color: #FF0000;
}

.copyright {
    color: var(--text-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 32px;
    padding: 0 16px;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 0, 0, 0.12);
    color: #FF0000;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
    border: 1px solid rgba(255,0,0,0.2);
}

.section-header h2 {
    font-size: clamp(22px, 6vw, 36px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-header p {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    margin: 0 auto;
    max-width: 400px;
    line-height: 1.5;
}

/* Pricing Section */
.pricing {
    padding: 60px 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

@media (min-width: 640px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

.pricing-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 24px 20px;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: rgba(255,0,0,0.3);
    background: rgba(255,255,255,0.05);
}

.pricing-card.featured {
    border-color: #FF0000;
    background: rgba(255,0,0,0.08);
}

.pricing-card.coming-soon {
    opacity: 0.7;
    border-style: dashed;
}

.pricing-card.coming-soon:hover {
    transform: none;
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF0000;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.plan-header {
    text-align: center;
    margin-bottom: 24px;
}

.plan-header h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.price {
    margin-bottom: 8px;
}

.price-amount {
    font-size: 48px;
    font-weight: 900;
    color: var(--text-primary);
}

.price-currency {
    font-size: 16px;
    color: var(--text-secondary);
    margin-left: 4px;
}

.price-period {
    color: var(--text-muted);
    font-size: 14px;
    text-transform: uppercase;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 14px;
}

.check-icon {
    color: #22c55e;
    font-weight: 700;
    font-size: 16px;
}

.feature-item.missing {
    opacity: 0.4;
    text-decoration: line-through;
}

.feature-item.missing .check-icon {
    color: #666;
}

/* Period Selector */
.period-selector {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.period-btn {
    padding: 8px 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.period-btn:hover {
    background: rgba(255,0,0,0.1);
    border-color: rgba(255,0,0,0.3);
}

.period-btn.active {
    background: #FF0000;
    border-color: #FF0000;
    color: white;
}

.period-btn .discount {
    display: block;
    font-size: 9px;
    opacity: 0.8;
    margin-top: 2px;
}

.plan-price {
    text-align: center;
    margin-bottom: 8px;
}

.plan-price .amount {
    font-size: 36px;
    font-weight: 900;
    color: white;
}

.plan-price .currency {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
}

.plan-price .period-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

.plan-price .total {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
}

.plan-footer {
    margin-top: auto;
}

.cta-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--neon);
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.2s;
}

.cta-secondary:hover,
.cta-secondary:focus {
    background: rgba(255,0,0,0.2);
    color: white;
    transform: translateY(-2px);
}

.pricing-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
}

/* Features Section */
.features {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    gap: 32px;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: rgba(255, 0, 0, 0.3);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    gap: 32px;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 32px 24px;
    transition: all 0.3s;
}

.testimonial-card:hover {
    border-color: rgba(255, 0, 0, 0.3);
    transform: translateY(-4px);
}

.rating {
    margin-bottom: 16px;
}

.star {
    font-size: 16px;
}

.testimonial-card blockquote {
    color: var(--text-primary);
    font-size: 16px;
    font-style: italic;
    margin: 0 0 20px 0;
    line-height: 1.6;
}

.testimonial-author strong {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 700;
    display: block;
}

.business {
    color: var(--neon);
    font-size: 12px;
    font-weight: 600;
}

/* FAQ Section */
.faq {
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-container {
    max-width: 600px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: var(--surface);
    color: var(--text-primary);
    border: none;
    padding: 20px;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s;
}

.faq-question:hover,
.faq-question:focus {
    background: rgba(255, 255, 255, 0.08);
}

.faq-toggle {
    font-size: 24px;
    font-weight: 700;
    color: var(--neon);
    transition: transform 0.2s;
}

.faq-question[aria-expanded="true"] .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 200px;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #FF0000 0%, #990000 100%);
    padding: 60px 20px;
    text-align: center;
    margin-top: 40px;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.cta-content h2 {
    color: var(--text-primary);
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary.large {
    padding: 20px 40px;
    font-size: 18px;
}

/* Featured Stores Section */
.featured-stores {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.stores-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
    .stores-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .stores-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.store-card {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    overflow: hidden;
    position: relative;
}

.store-card:hover {
    border-color: var(--neon);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 0, 0, 0.15);
}

.store-banner {
    width: 100%;
    height: 100px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.store-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, var(--surface));
}

.store-content {
    padding: 16px 16px 24px;
    position: relative;
    z-index: 1;
    margin-top: -30px;
}

.store-logo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--surface);
    margin: 0 auto 12px;
    display: block;
    overflow: hidden;
    border: 3px solid var(--surface);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.store-logo img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    display: block;
}

.store-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    font-size: 28px;
    color: #fff;
    border-radius: 50%;
}

.store-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.store-slogan {
    font-size: 12px;
    color: var(--text-muted);
}

.stores-cta {
    text-align: center;
    margin-top: 40px;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #25D366;
    color: white;
    padding: 16px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
    transition: all 0.3s;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}

/* Desktop Overrides */
@media (min-width: 1024px) {
    /* Navigation */
    nav {
        max-width: 1200px;
        padding: 16px 40px;
    }

    .nav-links {
        display: flex !important;
        flex-direction: row;
        position: static;
        background: none;
        gap: 8px;
        padding: 0;
        border: none;
    }

    .nav-links a {
        padding: 8px 16px;
        border: none;
    }

    .menu-toggle {
        display: none;
    }

    /* Hero */
    .hero {
        padding: 140px 40px 80px;
        min-height: 100vh;
    }

    .hero-content {
        max-width: 700px;
    }

    .hero h1 {
        font-size: clamp(48px, 7vw, 80px);
    }

    .hero p {
        font-size: 20px;
        max-width: 500px;
        margin: 0 auto 36px;
    }

    .cta-primary {
        max-width: 400px;
        padding: 20px 40px;
        font-size: 16px;
    }

    .process {
        padding: 100px 40px;
    }

    .process h2 {
        font-size: 36px;
        margin-bottom: 48px;
    }

    .process-steps {
        flex-direction: row;
        gap: 32px;
    }

    .step {
        flex: 1;
        padding: 32px;
    }

    .step-number {
        font-size: 48px;
    }

    .section-header {
        margin-bottom: 56px;
    }

    .section-header h2 {
        font-size: 40px;
    }

    .section-header p {
        font-size: 18px;
        max-width: 600px;
    }

    .pricing {
        padding: 80px 40px;
    }

    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .pricing-card.featured {
        transform: scale(1.05);
    }

    .pricing-card.featured:hover {
        transform: scale(1.08);
    }

    .stores-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .final-cta {
        padding: 100px 40px;
    }

    .cta-content h2 {
        font-size: 48px;
    }

    .cta-content p {
        font-size: 22px;
    }
}

/* App Download Section */
.app-download {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.app-content {
    display: grid;
    gap: 32px;
}

@media (min-width: 768px) {
    .app-content {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.app-info {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 32px;
}

.app-badge {
    display: inline-block;
    background: var(--neon-bg);
    color: var(--neon);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.app-download h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    text-transform: uppercase;
}

.app-download p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.app-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.app-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 14px;
}

.app-features li i {
    color: var(--success);
    width: 20px;
}

.app-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--neon);
    color: white;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.app-download-btn:hover {
    background: var(--neon-light);
    transform: translateY(-2px);
}

.app-download-btn i {
    font-size: 24px;
}

.download-text {
    display: block;
    font-size: 14px;
}

.download-size {
    display: block;
    font-size: 11px;
    opacity: 0.8;
    font-weight: 400;
}

.app-preview {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 1;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 32px;
}

.phone-mockup i {
    font-size: 80px;
    color: var(--neon);
}

.phone-mockup span {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .app-content {
        text-align: center;
    }
    
    .app-download h2 {
        font-size: 20px;
    }
    
    .app-info {
        padding: 24px;
    }
}
}
