/* Products / brands showcase — Lotus Energy Atlas */

.products-page {
    background: #111111;
    color: #cfcfcf;
}

.products-page h1,
.products-page h2,
.products-page h3,
.products-page strong {
    color: #ffffff;
}

.products-banner__shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.2) 0%, rgba(17, 17, 17, 0.7) 100%);
}

.products-banner .banner-inner {
    position: relative;
    z-index: 2;
}

.brands-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--thm-base);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.brands-kicker--light {
    color: var(--thm-base);
}

.brands-intro {
    padding: 90px 0 50px;
}

.brands-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 36px;
    align-items: start;
}

.brands-intro__content h2 {
    font-size: 36px;
    line-height: 1.25;
    margin-bottom: 16px;
}

.brands-intro__content p,
.brands-intro__promise p {
    line-height: 1.8;
    margin: 0;
}

.brands-intro__promise {
    padding: 28px 26px;
    background: #181818;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.brands-intro__promise-label {
    display: block;
    color: var(--thm-base);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 10px;
}

.brands-intro__metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.brands-metric strong {
    display: block;
    font-size: 28px;
    color: #fff;
}

.brands-metric span {
    color: #9a9a9a;
    font-size: 13px;
}

.brands-showcase {
    position: relative;
    padding: 40px 0 90px;
    overflow: hidden;
}

.brands-showcase__orb {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(255, 170, 23, 0.12) 0%, transparent 70%);
}

.brands-showcase__orb--one {
    top: -140px;
    left: -80px;
}

.brands-showcase__orb--two {
    right: -120px;
    bottom: -160px;
}

.brands-showcase__heading {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: end;
    margin-bottom: 34px;
}

.brands-showcase__heading h2 {
    font-size: 34px;
    margin: 0;
}

.brands-showcase__heading p {
    max-width: 360px;
    margin: 0;
    line-height: 1.7;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.brand-card {
    position: relative;
    display: block;
    min-height: 280px;
    overflow: hidden;
    color: #fff;
    isolation: isolate;
}

.brand-card__media,
.brand-card__media img,
.brand-card__veil {
    position: absolute;
    inset: 0;
}

.brand-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.brand-card__veil {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.15) 0%, rgba(10, 10, 10, 0.88) 78%);
}

.brand-card__number {
    position: absolute;
    top: 18px;
    right: 20px;
    z-index: 2;
    color: var(--brand-accent, var(--thm-base));
    letter-spacing: 0.12em;
    font-weight: 700;
}

.brand-card__body {
    position: relative;
    z-index: 2;
    height: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 26px 24px 24px;
}

.brand-card__eyebrow {
    display: block;
    color: var(--thm-base);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.brand-card__body h3 {
    font-size: 28px;
    margin-bottom: 8px;
}

.brand-card__body p {
    color: #d0d0d0;
    margin-bottom: 18px;
    line-height: 1.6;
}

.brand-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.brand-card:hover {
    color: #fff;
}

.brands-assurance {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
    background: #181818;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.brands-assurance__icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--thm-base);
    color: #111;
}

.brands-assurance strong {
    display: block;
    margin-bottom: 4px;
}

.brands-assurance span {
    color: #9a9a9a;
}

.brands-assurance a {
    margin-left: auto;
    color: #fff;
    font-weight: 700;
    white-space: nowrap;
}

.brands-assurance a:hover {
    color: var(--thm-base);
}

.translated-rtl .brand-card__number {
    right: auto;
    left: 20px;
}

.translated-rtl .brands-assurance a {
    margin-left: 0;
    margin-right: auto;
}

@media (max-width: 991px) {
    .brands-intro__grid,
    .brands-showcase__heading,
    .brands-grid {
        grid-template-columns: 1fr;
    }

    .brands-assurance {
        flex-direction: column;
        align-items: flex-start;
    }

    .brands-assurance a {
        margin-left: 0;
    }
}
