.cert-brands-v2 {
    background: linear-gradient(135deg, #f8fbff 0%, #eef4fb 50%, #f0f6ff 100%);
    padding: 56px 0 48px;
    position: relative;
    overflow: hidden;
}

.cert-brands-v2__header {
    text-align: center;
    margin-bottom: 36px;
}

.cert-brands-v2__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fff7e6 0%, #fff1cc 100%);
    border: 1px solid #ffe4a0;
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 12px;
    font-weight: 700;
    color: #b37400;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 16px;
}

.cert-brands-v2__badge i {
    font-size: 14px;
    color: #e6a200;
}

.cert-brands-v2__title {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #1a2a3a;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.cert-brands-v2__title span {
    color: #ffb507;
}

.cert-brands-v2__subtitle {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #6b7c8d;
    max-width: 780px;
    margin: 0 auto;
}

.cert-brands-v2__viewport {
    position: relative;
    overflow: hidden;
    margin-bottom: 28px;
    padding: 8px 0;
}

.cert-brands-v2__viewport::before,
.cert-brands-v2__viewport::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 3;
    pointer-events: none;
}

.cert-brands-v2__viewport::before {
    left: 0;
    background: linear-gradient(to right, #f0f4fa, transparent);
}

.cert-brands-v2__viewport::after {
    right: 0;
    background: linear-gradient(to left, #f0f4fa, transparent);
}

.cert-brands-v2__track {
    display: flex;
    gap: 16px;
    will-change: transform;
}

.cert-brand-chip {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px 14px 18px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 60px;
    cursor: default;
    white-space: nowrap;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 4px rgba(0, 30, 60, 0.04);
    position: relative;
}

.cert-brand-chip:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--chip-accent, #FFA500);
    box-shadow:
        0 4px 20px rgba(0, 30, 60, 0.08),
        0 0 0 3px color-mix(in srgb, var(--chip-accent, #FFA500) 12%, transparent);
    transform: translateY(-2px);
}

.cert-brand-chip__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--chip-accent, #FFA500);
    flex-shrink: 0;
    position: relative;
}

.cert-brand-chip:hover .cert-brand-chip__dot::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--chip-accent, #FFA500);
    opacity: 0.3;
    animation: chipDotPulse 1.4s ease-out infinite;
}

@keyframes chipDotPulse {
    0% {
        transform: scale(0.8);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.cert-brand-chip__text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    line-height: 1;
}

.cert-brand-chip__name {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #1a2a3a;
    letter-spacing: -0.2px;
}

.cert-brand-chip__desc {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: #8899a8;
    letter-spacing: 0.1px;
}

.cert-brands-v2__footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #fff9e6 0%, #fffdf5 100%);
    border: 1px solid #ffeeba;
    border-radius: 10px;
    padding: 14px 24px;
    max-width: 780px;
    margin: 0 auto;
}

.cert-brands-v2__footer i {
    font-size: 22px;
    color: #feb407;
    flex-shrink: 0;
}

.cert-brands-v2__footer p {
    margin: 0;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13px;
    color: #444;
    line-height: 1.5;
}

.cert-brands-v2__footer strong {
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .cert-brands-v2 {
        padding: 40px 0 36px;
    }

    .cert-brands-v2__title {
        font-size: 22px;
    }

    .cert-brand-chip {
        padding: 12px 18px 12px 14px;
    }

    .cert-brand-chip__name {
        font-size: 13px;
    }

    .cert-brands-v2__viewport::before,
    .cert-brands-v2__viewport::after {
        width: 40px;
    }

    .cert-brands-v2__footer {
        flex-direction: column;
        text-align: center;
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .cert-brand-chip {
        padding: 10px 14px 10px 12px;
        gap: 8px;
    }

    .cert-brand-chip__name {
        font-size: 12px;
    }

    .cert-brand-chip__desc {
        font-size: 10px;
    }

    .cert-brands-v2__track {
        gap: 10px;
    }

    .cert-brands-v2__viewport::before,
    .cert-brands-v2__viewport::after {
        width: 24px;
    }
}
