/* Mobile-first responsive improvements */

/* Ensure proper text sizing on mobile */
@media (max-width: 768px) {
    .title {
        font-size: 1.8rem !important;
        line-height: 1.3;
        margin-bottom: 20px;
    }
    
    .intro {
        font-size: 1rem !important;
        line-height: 1.5;
    }
    
    .platform-text {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Navigation improvements */
    .navbar-nav li {
        margin: 5px 0;
    }
    
    .navbar-toggle {
        margin-right: 15px;
    }
    
    /* Button improvements */
    .btn {
        padding: 10px 15px;
        font-size: 0.9rem;
        margin: 5px 0;
    }
    
    /* Feature items mobile spacing */
    .item {
        margin-bottom: 30px;
        padding: 15px;
    }
    
    /* Pricing section mobile */
    .pricing-item {
        margin-bottom: 30px;
    }
    
    /* Contact form mobile */
    .contact-form .form-control {
        margin-bottom: 15px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Logo responsive */
    .logo img {
        max-width: 100%;
        height: auto;
    }
    
    /* Image responsive */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Table responsive for logos */
    .logos table {
        width: 100% !important;
    }
    
    .logos td {
        display: block;
        width: 100% !important;
        text-align: center;
        padding: 10px;
    }
    
    /* Remove negative margins on mobile */
    [style*="margin-top: -5%"] {
        margin-top: 0 !important;
    }
}

/* Touch targets for better accessibility */
a, button, .btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Focus states for accessibility */
a:focus, button:focus, input:focus, textarea:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

/* High contrast for better readability */
@media (prefers-contrast: high) {
    .text-center, p, h1, h2, h3, h4 {
        color: #000 !important;
    }
    
    .btn {
        border: 2px solid #000 !important;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}