/* Info Page Specific Styles - Override main styles */

/* Hero Section - More specific selector to override main styles */
body .hero {
    padding-top: 150px !important;
    padding-bottom: 100px !important;
    background: var(--hero-bg);
    text-align: center;
    min-height: auto !important;
}

.hero h1 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.hero p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Models Info Section */
.models-info {
    padding: 80px 0;
    background: var(--models-bg);
}

.models-info h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 48px;
    text-align: center;
    color: var(--text-primary);
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.model-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.2s ease;
}

.model-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.1);
}

.model-card.flagship {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.08);
}

.model-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.model-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-bg);
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.model-header h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

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

.model-specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
}

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

.spec-row span:first-child {
    color: var(--text-secondary);
    font-weight: 500;
}

.spec-row span:last-child {
    color: var(--text-primary);
    font-weight: 600;
}

.status {
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status.available {
    background: rgba(16, 185, 129, 0.1);
    color: var(--status-available);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status.best {
    background: rgba(245, 158, 11, 0.1);
    color: var(--status-best);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.status.upcoming {
    background: rgba(139, 92, 246, 0.1);
    color: var(--status-upcoming);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

/* Architecture Section */
.architecture {
    padding: 80px 0;
    background: var(--architecture-bg);
}

.architecture h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 48px;
    text-align: center;
    color: var(--text-primary);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.tech-feature {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.2s ease;
}

.tech-feature:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.1);
}

.tech-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-bg);
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--primary-color);
}

.tech-feature h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

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

/* Training Data Section */
.training-data {
    padding: 80px 0;
    background: var(--samples-bg);
}

.training-data h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 48px;
    text-align: center;
    color: var(--text-primary);
}

.dataset-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.dataset-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.2s ease;
}

.dataset-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.1);
}

.dataset-card.flagship {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.08);
}

.dataset-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

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

.dataset-specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Performance Section */
.performance {
    padding: 80px 0;
    background: var(--platforms-bg);
}

.performance h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 48px;
    text-align: center;
    color: var(--text-primary);
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.performance-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.2s ease;
}

.performance-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.1);
}

.performance-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
        padding-bottom: 40px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .models-info h2,
    .architecture h2,
    .training-data h2,
    .performance h2 {
        font-size: 24px;
    }
    
    .models-grid,
    .tech-grid,
    .dataset-grid,
    .performance-grid {
        grid-template-columns: 1fr;
    }
    
    .model-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .model-icon {
        width: 40px;
        height: 40px;
    }
    
    .tech-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .models-info,
    .architecture,
    .training-data,
    .performance {
        padding: 60px 0;
    }
    
    .model-card,
    .tech-feature,
    .dataset-card,
    .performance-card {
        padding: 20px;
    }
}

/* Footer Links Override - All on Same Row */
.footer-links {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 32px !important;
}