/* Footer Styles for SystemRatings */

.footer {
    background: #0a0a0a;
    color: white;
    padding: 30px 0 30px;
    margin-top: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 24px 0;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

@media (min-width: 1024px) {
    .footer-content {
        padding: 100px 24px 0;
    }
}

.footer-brand {
    margin-right: 48px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
    text-decoration: none;
}

.footer-logo-img {
    height: 48px;
    width: auto;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 24px;
}

.footer-section h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

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

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px;
    border-top: 1px solid #1e293b;
    margin-top: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 14px;
}

.footer-partners {
    background: #f8fafc;
    padding: 40px 0 40px;
    text-align: center;
}

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

.partners-title {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.partners-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partner-logo {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 20px 0 20px;
    }
    
    .footer-partners {
        padding: 30px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .partners-logos {
        gap: 20px;
    }
    
    .partner-logo {
        height: 30px;
        max-width: 80px;
    }
}