.akra-brands {
    position: relative;
    padding: 140px 0 120px;
    overflow: hidden;
    background:
        linear-gradient(180deg,
            #05010d 0%,
            #090312 100%);
}

/* =========================================================
   GRID BACKGROUND
========================================================= */
.akra-brands::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: .35;
}

/* =========================================================
   GLOW
========================================================= */
.brands-glow {
    position: absolute;
    width: 900px;
    height: 900px;
    border-radius: 50%;
    background:
        radial-gradient(circle,
            rgba(123, 97, 255, .18),
            transparent 70%);
    filter: blur(140px);
    top: -300px;
    left: -250px;
    pointer-events: none;
}

/* =========================================================
   HERO
========================================================= */
.brands-hero {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: auto;
    text-align: center;
    margin-bottom: 70px;
}

.brands-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 999px;
    background:
        rgba(255, 255, 255, .04);
    border:
        1px solid rgba(255, 255, 255, .08);
    margin-bottom: 30px;
    font-size: 13px;
    letter-spacing: 3px;
    color:
        rgba(255, 255, 255, .72);
}

.brands-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ba6eeb;
}

.brands-hero h1 {
    font-size: clamp(48px, 6vw, 82px);
    line-height: .98;
    font-weight: 900;
    letter-spacing: -4px;
    color: #fff;
    margin-bottom: 30px;
}

.brands-hero h1 span {
    background:
        linear-gradient(90deg,
            #7b61ff,
            #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brands-hero p {
    max-width: 850px;
    margin: auto;
    font-size: 20px;
    line-height: 1.9;
    color:
        rgba(255, 255, 255, .68);
}

/* =========================================================
   FILTER
========================================================= */
.brands-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 70px;
    position: relative;
    z-index: 10;
}

.brand-filter-btn {
    padding: 14px 24px;
    border-radius: 999px;
    border:
        1px solid rgba(255, 255, 255, .08);
    background:
        rgba(255, 255, 255, .04);
    color:
        rgba(255, 255, 255, .72);
    cursor: pointer;
    transition: .35s ease;
    font-size: 15px;
    font-weight: 500;
}

.brand-filter-btn.active,
.brand-filter-btn:hover {
    background:
        linear-gradient(90deg,
            #7b61ff,
            #c084fc);
    border-color: transparent;
    color: #fff;
    box-shadow:
        0 0 24px rgba(123, 97, 255, .22);
}

/* =========================================================
   GRID
========================================================= */
.brands-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 28px;
}

/* =========================================================
   CARD
========================================================= */
.brand-card {
    position: relative;
    border-radius: 34px;
    overflow: hidden;
    background:
        rgba(255, 255, 255, .04);
    border:
        1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(18px);
    transition:
        transform .4s ease,
        border .4s ease,
        box-shadow .4s ease;
    width: 100%;
}

.brand-card:hover {
    transform:
        translateY(-10px);
    border-color:
        rgba(123, 97, 255, .35);
    box-shadow:
        0 0 40px rgba(123, 97, 255, .14);
}

/* =========================================================
   IMAGE
========================================================= */
.brand-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #000;
}

.brand-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease;
}

.brand-card:hover img {
    transform: scale(1.05);
}

/* =========================================================
   CONTENT
========================================================= */
.brand-content {
    padding: 30px;
}

.brand-category {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 10px 16px;
    border-radius: 999px;
    background:
        rgba(123, 97, 255, .12);
    border:
        1px solid rgba(123, 97, 255, .2);
    font-size: 12px;
    letter-spacing: 2px;
    color: #d5c1ff;
}

.brand-content h3 {
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
}

.brand-content p {
    font-size: 16px;
    line-height: 1.9;
    color:
        rgba(255, 255, 255, .66);
}

/* =========================================================
   PAGINATION
========================================================= */
.brands-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 70px;
}

.pagination-btn,
.pagination-number {
    min-width: 54px;
    height: 54px;
    padding: 0 22px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        rgba(255, 255, 255, .04);
    border:
        1px solid rgba(255, 255, 255, .08);
    color:
        rgba(255, 255, 255, .72);
    font-size: 15px;
    font-weight: 600;
    transition: .35s ease;
    backdrop-filter: blur(10px);
}

.pagination-number.active {
    background:
        linear-gradient(90deg,
            #7b61ff,
            #c084fc);
    border-color: transparent;
    color: #fff;
    box-shadow:
        0 0 30px rgba(123, 97, 255, .25);
}

.pagination-btn:hover,
.pagination-number:hover {
    transform:
        translateY(-4px);
    border-color:
        rgba(123, 97, 255, .35);
    color: #fff;
    box-shadow:
        0 0 30px rgba(123, 97, 255, .14);
}

.pagination-btn.disabled {
    opacity: .35;
    pointer-events: none;
}

/* =========================================================
   TABLET
========================================================= */
@media(max-width:1200px) {
    .brands-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* =========================================================
   MOBILE
========================================================= */
@media(max-width:768px) {
    .akra-brands {
        padding: 110px 0 120px;
    }

    .brands-grid {
        grid-template-columns: 1fr;
    }

    .brands-hero h1 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .brands-hero p {
        font-size: 17px;
    }

    .brands-pagination {
        margin-top: 50px;
    }

    .pagination-btn,
    .pagination-number {
        min-width: 48px;
        height: 48px;
        border-radius: 16px;
        font-size: 14px;
    }
}
