/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--primary);
    color: var(--primary-foreground);
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.footer-brand img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.footer-brand h3 {
    font-size: 1.5rem;
}

.footer-brand p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    max-width: 400px;
    margin-bottom: 1.5rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item svg {
    color: var(--accent);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--accent-foreground);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent);
}


/* ========================================
   Partners Section
   ======================================== */
.partners-section {
    background: #fff;
    padding: 3.5rem 1rem 2.5rem;
}

.partners-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
}

.partners-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.partners-group + .partners-group {
    border-left: 1px solid #e0e0e0;
    padding-left: 2rem;
}

.partners-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888;
}

.partners-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    min-height: 60px;
}

.partners-logos a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.partners-logos a:hover {
    opacity: 0.7;
}

.partners-logos img {
    max-height: 60px;
    max-width: 168px;
    width: auto;
    height: auto;
    object-fit: contain;
    user-select: none;
    pointer-events: none;
}

.partners-main .partners-logos img {
    max-height: 78px;
    max-width: 192px;
}

