/* Simplified Mobile Menu Styles */

/* Mobile CTA Buttons - Simple and Uniform */
.mobile-cta-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-simple-btn {
    display: block;
    padding: 14px 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.mobile-simple-btn::before {
    display: none !important;
}

.mobile-simple-btn * {
    pointer-events: none;
}

.mobile-login-btn {
    background: white !important;
    color: #1e293b !important;
    border-color: #e5e7eb !important;
}

.mobile-login-btn:hover {
    background: #f8fafc !important;
    border-color: #cbd5e1 !important;
}

.mobile-demo-btn {
    background: #3b82f6;
    color: white;
}

.mobile-demo-btn:hover {
    background: #2563eb;
}

.mobile-waitlist-btn {
    background: #22c55e;
    color: white;
}

.mobile-waitlist-btn:hover {
    background: #16a34a;
}

/* Mobile Navigation Links - Simple List */
.mobile-navigation {
    padding: 20px;
}

.mobile-menu-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu-link {
    display: block;
    padding: 16px 20px;
    font-size: 18px;
    font-weight: 500;
    color: white;
    text-decoration: none;
    background: #334155;
    border-radius: 8px;
    border: 2px solid #475569;
    transition: all 0.2s ease;
}

.mobile-menu-link:hover {
    background: #1e293b;
    border-color: #1e293b;
    color: white;
}

/* Mobile Menu Footer - Phone Link with Logo */
.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid #e5e7eb;
    margin-top: auto;
}

.mobile-phone-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 20px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    text-decoration: none;
    color: #1e293b;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.mobile-phone-link:hover {
    background: #f8fafc;
    border-color: #3b82f6;
    color: #3b82f6;
}

.mobile-phone-link svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

