/* --- Partners Section --- */
.partners-section {
    padding: 40px 20px;
    background: #0a0a0a;
    position: relative;
    text-align: center;
}

.partners-header {
    max-width: var(--container-width);
    margin: 0 auto 24px;
}

.partners-label {
    font-family: 'Courier New', Courier, monospace;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

.partners-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 400;
    letter-spacing: 0.04em;
    color: #fff;
    margin-bottom: 8px;
}

.partners-divider {
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    margin: 0 auto;
}

.partners-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    height: 60px;
    opacity: 0.6;
    transition: all 0.4s ease;
    text-decoration: none;
}

.partner-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

.partner-item img {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
}

.partner-item.invert-logo img {
    filter: invert(1);
}

.partner-item:hover img {
    filter: drop-shadow(0 0 8px rgba(206, 254, 70, 0.3));
}

.partner-item.invert-logo:hover img {
    filter: invert(1) drop-shadow(0 0 8px rgba(206, 254, 70, 0.3));
}

@media (max-width: 767px) {
    .partners-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .partner-item {
        flex: 0 0 40%;
        height: 50px;
    }
    .partner-item img {
        max-height: 40px;
    }
}

/* CONTACTS SECTION STYLES — Premium Redesign */
.contacts-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #050505 0%, #0a0a0a 50%, #050505 100%);
    position: relative;
}

.contacts-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(206,254,70,0.2), transparent);
}

.contacts-header {
    max-width: var(--container-width);
    margin: 0 auto 48px;
    text-align: center;
}

.contacts-label {
    font-family: 'Courier New', Courier, monospace;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.contacts-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 400;
    letter-spacing: 0.04em;
    color: #fff;
    margin-bottom: 12px;
}

.contacts-divider {
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    margin: 0 auto;
}

/* Radar map — full width */
