/* ===== Supported By / Backed By Section ===== */
.supported-by-section {
    padding: 60px 0 70px;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

/* Subtle top fade border */
.supported-by-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}

/* Section Header */
.supported-by-header {
    text-align: center;
    margin-bottom: 45px;
}

.supported-by-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}

/* Logos Container */
.supported-by-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Individual Logo Wrapper */
.supporter-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.55;
    filter: invert(1) grayscale(1);
    mix-blend-mode: screen;
}

.supporter-logo:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: invert(1) grayscale(0);
}

.supporter-logo img {
    max-height: 65px;
    max-width: 200px;
    object-fit: contain;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .supported-by-section {
        padding: 40px 0 50px;
    }

    .supported-by-logos {
        gap: 40px;
    }

    .supporter-logo img {
        max-height: 36px;
        max-width: 130px;
    }
}

@media (max-width: 768px) {
    .supported-by-section {
        padding: 35px 0 40px;
    }

    .supported-by-logos {
        gap: 30px;
    }

    .supporter-logo {
        height: 40px;
    }

    .supporter-logo img {
        max-height: 32px;
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .supported-by-section {
        padding: 30px 0 35px;
    }

    .supported-by-label {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    .supported-by-logos {
        gap: 25px;
    }

    .supporter-logo img {
        max-height: 28px;
        max-width: 100px;
    }
}