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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    overflow-x: hidden;
}

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

/* Header Styles */
.main-header {
    background: rgba(26, 35, 126, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 3px solid #ff6b35;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.navigation-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-brand .logo-image {
    height: 55px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-brand .logo-image:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
    color: #ff6b35;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

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

.auth-buttons {
    display: flex;
    gap: 15px;
}

.btn-register,
.btn-login {
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-register {
    background: linear-gradient(45deg, #ff6b35, #e55a2b);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-register:hover {
    background: linear-gradient(45deg, #e55a2b, #d44920);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-login {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-login:hover {
    background: #fff;
    color: #1a237e;
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* App Hero Section */
.app-hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 50%, #ff6b35 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.7;
}

.app-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 35px;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.feature-icon {
    font-size: 16px;
}

.download-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

/* Fixed download button styles - ensure consistent gradient background */
.download-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(45deg, #ff6b35, #e55a2b) !important; /* Force gradient for all buttons */
    color: #fff !important; /* Force white text */
    padding: 18px 25px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    min-width: 200px;
    border: none !important; /* Remove any borders */
    position: relative;
    overflow: hidden;
}

.download-btn:hover {
    background: linear-gradient(45deg, #e55a2b, #d44920) !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
    color: #fff !important;
}

/* Remove special styles for android/ios buttons that might override gradient */
.download-btn.android-btn,
.download-btn.ios-btn {
    background: linear-gradient(45deg, #ff6b35, #e55a2b) !important;
    color: #fff !important;
    border: none !important;
}

.download-btn.android-btn:hover,
.download-btn.ios-btn:hover {
    background: linear-gradient(45deg, #e55a2b, #d44920) !important;
    color: #fff !important;
}

.btn-icon {
    font-size: 2rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-label {
    font-size: 12px;
    opacity: 0.8;
}

.btn-platform {
    font-size: 18px;
    font-weight: 700;
}

.app-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    min-width: 100px;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.stat-label {
    font-size: 12px;
    color: #fff;
    opacity: 0.8;
}

.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.phone-mockup {
    position: relative;
    z-index: 2;
    text-align: center;
}

.app-screenshot {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* Horizontal static blocks for feature bubbles */
.floating-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
    position: static;
}

.feature-bubble {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: #1a237e;
    padding: 12px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.feature-bubble:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.bubble-icon {
    font-size: 16px;
}

.bubble-text {
    font-size: 13px;
    font-weight: 600;
}

/* App Features Section */
.app-features-section {
    padding: 80px 20px;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: #1a237e;
    margin-bottom: 60px;
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #ff6b35, #e55a2b);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border-top: 4px solid #ff6b35;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card .feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: #1a237e;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* Installation Guide Section */
.installation-guide-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.installation-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    background: #fff;
    color: #1a237e;
    border: 2px solid #1a237e;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.tab-btn.active,
.tab-btn:hover {
    background: #1a237e;
    color: #fff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b35;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.step-card h3 {
    font-size: 1.3rem;
    color: #1a237e;
    margin-bottom: 15px;
    font-weight: 600;
    margin-top: 10px;
}

.step-card p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* Screenshots Section */
.screenshots-section {
    padding: 80px 20px;
    background: #fff;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.screenshot-item {
    text-align: center;
}

.screenshot-item img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.screenshot-item h3 {
    font-size: 1.3rem;
    color: #1a237e;
    margin-bottom: 10px;
    font-weight: 600;
}

.screenshot-item p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* System Requirements Section - Fixed Responsiveness */
.requirements-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.requirement-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.requirement-card:hover {
    transform: translateY(-5px);
}

.platform-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.requirement-card h3 {
    font-size: 1.5rem;
    color: #1a237e;
    margin-bottom: 25px;
    font-weight: 600;
}

.requirements-list {
    list-style: none;
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
    padding-left: 0;
}

.requirements-list li {
    padding: 8px 0;
    color: #666;
    font-size: 14px;
    padding-left: 30px;
    position: relative;
    line-height: 1.5;
}

.requirements-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: #28a745;
    font-weight: bold;
    font-size: 14px;
    width: 20px;
    text-align: center;
}

/* App Benefits Section - Responsive Table with Horizontal Scroll */
.app-benefits-section {
    padding: 80px 20px;
    background: #fff;
}

.comparison-table {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

/* Container for horizontal scroll */
.table-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    scrollbar-width: thin;
    scrollbar-color: #ff6b35 #f1f1f1;
}

/* Custom scrollbar styling for webkit browsers */
.table-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.table-scroll-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.table-scroll-container::-webkit-scrollbar-thumb {
    background: #ff6b35;
    border-radius: 4px;
}

.table-scroll-container::-webkit-scrollbar-thumb:hover {
    background: #e55a2b;
}

/* Table structure */
.comparison-table-inner {
    min-width: 600px; /* Force minimum width to trigger scroll */
    width: 100%;
    border-collapse: collapse;
    display: table;
}

.table-header {
    display: table-row;
    background: #1a237e;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.table-row {
    display: table-row;
    border-bottom: 1px solid #eee;
}

.table-row:last-child {
    border-bottom: none;
}

.feature-column,
.web-column,
.app-column {
    display: table-cell;
    padding: 15px 20px;
    text-align: center;
    font-size: 14px;
    vertical-align: middle;
    white-space: nowrap; /* Prevent text wrapping */
}

.feature-column {
    text-align: left;
    font-weight: 600;
    color: #1a237e;
    min-width: 200px; /* Ensure minimum width */
}

.web-column {
    min-width: 120px;
}

.app-column {
    font-weight: 600;
    min-width: 120px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.faq-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
}

.faq-question {
    background: #1a237e;
    color: #fff;
    padding: 20px 25px;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    position: relative;
    border: none;
    width: 100%;
    text-align: left;
    line-height: 1.4;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-question:hover {
    background: #3949ab;
}

.faq-answer {
    padding: 25px;
    display: none;
}

.faq-answer.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-size: 15px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Download CTA Section */
.download-cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a237e 0%, #ff6b35 100%);
    text-align: center;
    color: #fff;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-block;
    padding: 18px 35px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 200px;
}

.btn-cta-primary {
    background: #fff;
    color: #1a237e;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

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

.btn-cta-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-cta-secondary:hover {
    background: #fff;
    color: #1a237e;
    transform: translateY(-3px);
}

.cta-disclaimer {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 20px;
}

/* Footer */
.main-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.footer-section h4 {
    color: #ff6b35;
    margin-bottom: 25px;
    font-weight: 600;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6b35;
}

.payment-methods {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #333;
    margin-bottom: 30px;
}

.payment-methods h4 {
    color: #ff6b35;
    margin-bottom: 25px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.payment-icon {
    width: 45px;
    height: 45px;
    filter: brightness(0.8);
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 5px;
    background: rgba(255, 255, 255, 0.1);
}

.payment-icon:hover {
    filter: brightness(1);
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 14px;
}

/* Ripple effect for download buttons */
.download-btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 980px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 35, 126, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
    }
    
    .auth-buttons {
        display: flex;
        gap: 10px;
    }
    
    .btn-register,
    .btn-login {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .download-buttons {
        justify-content: center;
    }
    
    .app-stats {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    /* Improved responsiveness for comparison table */
    .comparison-table {
        margin: 0 10px;
    }
    
    /* Add scroll hint for mobile */
    .comparison-table::after {
        content: '← Scroll horizontally to view all columns →';
        display: block;
        text-align: center;
        padding: 10px;
        background: #f8f9fa;
        font-size: 12px;
        color: #666;
        font-style: italic;
        border-top: 1px solid #eee;
    }
    
    .table-scroll-container {
        /* Force scrollbar to be visible on mobile */
        scrollbar-width: auto;
    }
    
    .table-scroll-container::-webkit-scrollbar {
        height: 12px; /* Larger scrollbar on mobile */
    }
    
    /* Requirements responsiveness */
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .requirements-list {
        max-width: 100%;
    }
    
    /* ИСПРАВЛЕННАЯ АДАПТИВНОСТЬ для features-grid и steps-grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .btn-register, 
    .btn-login {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .app-features {
        flex-direction: column;
        align-items: center;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .download-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .app-stats {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .stat-item {
        width: 100%;
        max-width: 200px;
    }
    
    .installation-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 250px;
    }
    
    /* FAQ responsiveness for small screens */
    .faq-question {
        padding: 15px 20px;
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .faq-question::after {
        right: 20px;
    }
    
    .faq-answer {
        padding: 20px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
    
    /* Floating features responsiveness */
    .floating-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .feature-bubble {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    /* Table responsiveness */
    .comparison-table-inner {
        min-width: 500px; /* Smaller minimum width for mobile */
    }
    
    .feature-column,
    .web-column,
    .app-column {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .feature-column {
        min-width: 150px;
    }
    
    .web-column,
    .app-column {
        min-width: 100px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .feature-highlight {
        width: 100%;
        justify-content: center;
    }
    
    .auth-buttons {
        gap: 6px;
    }
    
    .btn-register,
    .btn-login {
        padding: 5px 10px;
        font-size: 10px;
        min-width: 60px;
    }
    
    /* Additional FAQ improvements */
    .faq-grid {
        margin: 0 10px;
        max-width: none;
    }
    
    .faq-question {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .faq-question::after {
        right: 15px;
        font-size: 1.3rem;
    }
    
    .faq-answer {
        padding: 15px;
    }
    
    /* Requirements for very small screens */
    .requirement-card {
        padding: 30px 20px;
    }
    
    .requirements-list li {
        font-size: 13px;
    }
    
    /* Table for very small screens */
    .comparison-table::after {
        content: '← Swipe to view all →';
        font-size: 11px;
        padding: 8px;
    }
    
    .comparison-table-inner {
        min-width: 450px;
    }
    
    .feature-column,
    .web-column,
    .app-column {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .feature-column {
        min-width: 130px;
    }
    
    .web-column,
    .app-column {
        min-width: 90px;
    }
}

@media (max-width: 320px) {
    .navigation-container {
        padding: 10px 15px;
    }
    
    .nav-brand .logo-image {
        height: 45px;
    }
    
    .auth-buttons {
        gap: 4px;
    }
    
    .btn-register,
    .btn-login {
        padding: 4px 8px;
        font-size: 9px;
        min-width: 50px;
        border-radius: 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    /* Extreme responsiveness for FAQ */
    .faq-question {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .faq-question::after {
        right: 12px;
        font-size: 1.2rem;
    }
    
    .faq-answer {
        padding: 12px;
    }
    
    .faq-answer p {
        font-size: 13px;
    }
    
    /* Requirements for extremely small screens */
    .requirement-card {
        padding: 25px 15px;
    }
    
    .requirements-list li {
        font-size: 12px;
        padding: 5px 0;
        padding-left: 20px;
    }
    
    /* Table for extremely small screens */
    .comparison-table-inner {
        min-width: 400px;
    }
    
    .feature-column,
    .web-column,
    .app-column {
        padding: 8px 10px;
        font-size: 11px;
    }
    
    .feature-column {
        min-width: 120px;
    }
    
    .web-column,
    .app-column {
        min-width: 80px;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Loading states */
.loading {
    opacity: 0.5;
    pointer-events: none;
}

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