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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
    overflow-x: hidden;
}

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

/* Typography - Mobile First */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.bg-white {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

/* Desktop Typography */
@media (min-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    p {
        font-size: 1.125rem;
        max-width: 70ch;
    }
}

/* Colors */
:root {
    --primary-green: #00C853;
    --primary-blue: #2196F3;
    --primary-orange: #FF9800;
    --primary-purple: #9C27B0;
    --primary-red: #F44336;
    --dark-blue: #1976D2;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.highlight {
    color: #25D366;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-blue));
    z-index: 1001;
    transition: width 0.3s ease;
}

/* Header - Mobile First */
.header {
    background: linear-gradient(135deg, #f5fff9 0%, #e8f7ef 100%);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease-in-out;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-dark);
}

.logo-image {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}

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

/* Navigation */
.nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Navigation */
.nav.mobile-open {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 1001;
}

/* Desktop Navigation */
@media (min-width: 768px) {
    .nav {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .header-content {
        gap: 2rem;
    }
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, var(--primary-green), #00E676);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow);
    border: none;
    cursor: pointer;
}

@media (max-width: 767px) {
    .header-cta::after {
        content: '';
    }
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #00E676, var(--primary-green));
}

.cta-button:active {
    transform: translateY(0);
}

/* Hero Section - Mobile First */
.hero {
    background: linear-gradient(135deg, #f5fff9 0%, #e8f7ef 100%);
    padding: 6rem 0 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    text-align: center;
}

.hero-text {
    max-width: 100%;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: #666;
    display: block;
    margin-top: 8px;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 100%;
}

/* Métricas Sociales */
.social-proof {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    justify-content: center;
    flex-wrap: wrap;
}

.metric {
    font-weight: 600;
    color: #FF6B35;
    font-size: 1.1rem;
    text-align: center;
}

/* CTAs Optimizados */
.cta-buttons {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary {
    background: linear-gradient(45deg, #FF6B35, #FF8C42);
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 200px;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    color: white;
    text-decoration: none;
}

.cta-primary small {
    font-size: 0.8rem;
    font-weight: 400;
    margin-top: 4px;
    opacity: 0.9;
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.cta-secondary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
    text-decoration: none;
}

/* Elementos de Confianza */
.trust-badges {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-badges .badge {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Legacy styles for backward compatibility */
.hero-cta {
    font-size: 1.125rem;
    padding: 1rem 2rem;
}

.demo-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.demo-button:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.demo-button i {
    font-size: 1.125rem;
}

/* Hero Visual */
.hero-visual {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: none; /* Hidden by default on mobile */
}

.phone-mockup {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    background: black;
    background-size: cover;
    border-radius: 2rem;
    padding: 0.5rem;
    box-shadow: var(--shadow-xl);
}

.phone-screen {
    background: url('phone-mockup-bg.png') center center no-repeat;
    border-radius: 1.5rem;
    overflow: hidden;
    height: 500px;
    display: flex;
    flex-direction: column;
}

/* WhatsApp Header */
.whatsapp-header {
    background: var(--primary-green);
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chat-avatar {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.chat-info h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.online-status {
    font-size: 0.875rem;
    opacity: 0.8;
}

.header-actions {
    margin-left: auto;
    display: flex;
    gap: 1rem;
    font-size: 1.125rem;
}

/* Chat Messages */
.chat-messages {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow-y: auto;
}

.message {
    display: flex;
    margin-bottom: 0.5rem;
}

.bot-message {
    justify-content: flex-start;
}

.user-message {
    justify-content: flex-end;
}

.message-bubble {
    max-width: 80%;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    position: relative;
}

.message-bubble p {
    font-size: 0.875rem;
    line-height: 1.4;
    margin-bottom: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.message-bubble a {
    color: #0066cc;
    text-decoration: underline;
    word-break: break-all;
}

.bot-message .message-bubble {
    background: white;
    color: var(--text-dark);
    border-bottom-left-radius: 0.25rem;
}

.user-message .message-bubble {
    background: #DCF8C6;
    color: var(--text-dark);
    border-bottom-right-radius: 0.25rem;
}

.message-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    opacity: 0.7;
}

.user-message .message-meta {
    justify-content: flex-end;
    gap: 0.5rem;
}

.message-status {
    display: flex;
    align-items: center;
}

.double-check.read {
    color: #34B7F1;
}

/* Demo Section */
.demo-section {
    padding: 4rem 0;
    background: white;
}

.demo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.phone-mockup-demo {
    position: relative;
    width: 100%;
    max-width: 350px;
    background: black;
    border-radius: 2rem;
    padding: 0.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.phone-screen-demo {
    background: #f0f0f0;
    border-radius: 1.5rem;
    overflow: hidden;
    height: 500px;
    display: flex;
    flex-direction: column;
}

.whatsapp-header-demo {
    background: #25D366;
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chat-avatar-demo {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.chat-info-demo h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.online-status-demo {
    font-size: 0.875rem;
    opacity: 0.8;
}

.chat-demo {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow-y: auto;
}

.message-demo {
    display: flex;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.message-demo.visible {
    opacity: 1;
    transform: translateY(0);
}

.customer-message {
    justify-content: flex-end;
}

.bot-message {
    justify-content: flex-start;
}

.message-bubble-demo {
    max-width: 80%;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    position: relative;
}

.message-bubble-demo p {
    font-size: 0.875rem;
    line-height: 1.4;
    margin-bottom: 0;
    word-wrap: break-word;
}

.message-bubble-demo a {
    color: #0066cc;
    text-decoration: underline;
    word-break: break-all;
}

.bot-message .message-bubble-demo {
    background: white;
    color: var(--text-dark);
    border-bottom-left-radius: 0.25rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.customer-message .message-bubble-demo {
    background: #DCF8C6;
    color: var(--text-dark);
    border-bottom-right-radius: 0.25rem;
}


/* Desktop Hero */
@media (min-width: 768px) {
    .hero {
        padding: 8rem 0 6rem;
    }
    
    .hero-content {
        flex-direction: row;
        gap: 4rem;
        text-align: left;
        align-items: center;
    }
    
    .hero-text {
        flex: 1;
        max-width: 50%;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
        max-width: 70ch;
    }
    
    .hero-visual {
        flex: 1;
        max-width: 500px;
        display: block; /* Show on tablet and desktop */
    }
    
    .phone-mockup {
        max-width: 400px;
    }
    
    .phone-screen {
        height: 600px;
    }
    
    .message-bubble {
        font-size: 1rem;
    }
    
    .demo-button {
        font-size: 1.125rem;
        padding: 1rem 2rem;
        margin-left: 1rem;
    }
    
    /* Demo Section Desktop */
    .demo-section {
        padding: 6rem 0;
    }
    
    .demo-container {
        min-height: 70vh;
    }
    
    .phone-mockup-demo {
        max-width: 400px;
    }
    
    .phone-screen-demo {
        height: 600px;
    }
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: #f1f5f9;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    text-align: center;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 70ch;
    margin: 0 auto;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.feature-icon.green { background: var(--primary-green); }
.feature-icon.blue { background: var(--primary-blue); }
.feature-icon.orange { background: var(--primary-orange); }
.feature-icon.purple { background: var(--primary-purple); }
.feature-icon.red { background: var(--primary-red); }

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

/* Desktop Features */
@media (min-width: 768px) {
    .features {
        padding: 6rem 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

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

/* Business Types */
.business-types {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 4rem;
}

.business-types-text h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.business-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.business-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
}

.dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
}

.dot.green { background: var(--primary-green); }
.dot.blue { background: var(--primary-blue); }
.dot.orange { background: var(--primary-orange); }
.dot.purple { background: var(--primary-purple); }
.dot.dark-blue { background: var(--dark-blue); }

.business-types-visual {
    text-align: center;
}

.restaurant-qr-image {
    width: 100%;
    max-width: 500px;
    height: 300px;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.restaurant-qr-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.restaurant-qr-image:hover img {
    transform: scale(1.05);
}

/* Desktop Business Types */
@media (min-width: 768px) {
    .business-types {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .business-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .restaurant-qr-image {
        max-width: 600px;
        height: 400px;
    }
}

/* Problem & Solution Section */
.problem-solution {
    padding: 4rem 0;
    background: var(--bg-light);
}

.problem-solution-title {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.highlight-green {
    color: #22c55e;
}

.section-description {
    text-align: center;
    color: #6b7280;
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
}

.problem-column,
.solution-column {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

/* Column Pills */
.column-pill {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.red-pill {
    background-color: #fef2f2;
    color: #dc2626;
}

.green-pill {
    background-color: #f0fdf4;
    color: #16a34a;
}

.pill-dot {
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    margin-right: 0.5rem;
}

.red-pill .pill-dot {
    background-color: #dc2626;
}

.green-pill .pill-dot {
    background-color: #16a34a;
}

/* Column Subtitles */
.column-subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

/* Content Cards */
.content-card {
    background: white;
    border-radius: 0.625rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 1.25rem;
    margin-top: 1.25rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

/* Cards de la columna derecha con degradé */
.solution-column .content-card {
    background: linear-gradient(135deg, #e0f2fe 0%, #dcfce7 100%);
}

.card-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    padding: 0.5rem;
}

.red-icon {
    background-color: #fef2f2;
    color: #dc2626;
}

.green-icon {
    background-color: #f0fdf4;
    color: #16a34a;
}

.blue-icon {
    background-color: #eff6ff;
    color: #2563eb;
}

.pink-icon {
    background-color: #fdf2f8;
    color: #ec4899;
}

.orange-icon {
    background-color: #fff7ed;
    color: #ea580c;
}

.purple-icon {
    background-color: #faf5ff;
    color: #9333ea;
}

.card-content h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.card-content p {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.4;
}

/* Desktop Problem & Solution */
@media (min-width: 768px) {
    .problem-solution {
        padding: 6rem 0;
    }
    
    .problem-solution-title {
        font-size: 2.25rem;
    }
    
    .section-description {
        font-size: 1.25rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .column-subtitle {
        font-size: 1.5rem;
    }
    
    .card-content h4 {
        font-size: 1.125rem;
    }
    
    .card-content p {
        font-size: 1rem;
    }
}

/* How It Works Section */
.how-it-works {
    padding: 4rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.step-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-visual {
    margin-bottom: 1.5rem;
}

.step-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.5rem;
    color: white;
}

.step-icon.blue { background: var(--primary-blue); }
.step-icon.green { background: var(--primary-green); }
.step-icon.orange { background: var(--primary-orange); }

.step-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

/* Desktop How It Works */
@media (min-width: 768px) {
    .how-it-works {
        padding: 6rem 0;
    }
    
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

/* Dashboard Section */
.dashboard {
    padding: 4rem 0;
    background: var(--bg-light);
}

.dashboard-mockup {
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    margin-bottom: 3rem;
}

.dashboard-header {
    background: var(--primary-green);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.new-button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.new-button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.orders-table {
    padding: 2rem;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 2px solid #f0f0f0;
    font-weight: 600;
    color: var(--text-dark);
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
}

.badge.pickup { background: #E3F2FD; color: var(--primary-blue); }
.badge.delivery { background: #FFF3E0; color: var(--primary-orange); }
.badge.completed { background: #E8F5E8; color: var(--primary-green); }

.status-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.status-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.status-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.status-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.status-icon.blue { background: var(--primary-blue); }
.status-icon.orange { background: var(--primary-orange); }
.status-icon.green { background: var(--primary-green); }

.status-card h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

/* Desktop Dashboard */
@media (min-width: 768px) {
    .dashboard {
        padding: 6rem 0;
    }
    
    .status-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-number.green { color: var(--primary-green); }
.stat-number.blue { color: var(--primary-blue); }
.stat-number.orange { color: var(--primary-orange); }
.stat-number.purple { color: var(--primary-purple); }

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

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: #FFD700;
}

.testimonial-card blockquote {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
}

.author-info p {
    margin: 0 0 0.25rem 0;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.875rem;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Trust Section */
.trust-section {
    margin-top: 3rem;
    padding: 0;
    background: linear-gradient(to bottom, #e0ffe0, #c0f0c0);
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 40%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    aspect-ratio: 5 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-card {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.trust-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
}

.trust-avatars {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

.trust-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-left: -0.5rem;
}

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

.trust-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-plus {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--primary-green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-left: -0.5rem;
}

.trust-text p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    text-align: center;
}

.trust-number {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--text-dark);
}

/* Legacy trust-bar styles for backward compatibility */
.trust-bar {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.trust-avatars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid white;
    box-shadow: var(--shadow);
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-plus {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--primary-green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border: 2px solid white;
    box-shadow: var(--shadow);
}

.trust-bar p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

/* Desktop Testimonials */
@media (min-width: 768px) {
    .testimonials {
        padding: 6rem 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
    
    .trust-section {
        margin-top: 4rem;
        width: 40%;
        max-width: 450px;
    }
    
    .trust-card {
        padding: 2.5rem;
    }
    
    .trust-content {
        gap: 2.5rem;
    }
    
    .trust-avatar {
        width: 3.5rem;
        height: 3.5rem;
    }
    
    .trust-plus {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.125rem;
    }
    
    .trust-text p {
        font-size: 1rem;
    }
    
    .trust-number {
        font-size: 1.1em;
    }
}

@media (max-width: 767px) {
    /* Mobile Hero Optimizations */
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .social-proof {
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .metric {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-primary {
        width: 100%;
        max-width: 280px;
        font-size: 1.1rem;
        padding: 14px 24px;
    }
    
    .cta-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .trust-badges {
        gap: 0.5rem;
        margin: 1.5rem 0;
    }
    
    .trust-badges .badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    /* Mobile Demo Section */
    .demo-container {
        min-height: 50vh;
    }
    
    .phone-mockup-demo {
        max-width: 300px;
    }
    
    .phone-screen-demo {
        height: 400px;
    }
    
    /* Mobile Pricing */
    .pricing-trust {
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .trust-item {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .pricing-grid {
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .plan-popularity {
        font-size: 0.75rem;
        padding: 3px 8px;
    }
    
    .price-description {
        font-size: 0.8rem;
    }
    
    .plan-guarantee {
        font-size: 0.8rem;
    }
    
    /* Mobile Trust Indicators */
    .trust-indicators {
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .trust-indicator {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
    
    /* Mobile Guarantees */
    .guarantees-grid {
        gap: 1.5rem;
    }
    
    .guarantee-card {
        padding: 1.5rem;
    }
    
    .guarantee-icon {
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
    }
    
    .guarantee-card h3 {
        font-size: 1.1rem;
    }
    
    .guarantee-card p {
        font-size: 0.9rem;
    }
    
    /* Mobile CTA Section */
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .signup-form {
        padding: 1.5rem;
    }
    
    /* Mobile Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
    }
    
    /* Mobile Testimonials */
    .testimonials-grid {
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    /* Mobile Navigation */
    .nav {
        display: none;
    }
    
    .nav.mobile-open {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1001;
        padding: 2rem;
    }
    
    .nav.mobile-open .nav-link {
        font-size: 1.25rem;
        padding: 1rem 0;
        border-bottom: 1px solid #e0e0e0;
        width: 100%;
        text-align: center;
    }
    
    .nav.mobile-open .header-cta {
        margin-top: 1rem;
        font-size: 1.125rem;
        padding: 1rem 2rem;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Hide dashboard on mobile */
    .dashboard-mockup {
        display: none;
    }
    
    /* Mobile FAQ */
    .faq-question {
        padding: 1rem 1.5rem;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-answer p {
        font-size: 0.85rem;
    }
    
    /* Mobile Footer */
    .footer-content {
        gap: 2rem;
    }
    
    .footer-links {
        gap: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f7ef 50%, #f0f9f4 100%);
    color: var(--text-dark);
}

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

.cta-content h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
    color: var(--text-dark);
}

.cta-content p {
    margin-bottom: 3rem;
    font-size: 1.125rem;
    color: var(--text-light);
}

/* Form Styles */
.signup-form {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.875rem;
}

.form-group input {
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-green);
}

.error-message {
    color: var(--primary-red);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    min-height: 1.25rem;
}

.recaptcha-container {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
}

.signup-form .cta-button {
    width: 100%;
    justify-content: center;
    font-size: 1.125rem;
    padding: 1rem 2rem;
    margin-bottom: 1rem;
}

.cta-content .form-disclaimer {
    font-size: 0.8rem;
    line-height: 0.875rem;
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
    text-align: center;
    margin: 0;
}

.form-disclaimer a {
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
    text-decoration: none;
}

.form-disclaimer a:hover {
    text-decoration: underline;
}

/* Desktop CTA */
@media (min-width: 768px) {
    .cta-section {
        padding: 6rem 0;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
}

.faq .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq .section-header h2 {
    margin-bottom: 1rem;
}

.faq .section-header p {
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h4 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-dark);
}

.faq-question i {
    color: var(--primary-green);
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.25rem;
    margin: 0;
}

/* Desktop FAQ */
@media (min-width: 768px) {
    .faq {
        padding: 6rem 0;
    }
}

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

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

.footer-brand p {
    color: #ccc;
    font-size: 1rem;
    margin-top: 1rem;
}

.footer-brand .logo-text {
    color: white;
}

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

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

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

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

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.875rem;
}

.footer-column ul li a:hover {
    color: var(--primary-green);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-links a {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
}

.contact-email {
    color: #ccc;
    font-size: 0.875rem;
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #ccc;
    font-size: 0.875rem;
    margin: 0;
}

/* Desktop Footer */
@media (min-width: 768px) {
    .footer {
        padding: 6rem 0 3rem;
    }
    
    .footer-content {
        grid-template-columns: 2fr 3fr;
        gap: 4rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

/* Success Modal */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-modal.show {
    opacity: 1;
    visibility: visible;
}

.success-card {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
    max-width: 500px;
    margin: 2rem;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.success-modal.show .success-card {
    transform: translateY(0);
}

.success-icon {
    font-size: 4rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.success-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.success-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

.success-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.success-close-btn:hover {
    background: #f0f0f0;
    color: var(--text-dark);
}

/* Demo Video Section */
.demo-video {
    padding: 5rem 0;
    background: var(--bg-light);
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.video-placeholder {
    background: white;
    border-radius: 1rem;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 2px dashed #e0e0e0;
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.video-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: var(--shadow);
}

.video-placeholder p {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.video-note {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

/* Responsive Video Section */
@media (min-width: 768px) {
    .demo-video {
        padding: 6rem 0;
    }
    
    .video-container {
        max-width: 900px;
    }
    
    .video-placeholder {
        padding: 5rem 3rem;
        min-height: 500px;
    }
    
    .video-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .video-placeholder p {
        font-size: 1.5rem;
    }
}

/* Animaciones y Micro-interacciones */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.animate-in {
    animation: slideInUp 0.6s ease-out forwards;
}

.animate-fade-in {
    animation: fadeInScale 0.8s ease-out forwards;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Hover effects para cards */
.feature-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Staggered animations */
.hero-text > * {
    opacity: 0;
    animation: slideInUp 0.6s ease-out forwards;
}

.hero-text > *:nth-child(1) { animation-delay: 0.1s; }
.hero-text > *:nth-child(2) { animation-delay: 0.2s; }
.hero-text > *:nth-child(3) { animation-delay: 0.3s; }
.hero-text > *:nth-child(4) { animation-delay: 0.4s; }

/* Utility Classes */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
a:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .mobile-menu-btn,
    .cta-button,
    .success-modal {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero {
        background: white !important;
        color: black !important;
    }
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: var(--bg-light);
}

.pricing .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.toggle-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.discount-badge {
    background: var(--primary-green);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 30px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: var(--primary-green);
}

input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--primary-green);
    transform: scale(1.05);
}

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

.plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

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

.plan-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

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

.plan-price {
    text-align: center;
    margin-bottom: 2rem;
}

.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0.25rem;
}

.period {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.price-note {
    text-align: center;
    margin-top: 0.5rem;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 0.875rem;
    margin-right: 0.5rem;
}

.savings {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.875rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.plan-features i {
    color: var(--primary-green);
    margin-right: 0.75rem;
    font-size: 0.875rem;
    width: 16px;
    text-align: center;
}

.plan-button {
    display: block;
    width: 100%;
    background: var(--primary-green);
    color: white;
    text-decoration: none;
    text-align: center;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-green);
    margin-top: auto;
}

.plan-button:hover {
    background: white;
    color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.pricing-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

/* Pricing Trust Elements */
.pricing-trust {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    background: rgba(0, 200, 83, 0.1);
    color: var(--primary-green);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(0, 200, 83, 0.2);
}

/* Plan Popularity */
.plan-popularity {
    background: linear-gradient(45deg, #FF6B35, #FF8C42);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
    display: inline-block;
}

/* Price Description */
.price-description {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Plan Guarantee */
.plan-guarantee {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1rem;
    font-weight: 500;
}

.pricing-footer p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-light);
    text-align: center;
    width: 100%;
    max-width: none;
}

.pricing-footer i {
    color: var(--primary-green);
    font-size: 1rem;
}

/* Responsive Pricing */
@media (min-width: 768px) {
    .pricing {
        padding: 6rem 0;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .pricing-card {
        padding: 2.5rem;
    }
    
    .plan-header h3 {
        font-size: 1.75rem;
    }
    
    .price {
        font-size: 3.5rem;
    }
    
    .plan-features li {
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .pricing-grid {
        gap: 3rem;
    }
    
    .pricing-card {
        padding: 3rem;
    }
    
    .plan-header h3 {
        font-size: 2rem;
    }
    
    .price {
        font-size: 4rem;
    }
}

/* Industry Cases Section */
.industry-cases {
    padding: 5rem 0;
    background: white;
}

.industry-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.industry-card {
    background: var(--bg-light);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
}

.industry-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.industry-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.industry-metrics {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
    gap: 1rem;
}

.metric {
    text-align: center;
}

.metric-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
}

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

.industry-benefits {
    list-style: none;
    text-align: left;
}

.industry-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.industry-benefits i {
    color: var(--primary-green);
    margin-right: 0.75rem;
    font-size: 0.875rem;
    width: 16px;
    text-align: center;
}

/* ROI Benefits Section */
.roi-benefits {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

.roi-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.roi-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.roi-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.roi-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.roi-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.roi-period {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 1rem;
}

.roi-details p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.benefits-breakdown {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.benefits-header {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
}

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

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

.category-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.benefit-category h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.benefit-category ul {
    list-style: none;
    text-align: left;
}

.benefit-category li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-dark);
    border-bottom: 1px solid #f0f0f0;
}

.benefit-category li:last-child {
    border-bottom: none;
}

.roi-cta {
    text-align: center;
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: var(--shadow);
}

.roi-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.roi-cta p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 200, 83, 0.1);
    color: var(--primary-green);
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(0, 200, 83, 0.2);
    transition: all 0.3s ease;
}

.trust-indicator:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3);
}

.trust-indicator i {
    font-size: 1.1rem;
}

/* Guarantees Section */
.guarantees-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f7ef 100%);
}

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

.guarantee-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.guarantee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-green);
}

.guarantee-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(45deg, #FF6B35, #FF8C42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.guarantee-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.guarantee-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Industry Cases */
@media (min-width: 768px) {
    .industry-cases {
        padding: 6rem 0;
    }
    
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .industry-card {
        padding: 2.5rem;
    }
    
    .industry-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .industry-card h3 {
        font-size: 1.75rem;
    }
    
    .metric-number {
        font-size: 2.5rem;
    }
    
    /* Guarantees Desktop */
    .guarantees-section {
        padding: 6rem 0;
    }
    
    .guarantees-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .guarantee-card {
        padding: 2.5rem;
    }
    
    .guarantee-icon {
        width: 5rem;
        height: 5rem;
        font-size: 2rem;
    }
    
    .guarantee-card h3 {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .industry-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .roi-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .benefits-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}
