/* Solution Hero Banner */
.hide_sec {
    display: none !important;
}

*,
body {
    font-family: 'Google Sans', sans-serif;
}

.electres-hero-banner {
    position: relative;
    width: 100%;
    height: 100dvh;
    min-height: 600px;
    background: #0d0d0d;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.electres-hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;

    /* opacity: 0;
    clip-path: inset(25% 25% 25% 25% round 0px); */
    /* animation: shedFrameExpand 3s cubic-bezier(0.77, 0, 0.175, 1) 0s forwards; */
}

@keyframes shedFrameExpand {
    0% {
        opacity: 0;
        clip-path: inset(25% 25% 25% 25% round 0px);
    }

    10% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        clip-path: inset(0% 0% 0% 0% round 0px);
    }
}

.hero-video-base {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    transition: opacity 0.4s ease-in-out;
    /* transform: scale(1.15); */
    /* animation: luxuriousZoomDown 3s cubic-bezier(0.77, 0, 0.175, 1) 0s forwards; */
}

.flash-seq-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.6s ease-out;
    transform: scale(1.15);
    /* animation: luxuriousZoomDown 3s cubic-bezier(0.77, 0, 0.175, 1) 0s forwards; */
}

.flash-image-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: opacity;
}

@keyframes luxuriousZoomDown {
    0% {
        transform: scale(1.25);
    }

    100% {
        transform: scale(1);
    }
}

.electres-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;

    background: linear-gradient(to top, rgb(0 0 0 / 70%) 0%, rgb(0 0 0 / 40%) 40%, rgb(0 0 0 / 40%) 100%);
}

.electres-hero-content {
    position: relative;
    z-index: 4;
    padding: clamp(2.5rem, 10vw, 5rem) clamp(1.25rem, 12vw, 4rem);
    width: 100%;
    margin: 0 auto;

    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpText 1s cubic-bezier(0.2, 0.8, 0.2, 1) 1s forwards;
}

@keyframes fadeUpText {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.electres-hero-title {
    font-size: clamp(1.5rem, 5vw, 2.8rem);
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 1rem 0;
    letter-spacing: -1px;
    line-height: 130%;
    max-width: clamp(400px, 80vw, 900px);
}

.electres-hero-subtitle {
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
    max-width: 800px;
}

.electres-hero-btn-wrap {
    margin-top: 30px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    background: var(--color-primary, #e21e31);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition-standard, all 0.3s ease);
}

.hero-btn:focus,
.hero-btn:hover {
    background: #c11526;
    color: #ffffff;
    transform: translateY(-2px);
    text-decoration: none;
}

.hero-btn .arrow {
    margin-left: 8px;
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .electres-hero-content {
        padding: 3rem 2rem;
    }
}

@media (max-width: 767px) {
    .electres-hero-banner {
        height: 89dvh;
        min-height: 450px;
    }

    .electres-hero-content {
        padding: 2.5rem 1.2rem;
    }

    .electres-hero-subtitle {
        font-size: 1rem;
    }
}

/* FAQ Page */
.product-faq-section {
    padding: 5rem 1.25rem 5rem;
    background: linear-gradient(180deg, #FFF 0%, #F4F4F4 50%, #CFCAC2 100%);
}

.straight-answers-faq {
    background: #ffffff;
}

.page-template-solutions:has(.ind-hero-m-section) .product-faq-section {
    background: #ffffff;
}

.product-faq-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

/* ── Left Column Styling ── */
.product-faq-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.product-faq-title {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 600;
    color: #000;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.product-faq-subtitle {
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    color: #000;
    margin: 0 0 2rem 0;
    line-height: 1.5;
    opacity: 0.5;
}

.product-faq-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #e31837;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.product-faq-btn:hover,
.product-faq-btn:focus,
.product-faq-btn:active {
    background-color: #E21E31;
    transform: translateY(-2px);
    color: #fff;
}

/* ── Right Column (Accordion) ── */
.product-faq-right {
    width: 100%;
}

/* .product-faq-accordion {
    border-top:1px solid rgba(207, 202, 194, 0.45);

} */

.product-faq-item {
    border-bottom: 1px solid rgba(207, 202, 194, 0.45);

}

.product-faq-item:first-child {
    border-top: none;
    padding-top: 0;
}

.product-faq-item:first-child {
    border-top: none;
}

.product-faq-item:first-child .product-faq-question {
    padding-top: 0.55rem;
}

.product-faq-item:last-child {
    border-bottom: none;

}

.product-faq-question:focus,
.product-faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 500;
    color: #1a1a1a;
    transition: color 0.3s ease;
}



.product-faq-question:hover {
    color: #e31837;
    background-color: transparent;
}

.product-faq-item.active .product-faq-question,
.product-faq-item.active .product-faq-icon {
    color: #e31837;
    background-color: transparent;
}

/* Icons */
.product-faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform 0.2s ease;
}

.product-faq-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* Default state */
.icon-plus {
    display: block;
}

.icon-minus {
    display: none;
}

/* Active state */
.product-faq-item.active .icon-plus {
    display: none;
}

.product-faq-item.active .icon-minus {
    display: block;
}

/* Answer Wrapper (Hidden by default) */
.product-faq-answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Answer Inner Content */
.product-faq-answer {
    padding-bottom: 1.5rem;
    color: #000;
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    line-height: 1.6;
    opacity: 0.8;
}

.product-faq-answer p:last-child {
    margin-bottom: 0;
}

/* ── Responsive Refinements ── */
@media (max-width: 991px) {
    .product-faq-container {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .product-faq-section {
        padding: 3rem 1.25rem;
    }

    .product-faq-left {
        display: contents;
        /* Allow children to be reordered via parent flex */
    }

    .product-faq-title {
        order: 1;
    }

    .product-faq-subtitle {
        order: 2;
    }

    .product-faq-right {
        order: 3;
    }

    .product-faq-btn {
        order: 4;
        width: 100%;
        justify-content: center;
        margin-top: 2rem;

    }
}


/* FramerSlide layout */

.product-framerslide-section {
    padding: 60px 20px 110px;
    background: #ffffff;
    font-family: inherit;
}

.product-framerslide-container {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 6rem;
    align-items: start;
}

/* ── LEFT COLUMN (Sticky Magic) ── */

.product-framerslide-left {
    position: relative;
    height: 100%;
}

.product-framerslide-sticky {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    /* gap: 1.5rem; */
}

.product-framerslide-title {
    font-size: clamp(1.5rem, 2.25vw, 2.5rem);
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0 0 12px;
}

.product-framerslide-desc {
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    color: #000000;
    line-height: 140%;
    margin: 0;
    max-width: 95%;
    opacity: 0.5;
}

.product-framerslide-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-top: 0;
    aspect-ratio: 16/10;
}

/* ── RIGHT COLUMN (Cards Configuration) ── */
.product-framerslide-right {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.product-framerslide-card {
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 140px;
    transition: all .5s ease;
    transform: scale(.92) translateY(60px);
    opacity: 1;
    z-index: 1;
}

.product-framerslide-card.active {
    opacity: 1;
    z-index: 5;
}


/* Custom Folder Tab Styling */
.product-framerslide-tab {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border: 1px solid #eaeaea;
    background: #ffffff;
    align-self: flex-start;
    position: relative;
    z-index: 2;
    margin-bottom: -1px;
    font-weight: 600;
    font-size: 1rem;
    color: #1a1a1a;
    width: 100%;
    max-width: 350px;
}

.product-framerslide-icon {
    display: inline-flex;
    align-items: center;
    color: #666666;
}

.product-framerslide-icon img,
.product-framerslide-icon svg {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Main Box Body */
.product-framerslide-box {
    border: 1px solid #eaeaea;
    padding: 2.5rem 3rem;
    background: #ffffff;
    position: relative;
    z-index: 1;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Problem Block */
.product-framerslide-problem {
    margin-bottom: 2.5rem;
    border-left: 2px solid rgba(207, 202, 194, 0.45);
    padding-left: 1.25rem;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.product-framerslide-label {
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    font-weight: 600;
    color: #000000;
    margin: 0 0 0.4rem 0;
    line-height: 140%;
}

.product-framerslide-text-content {
    color: var(--Black, #000);
    font-size: clamp(0.95rem, 1.25vw, 1rem);
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    opacity: 0.5;
}

/* Solution Block */
.product-framerslide-solution {
    border-left: 2px solid #e31837;
    padding-left: 1.25rem;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.product-framerslide-sol-label {
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    font-weight: 600;
    color: #E21E31;
    margin: 0 0 0.4rem 0;
    line-height: 140%;
}

.product-framerslide-text-content.sol-desc-bold p {
    color: #1a1a1a;
    font-weight: 500;
}

/* ── Responsive Refinements ── */
@media (max-width: 1200px) {
    .product-framerslide-container {
        gap: 3rem;
    }
}

@media (max-width: 991px) {
    .product-framerslide-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .product-framerslide-sticky {
        position: relative;
        top: auto;
    }

    .product-framerslide-box {
        padding: 2rem 1.25rem;
    }

    .product-framerslide-section {
        padding: 2rem 1.25rem 4rem;
    }
}

/*animation css */

/* active */
.product-framerslide-card.active {
    transform: scale(1);
}

/* previous based on data-index */
.product-framerslide-card[data-index="0"].prev {
    transform: scale(.94);
}

.product-framerslide-card[data-index="1"].prev {
    transform: scale(.96);
}

.product-framerslide-card[data-index="2"].prev {
    transform: scale(.98);
}

.product-framerslide-card.prev {
    transform: scale(.98);
}

/* next */
.product-framerslide-card.next {
    transform: scale(1);
}

/* LEFT IMAGE */
.product-framerslide-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    margin-top: 3rem;
}

.product-framerslide-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
}

.product-framerslide-img.active {
    opacity: 1;
}

/* CARD DEFAULT */
.product-framerslide-card {
    position: sticky;
    top: 140px;
    transform: scale(1);
    transition: transform .35s ease;
    z-index: 2;
    min-height: 560px;

}

/* CURRENT ACTIVE */
.product-framerslide-card:nth-child(1) {
    z-index: 1;
}

.product-framerslide-card:nth-child(2) {
    z-index: 2;
}

.product-framerslide-card:nth-child(3) {
    z-index: 3;
}

.product-framerslide-card:nth-child(4) {
    z-index: 4;
}

.product-framerslide-card:nth-child(5) {
    z-index: 5;
}

.product-framerslide-card:nth-child(6) {
    z-index: 6;
}

.product-framerslide-img {
    opacity: 0;
    transition: opacity .35s ease;
}

.product-framerslide-img.active {
    opacity: 1;
}


/* industries layout */


.product-industries-section {
    padding: 6rem 1.25rem;
    background: #ffffff;
    font-family: inherit;
}


/* ── Header Area ── */
.product-industries-title {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 600;
    color: #000000;
    line-height: 1.2;
    margin: 0 0 0.8rem 0;
    letter-spacing: -0.5px;
}

.product-industries-subtitle {
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    color: #000;
    line-height: 1.6;
    margin: 0 0 3.5rem 0;
    opacity: 0.5;
}

/* ── Tab Buttons ── */
.product-industries-tabs-nav {
    display: flex;
    gap: 12px;
    margin-left: -2px;
    margin-bottom: 2.5rem;
    padding: 4px 4px 8px 4px;
    /* increased bottom padding so shadows don't clip content */
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    /* Hide scrollbar for IE and Edge */
    scrollbar-width: none;
    /* Hide scrollbar for Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.product-industries-tabs-nav::-webkit-scrollbar {
    display: none;
}

.product-industries-tab-btn {
    background: #ffffff;
    border: none;
    color: #1a1a1a;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    line-height: 1;
    min-height: 42px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    white-space: nowrap;
    flex-shrink: 0;
}

.product-industries-tab-btn:focus,
.product-industries-tab-btn:hover {
    background: #e31837;
    color: #fff;
    box-shadow: #e31837 0px 1px 3px 0px, #e31837 0px 0px 0px 1px;
}

.product-industries-tab-btn.active {
    background: #e31837;
    /* Distinctive Red Layout Style */
    color: #ffffff;
    box-shadow: #e31837 0px 1px 3px 0px, #e31837 0px 0px 0px 1px;
}

/* ── Content Panels ── */
.product-industries-content {
    position: relative;
    width: 100%;
}

.product-industries-panel {
    display: none;
    /* Hide inactive tabs naturally */
    position: relative;
    width: 100%;
    animation: fadeContent 0.5s ease;
    border-radius: 0px;
    /* Layout displays hard-edges instead of rounded */
    overflow: hidden;
}

.product-industries-panel.active {
    display: block;
    /* Reveal on active */
}

/* Smooth fade-up animation when switching tabs */
@keyframes fadeContent {
    from {
        opacity: 0;
        transform: scale(0.99) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Image Configuration */
.product-industries-panel img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    /* Eliminate arbitrary bottom margin text gaps */
    aspect-ratio: 21 / 9;
    /* Very wide horizontal framing mimicking photo */
    background: #f4f5f5;
    /* Skeleton state */
}

/* ── Image Overlay Text Layer ── */
.product-industries-panel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    /* Subtle gradient purely matching screenshot design perfectly */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 6rem 3rem 2.5rem 3rem;
    color: #ffffff;
    display: flex;
    flex-direction: column;
}

.product-industries-panel-overlay h3 {
    font-size: clamp(1.6rem, 2vw, 2.5rem);
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.8rem 0;
    letter-spacing: -0.3px;
}

.product-industries-overlay-text p {
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    line-height: 1.6;
    margin: 0;
    color: #ffffff;
    max-width: 800px;
    opacity: 0.8;
}

/* ── Responsive Refinements ── */
@media (max-width: 991px) {
    .product-industries-tabs-nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .product-industries-tabs-nav::-webkit-scrollbar {
        display: none;
    }

    .product-industries-tab-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .product-industries-panel img {
        aspect-ratio: 16 / 10;
        min-height: 450px;
    }

    .product-framerslide-card {
        min-height: 360px;
    }
}

@media (max-width: 767px) {

    .electres-hero-title br {
        display: none;
    }

    .product-industries-section {
        padding: 2.5rem 1.25rem;
    }

    .product-industries-tabs-nav {
        gap: 8px;
        margin-bottom: 2rem;
    }



    .product-industries-panel img {
        aspect-ratio: 6 / 8;
        /* Taller portrait size on mobile */

    }

    .product-industries-panel-overlay {
        padding: 4rem 1.5rem 1.25rem 1.5rem;
    }



}

/* Marquee */
.global-marquee-section {
    background: #000000;
    color: #ffffff;
    padding: 2rem 0;
    overflow: hidden;
    position: relative;
    display: block;
    width: 100%;
    max-width: 100vw;
    white-space: nowrap;
}

.global-marquee-section:hover .global-marquee-track {
    animation-play-state: paused;
}

.global-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marqueeScroll 35s linear infinite;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-25%);
    }
}

.global-marquee-group {
    display: flex;
    align-items: center;
}

/* ── Flex Items Component ── */
.global-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 0 4rem;
    position: relative;
}

.global-marquee-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 35px;
    background: #333333;
}

.global-marquee-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.global-marquee-icon img,
.global-marquee-icon svg {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.global-marquee-text {
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #eeeeee;
    font-family: inherit;
}

@media (max-width: 991px) {
    .global-marquee-item {
        padding: 0 2rem;
    }
}

@media (max-width: 767px) {
    .global-marquee-item {
        padding: 0 1.25rem;
    }

    .global-marquee-text {
        font-size: 0.95rem;
    }

    .global-marquee-icon img,
    .global-marquee-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* Product Layout */


.grid-modal-wrapper {
    display: flex;
    flex-direction: column;

    width: 100%;
    overflow: hidden;
}

.grid-modal-section {
    padding: 60px 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.grid-modal-container {
    width: 100%;
    margin: 0 auto;
    padding: 1rem;
    box-sizing: border-box;
    background-color: #F4F4F4;
}

.grid-modal-badge {
    background: #ffffff;
    color: #1a1a1a;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    align-self: flex-start;
    margin-bottom: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.grid-modal-title {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 1rem;
    line-height: 1.2;
}

.grid-modal-desc>* {
    color: #000000;
    font-size: clamp(0.95rem, 1.55vw, 1.1rem);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.5;
}

.grid-modal-general-specs {
    margin-bottom: 2.5rem;
}

.grid-modal-general-specs .general-specs-title {
    font-size: clamp(1rem, 1.75vw, 1.5rem);
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.grid-modal-general-specs ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.grid-modal-general-specs ul li {
    position: relative;
    padding-left: 20px;
    color: #8E8E8E;
    font-size: clamp(0.95rem, 1.55vw, 1rem);
    margin-bottom: 0.8rem;

}

.grid-modal-general-specs ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    background-color: #e31837;
    border-radius: 50%;
}

.grid-modal-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.grid-modal-actions .grid-modal-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e31837;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s ease;
    font-size: clamp(0.95rem, 1.2vw, 1rem);
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-modal-actions .grid-modal-btn:hover {
    background: #E21E31;
}

.grid-modal-spec-icon {
    margin-bottom: 8px;
    display: flex;
}

.grid-modal-spec-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.grid-modal-spec-text {
    font-size: 0.95rem;
    color: #666666;
    margin: 0;
}

.grid-modal-spec-text strong {
    color: #000000;
    font-weight: 500;

}

@media (min-width: 992px) {

    .grid-modal-mobile-img,
    .grid-modal-mobile-specs {
        display: none;
    }

    .grid-modal-main-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
        padding-bottom: 1rem;
    }

    .grid-modal-content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding-left: 1.25rem;
        padding-top: 1.5rem;
        height: 100%;
        row-gap: 2rem;
    }

    .grid-modal-content-top {
        display: flex;
        flex-direction: column;
    }

    .grid-modal-desktop-img-wrap {
        width: 100%;
        height: 100%;
        display: flex;
        /* align-items: center; */
    }

    .grid-modal-desktop-img {
        width: 100%;
        height: auto;
        max-height: 800px;
        object-fit: cover;
        display: block;
    }

    .grid-modal-desktop-specs {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
        margin-top: 1rem;
    }


    .grid-modal-desktop-specs .grid-modal-spec-card {
        background: #ffffff;
        padding: 24px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }

    .page-template-solutions #main-header.header a {
        color: #ffffff;
    }

    .page-template-solutions #main-header.header .mega-open .menu-item a {
        color: #000;
    }

    .page-template-solutions #main-header.header a span.after-icon svg path {
        stroke: #ffffff;
    }

    .page-template-solutions #main-header.header .mega-open .menu-item a span.after-icon svg path {
        stroke: #000;
    }

    .page-template-solutions #main-header.header.is-scrolled a span.after-icon svg path {
        stroke: #000;
    }

    /* .page-template-solutions:has(.ind-hero-m-section) #main-header.header .menu-item a {
        color: #000;
    }

    .page-template-solutions:has(.ind-hero-m-section) #main-header.header .mega-open .menu-item a {
        color: #000;
    }

    .page-template-solutions:has(.ind-hero-m-section) #main-header.header a span.after-icon svg path {
        stroke: #000;
    } */

}

@media (max-width: 991px) {

    .grid-modal-desktop-img,
    .grid-modal-desktop-specs {
        display: none;
    }

    .grid-modal-mobile-img {
        width: calc(100% + 3rem);
        /* margin: 0 -1.5rem; */
        height: auto;
        object-fit: cover;
        display: block;
        aspect-ratio: 3 / 3;
    }

    .grid-modal-content {
        padding: 2rem 0 1.2rem;
        display: flex;
        flex-direction: column;
    }

    .grid-modal-content-top {
        display: flex;
        flex-direction: column;
    }

    .grid-modal-badge {
        order: -1;
        margin-bottom: 24px;
    }

    .grid-modal-mobile-specs {
        margin-top: 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        padding-top: 20px;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .grid-modal-desc p {
        margin-bottom: 24px;
    }

    .grid-modal-general-specs {
        margin-bottom: 0;
    }

    .grid-modal-mobile-specs .grid-modal-spec-item {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .grid-modal-mobile-specs .grid-modal-spec-item .grid-modal-spec-icon {
        margin-bottom: 0;
    }


    .grid-modal-actions {
        margin-top: 2rem;
    }

    .grid-modal-actions .grid-modal-btn {
        justify-content: center;
        box-sizing: border-box;
    }

    .grid-modal-section {
        padding: 20px 20px;
    }

    .page-template-solutions header .mobile-menu-icon svg {
        background-color: rgb(255 255 255 / 50%);
    }
}

@media screen and (max-width: 767px) {
    .grid-modal-actions {
        flex-direction: column;
    }

    .grid-modal-spec-icon img {
        width: 18px;
        height: 18px;
    }

}

/* Product Media Section */

.product-video-full {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 500px;
    overflow: hidden;
    background: #0d0d0d;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.product-video-player {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

@media (max-width: 991px) {
    .product-video-full {
        height: 70vh;
        height: 70dvh;
    }
}

@media (max-width: 767px) {
    .product-video-full {
        height: 60vh;
        height: 60dvh;
        min-height: 400px;
    }
}

/* Solution Journey Form */
.journey-form-product {
    padding: 80px 20px 0;
}

.journey-top {
    margin: 0 auto;
    width: 100%;
    max-width: 1024px;
    text-align: center;
    /* padding-bottom: 4rem; */
}

.journey-title-top {
    font-size: clamp(1.25rem, 3vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 0;
}

.journey-subheading-top {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 400;
    margin-top: 1rem;
}

.journey-form-product .journey-content-wrapper {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    display: none;

}

/* Why Electres Section */

.why-electres-section {
    padding: 6rem 1.25rem;
    font-family: inherit;
    background-color: #ffffff;

}


.solution-heading {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.8rem 0;
    letter-spacing: -0.5px;
}

.solution-subheading {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.6;
    margin: 0 0 4rem 0;
}

.why-electres-items-section {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}

.why-electres-left {
    flex: 0 0 380px;
    display: flex;
    flex-direction: column;
}

.why-tab {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px 24px;
    cursor: pointer;
    background: transparent;
    border-bottom: 1px solid #eaeaea;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}


.why-tab img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.why-tab span {
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    font-weight: 500;
    color: #000;
}

.why-tab:hover:not(.active) {
    background: #fafafa;
}

.why-tab.active {
    background: #f8f9fa;
    border-left: 3px solid #e31837;
    border-bottom-color: transparent;
}

/* ── Right Side: Content Panels ── */
.why-electres-right {
    flex: 1;
    min-width: 0;
}

.why-content {
    display: none;
    border-radius: 4px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    animation: fadeWhyContent 0.4s ease;
    border: 1px solid rgba(207, 202, 194, 0.00);
    background: rgba(244, 244, 244, 0.80);
}

.why-content.active {
    display: block;
}

.why-mobile-content {
    animation: fadeWhyContent 0.4s ease;
}

@keyframes fadeWhyContent {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-text {
    margin-bottom: 2.5rem;
}

.content-heading {
    color: #000;
    font-size: clamp(1rem, 1.33vw, 1.75rem);
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    margin: 0;
}

.content-subheading {
    color: #000;
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 0.6;
    margin-top: 8px;
}

.content-text p:first-of-type,
.content-text strong {
    font-size: 1.3rem;
    color: #1a1a1a;
    font-weight: 600;
    margin: 0 0 0.8rem 0;
    display: block;
    line-height: 1.4;
}

.content-text p {
    font-size: 1.05rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

.content-image {
    width: 100%;
    margin-top: 2rem;
    background-color: #fafbfc;
    /* padding: 1rem; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* mobile tabs */
.why-electres-mobile {
    display: none;
}

@media (max-width:767px) {

    .why-electres-items-section {
        display: none;
    }

    .why-electres-mobile {
        display: block;
    }

    .why-mobile-item {
        margin-bottom: 24px;
        padding-bottom: 24px;
        border-bottom: 1px solid #eaeaea;
        overflow: hidden;
        background: #fff;
    }

    .why-mobile-title {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 0;
        cursor: pointer;
        font-weight: 600;
        position: relative;
    }

    .why-mobile-title img {
        width: 22px;
        height: 22px;
        object-fit: contain;
    }

    .why-mobile-title span {
        flex: 1;
    }

    /* Arrow */
    .why-mobile-title:after {
        content: '';
        width: 14px;
        height: 8px;
        flex: 0 0 14px;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        transition: transform .35s ease;

        background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.75 0.75L6.75 6.75L12.75 0.75' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    }

    .why-mobile-item.active .why-mobile-title:after {
        transform: rotate(180deg);
    }

    /* Smooth open */
    .why-mobile-content {
        max-height: 0;
        overflow: hidden;
        padding: 0 18px;
        transition: max-height .45s ease, padding .35s ease;
        background: #f8f9fa;
    }

    .why-mobile-item.active .why-mobile-content {
        max-height: 900px;
        padding: 20px 0 0 0;
        background-color: transparent;
    }

    .content-text {
        margin-bottom: 1.25rem;
    }

    .why-mobile-content .content-image {
        margin-top: 0;
        padding: 0;
        aspect-ratio: 4/3;
    }

    .journey-top {
        /* padding-bottom: 3rem; */
        text-align: left;
    }
}

/* ── Responsive Refinements ── */
@media (max-width: 991px) {
    .why-electres-items-section {
        flex-direction: column;
        gap: 2rem;
    }

    .why-electres-left {
        flex: auto;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .why-tab {
        border-bottom: none;
        border: 1px solid #eaeaea;
        padding: 14px 20px;
    }

    .why-tab.active {
        border: 1px solid #eaeaea;
        border-left: 3px solid #e31837;
    }

    .why-content {
        padding: 1.25rem;
    }
}

@media (max-width: 767px) {
    .why-electres-left {
        grid-template-columns: 1fr;
    }

    .why-content {
        padding: 2.5rem 1.25rem;
    }

    .why-electres-section {
        padding: 2.5rem 1.25rem;
    }

    .content-text p:first-of-type,
    .content-text strong {
        font-size: 1.15rem;
    }
}


/* ==========================================
   BESS Cold Storage Section
   ========================================== */
.bess-cold-storage-section {
    padding: clamp(40px, 9vw, 80px) 20px;
    background-color: var(--color-white, #ffffff);
    font-family: var(--font-primary, sans-serif);
}


.bess-header {
    text-align: center;
    margin-bottom: 40px;
}

.bess-title {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 600;
    color: #000000;
    line-height: 1.2;
    margin: 0 0 0.8rem 0;
    letter-spacing: -0.5px;
    max-width: 1024px;
    margin: 0 auto;
    margin-bottom: 16px;
}

.bess-description {
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    color: #000;
    line-height: 1.6;
    opacity: 0.5;
    max-width: 600px;
    margin: 0 auto;
}

.bess-image-wrapper {
    margin-bottom: 24px;
}

.bess-main-img {
    width: 100%;
    height: auto;
    display: block;
}

.bess-stat-card {
    background-color: var(--color-bg-card, #f4f4f4);
    padding: 24px;
    border-left: 2px solid var(--color-primary, #e21e31);
}

.bess-stat-card:not(:first-child) {
    border-left: 2px solid var(--color-primary, #e21e31);
}

.bess-stat-title {
    font-size: clamp(1.125rem, 1.25vw, 1.25rem);
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
    margin-top: 0;
}

.bess-stat-desc {
    font-size: 14px;
    color: #000000;
    line-height: 1.5;
    margin: 0;
    opacity: 0.5;
}

@media screen and (max-width: 991px) {
    .bess-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

}

@media screen and (max-width: 575px) {
    .bess-stats-grid {
        grid-template-columns: 1fr;
    }


}

/* ==========================================
   BESS Challenges Section
   ========================================== */
.bess-challenges-section {
    padding: clamp(40px, 9vw, 80px) 20px;
    background-color: var(--color-white, #ffffff);
    font-family: var(--font-primary, sans-serif);
}

.challenges-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.challenges-content {
    max-width: 600px;
}

.challenges-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.2;
}

.challenges-description {
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    color: #000000;
    margin-bottom: 40px;
    line-height: 1.6;
}

.challenges-btn {
    display: inline-flex;
    align-items: center;
    background: var(--color-primary, #e21e31);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition-standard, all 0.3s ease);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s ease;
    font-size: clamp(0.95rem, 1.2vw, 1rem);
    margin-top: 60px;
}

.challenges-btn:focus,
.challenges-btn:hover {
    background: #c11526;
    color: #ffffff;
    transform: translateY(-2px);
    text-decoration: none;
}

.challenges-btn .arrow {
    margin-left: 8px;
    display: flex;
    align-items: center;
}

.challenges-accordion {
    border-top: 1px solid #F4F4F4;
}

.accordion-item {
    border-bottom: 1px solid #F4F4F4;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
}

.accordion-title {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin: 0;
}

.accordion-icon {
    position: relative;
    width: 20px;
    height: 20px;
}

.accordion-icon::before,
.accordion-icon::after {
    content: "";
    position: absolute;
    background-color: #000000;
    transition: transform 0.3s ease;
}

.accordion-icon::before {
    top: 9px;
    left: 2px;
    width: 16px;
    height: 2px;
}

.accordion-icon::after {
    top: 2px;
    left: 9px;
    width: 2px;
    height: 16px;
}

.accordion-item.active .accordion-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.accordion-body {
    /* display: none; */
    padding-bottom: 20px;
}

.accordion-text {
    font-size: 15px;
    color: var(--color-text-muted, #666666);
    line-height: 1.6;
    margin: 0;
}

.challenges-image-area {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.challenges-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 991px) {
    .challenges-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .challenges-title {
        font-size: 32px;
    }

    .challenges-image-area {
        min-height: 300px;
    }

    .challenges-btn {
        margin-top: 40px;
    }
}

@media screen and (max-width: 480px) {
    .challenges-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile vs Desktop Image Visibility */
.challenges-image-mobile {
    display: none;
    margin-bottom: 30px;
}

@media screen and (max-width: 991px) {
    .challenges-image-mobile {
        display: block;
    }

    .challenges-image-desktop {
        display: none;
    }
}

/* ==========================================
   Core Functions Section
   ========================================== */
.core-functions-section {
    padding: clamp(2.5rem, 9vw, 5rem) 1.25rem clamp(3.25rem, 3.5vw, 5rem);
    font-family: inherit;
    background: linear-gradient(180deg, #FFF 0%, #F4F4F4 50%, #CFCAC2 100%);
}

/* .page-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
} */

.core-functions-header {
    margin-bottom: 50px;
}

.core-functions-title {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.2;
}

.core-functions-subtitle {
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    color: rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    margin: 0;
}

.core-functions-grid {
    gap: 60px 20px;
    display: grid;
    row-gap: 65px;
    column-gap: 16px;
    grid-template-rows: repeat(2, fit-content(100%));
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-flow: row;
}

.core-function-card {
    display: flex;
    flex-direction: column;
}

.core-function-card-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.core-function-icon {
    margin-bottom: 16px;
    width: 24px;
    height: 24px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.core-function-icon img,
.core-function-icon svg {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}

.core-function-card-title {
    font-size: clamp(1rem, 1.75vw, 1rem);
    font-weight: 600;
    line-height: 140%;
    color: #000000;
    margin: 0 0 10px 0;
}

.core-function-card-subtitle {
    margin-bottom: 15px;
}

.core-function-card-subtitle span {
    display: inline-block;
    color: #CE1B2D;
    background-color: #F4F4F4;
    padding: 4px 8px;
    font-size: 0.85rem;
    font-weight: 500;
}

.core-function-card-desc {
    font-size: clamp(0.95rem, 1.1vw, 0.95rem);
    color: rgba(0, 0, 0, 0.5);
    line-height: 1.5;
    margin-bottom: 0;
    max-width: 290px;
}

.core-function-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.core-function-bullets li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: clamp(0.95rem, 1.1vw, 1rem);
    color: rgba(0, 0, 0, 0.5);
    line-height: 1.4;
}

.core-function-bullets li:last-child {
    margin-bottom: 0;
}

.core-function-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    aspect-ratio: 1/1;
    background-color: #e21e31;
    border-radius: 50%;
}

.core-function-toggle-icon {
    display: none;
}

.five-grid-sec .core-functions-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

@media screen and (max-width: 991px) {
    .core-functions-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .core-function-card {
        border-left: 0;
        padding-left: 0;
        border-bottom: 1px solid var(--Warm-Grey, #CFCAC2);
        padding: 20px 0;
    }

    .core-function-card:first-child {
        padding-top: 0;
    }

    .core-function-card:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .core-function-card-header {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        cursor: pointer;
    }

    .core-function-toggle-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        transition: transform 0.3s ease;
    }

    .core-function-card.active .core-function-toggle-icon {
        transform: rotate(-180deg);
    }

    .core-function-card.active .core-function-toggle-icon svg {
        stroke: #E21E31;
    }

    .core-function-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .core-function-card-title {
        margin: 0;
    }

    .core-function-card-desc.toggle-content {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows 0.3s ease-in-out;
    }

    .core-function-card-desc.toggle-content .toggle-content-inner {
        overflow: hidden;
        padding-top: 0;
        padding-left: 38px;
        transition: padding-top 0.3s ease-in-out;
    }

    .core-function-card.active .core-function-card-desc.toggle-content {
        grid-template-rows: 1fr;
    }

    .core-function-card.active .core-function-card-desc.toggle-content .toggle-content-inner {
        padding-top: 8px;
    }

    .core-function-card-desc {
        max-width: 100%;
    }
}

/* ==========================================
   Solution Fits Section
   ========================================== */
.solution-fits-section {
    position: relative;
    padding: clamp(4.5rem, 3.5vw, 5rem) 1.25rem 0;
    background-size: cover;
    background-position: center;
    background-color: #333333;
    color: #ffffff;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
}

.solution-fits-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(30, 20, 15, 0.6) 0%, rgba(30, 20, 15, 0.8) 100%);
    z-index: 1;
}

.solution-fits-section .page-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-fits-header {
    text-align: center;
    margin-bottom: clamp(2.5rem, 3vw, 4.5rem);
}

.solution-fits-title {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.2;
}

.solution-fits-subtitle {
    font-size: clamp(1rem, 1.25vw, 1rem);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.solution-fits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.solution-card {
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.solution-card-top {
    padding: 2rem;
    background-color: #000000;
    background-size: cover;
    background-position: center;
    color: #ffffff;
    position: relative;
    min-height: clamp(165px, 23vw, 200px);
}

.solution-card-tag {
    display: inline-block;
    color: #ffffff;
    padding: 3px 8px;
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    font-weight: 600;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(2px);
}

.solution-card-tag.tag-popular {
    color: #e21e31;
}

.solution-card-title {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 600;
    margin-bottom: clamp(0.85rem, 1.5vw, 1rem);
    color: #ffffff;
}

.solution-card-desc {
    font-size: clamp(0.95rem, 2vw, 1rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
    max-width: 90%;
}

.solution-card-bottom {
    background: #ffffff;
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.solution-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    flex-grow: 1;
}

.solution-card-features span,
.solution-card-features a {
    text-decoration: none;
    color: inherit;
    pointer-events: none;
}

.solution-card-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: clamp(0.85rem, 2vw, 1rem);
    color: var(--Black, #000);
    font-weight: 400;
    line-height: 1.5;
}

.solution-card-features li:last-child {
    margin-bottom: 0;
}

.solution-card-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.solution-card-link {
    display: inline-flex;
    font-size: clamp(0.75rem, 2vw, 0.95rem);
    text-decoration: none;
    transition: color 0.3s ease;
    max-width: max-content;
    border-radius: 48px;
    background: var(--Red, #E21E31);
    color: #FFF;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.solution-card-link:active,
.solution-card-link:focus,
.solution-card-link:hover {
    color: #FFF;
}

.solution-card-link svg {
    transition: transform 0.3s ease;
    display: none;

}

.solution-card-link:hover svg {
    transform: translateX(4px);
}

@media screen and (max-width: 991px) {
    .solution-fits-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 575px) {

    .solution-card-top,
    .solution-card-bottom {
        padding: 24px 20px;
    }

    .solution-card-features li {
        margin-bottom: 8px;
        gap: 6px;
    }

    .solution-card-features {
        margin: 0 0 20px 0;
    }

    .solution-card-tag {
        margin-bottom: 16px;
    }

    .solution-card-features li svg {
        width: 18px;
        height: 18px;
    }

    .solution-fits-subtitle {
        max-width: 20rem;
    }

}

/* BESS Product Line Section */
.bess-product-section {
    padding: 5rem 1.25rem;
    font-family: inherit;
    background-color: #ffffff;
}

.bess-product-header {
    text-align: center;
    max-width: clamp(30rem, 72vw, 60rem);
    margin: 0 auto;
    margin-bottom: clamp(2rem, 5vw, 4rem);
}

.bess-product-title {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.bess-product-subtitle {
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.bess-product-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
    margin: 0 auto;
}

.bess-product-card {
    display: flex;
    background-color: #F4F4F4;
    overflow: hidden;
}

.bess-product-image-col {
    position: relative;
    width: 50%;
    background-color: #e5e6e6;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 3rem; */
}

.bess-product-tag {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: #ffffff;
    color: #e21e31;
    padding: 0.2em 0.4rem;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 2;
}

.bess-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
}

.bess-product-content-col {
    width: 50%;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bess-product-card-title {
    font-size: clamp(1.5rem, 2vw, 2.5rem);
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
}

.bess-product-card-subtitle {
    font-size: clamp(0.75rem, 1vw, 1rem);
    color: #666;
    margin: 0 0 2rem 0;
}

.bess-product-card-desc {
    font-size: clamp(0.85rem, 1vw, 1rem);
    color: #1a1a1a;
    font-weight: 500;
    margin: 0 0 2rem 0;
    line-height: 1.5;
}

.bess-product-specs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.bess-product-spec-item {
    background: #ffffff;
    padding: 1.25rem 0.85rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.bess-spec-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.bess-spec-icon img,
.bess-spec-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    color: #1a1a1a;
}

.bess-spec-value {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.85rem;
    margin-bottom: 2px;
    margin-top: 1px;
}

.bess-spec-label {
    font-size: 0.8rem;
    color: #666;
}

.bess-spec-value a,
.bess-spec-label a {
    text-decoration: none;
    color: inherit;
    pointer-events: none;
}

.bess-product-highlights {
    margin-bottom: 2.5rem;
}

.bess-product-highlights h4 {
    font-size: clamp(0.85rem, 1vw, 1rem);
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
}

.bess-product-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.bess-product-highlights ul li {
    position: relative;
    padding-left: 1rem;
    font-size: clamp(0.85rem, 1vw, 1rem);
    color: #666;
    line-height: 1.4;
}

.bess-product-highlights ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 7px;
    height: 7px;
    background-color: #e21e31;
    border-radius: 50%;
}

.bess-product-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.bess-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.bess-btn .download-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.bess-btn:hover .download-icon {
    transform: translateX(3px);
}

.bess-btn-solid {
    background-color: #e21e31;
    color: #ffffff;
    border: 1px solid #e21e31;
}

.bess-btn-solid:hover {
    background-color: #c11526;
    border-color: #c11526;
    color: #ffffff;
}

.bess-btn-outline {
    background-color: transparent;
    color: #e21e31;
    border: 1px solid #e21e31;
}

.bess-btn-outline:hover {
    background-color: #e21e31;
    color: #ffffff;
}

.bess-btn-outline svg path {
    stroke: #e21e31;
}

.bess-btn-outline:hover svg path {
    stroke: #ffffff;
}

/* Responsive Refinements */
@media (max-width: 1200px) {
    .bess-product-content-col {
        padding: 3rem 2rem;
    }

    .bess-product-specs {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .bess-product-card {
        flex-direction: column;
    }

    .bess-product-image-col,
    .bess-product-content-col {
        width: 100%;
    }

    /* .bess-product-image-col {
        padding: 4rem 2rem;
    } */

    .bess-product-tag {
        top: 1rem;
        left: 1rem;
    }

    .bess-product-list {
        gap: 2rem;
    }
}

@media (max-width: 767px) {
    .bess-product-section {
        padding: 3rem 1.25rem;
    }

    .bess-product-card-subtitle {
        margin: 0 0 1.25rem 0;
    }

    .bess-product-content-col {
        padding: 1.5rem 1rem;
    }



    .bess-product-specs {
        grid-template-columns: repeat(2, 1fr);
    }

    .bess-product-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .bess-btn {
        width: 100%;
    }

    .bess-product-header {
        margin-bottom: 3rem;
    }

}

/* Storage Savings Section */
.storage-savings-section {
    padding: clamp(3rem, 4vw, 4rem) 1.25rem;
    background: linear-gradient(180deg, #FFF 0%, #F4F4F4 50%, #fdfdfd 100%);
}



.storage-savings-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
}

.storage-savings-title {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.storage-savings-subtitle {
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.storage-savings-timeline {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.storage-savings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

@media (min-width: 992px) {
    .storage-savings-grid::before {
        content: '';
        position: absolute;
        top: 62px;
        left: 5px;
        width: calc(100% - 5px);
        height: 2px;
        background: linear-gradient(90deg, rgba(207, 202, 194, 0.5) 0%, rgba(207, 202, 194, 0.5) 20%, rgba(226, 30, 49, 1) 50%, rgba(207, 202, 194, 0.5) 80%, rgba(207, 202, 194, 0.5) 100%);
        background-size: 200% 100%;
        animation: flowRight 3s linear infinite;
        z-index: 1;
    }

    .node-line {
        display: none !important;
    }
}

@keyframes flowRight {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}


.storage-savings-item {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-right: 2rem;
}

.storage-savings-item:last-child {
    padding-right: 0;
}

.storage-savings-icon {
    margin-bottom: 24px;
    height: 32px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.storage-savings-icon img,
.storage-savings-icon svg {
    width: 32px;
    height: 32px;
    object-fit: contain;
    color: #e21e31;
}

.storage-savings-node {
    position: relative;
    height: 12px;
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.node-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #CFCAC2;
    position: relative;
    z-index: 2;
    animation: dotGlow 3s linear infinite;
}

@keyframes dotGlow {

    0%,
    10%,
    90%,
    100% {
        background-color: #e21e31;
        box-shadow: none;
        transform: scale(1);
    }

    50% {
        background-color: #ff4d5e;
        box-shadow: 0 0 0 4px rgba(226, 30, 49, 0.2), 0 0 10px 3px rgba(226, 30, 49, 0.45);
        transform: scale(1.4);
    }
}

/* Desktop: gradient flows right→left, so rightmost dot (nth 4) glows first */
@media (min-width: 992px) {
    .storage-savings-item:nth-child(1) .node-dot {
        animation-delay: 0s;
    }

    .storage-savings-item:nth-child(2) .node-dot {
        animation-delay: 0.75s;
    }

    .storage-savings-item:nth-child(3) .node-dot {
        animation-delay: 1.5s;
    }

    .storage-savings-item:nth-child(4) .node-dot {
        animation-delay: 2.25s;
    }
}

/* Removing mobile animation classes here */

.storage-savings-content {
    display: flex;
    flex-direction: column;
}

.storage-savings-item-title {
    font-size: clamp(0.85rem, 1.25vw, 1rem);
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
}

.storage-savings-item-desc {
    font-size: clamp(0.95rem, 1vw, 0.95rem);
    color: #666;
    line-height: 1.4;
    margin: 0;
}

/* Responsive Refinements */
@media (max-width: 991px) {
    .storage-savings-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 4rem;
        column-gap: 2rem;
    }

    .storage-savings-item {
        padding-right: 0;
    }

    .node-line {
        display: none;
    }
}

@media (max-width: 575px) {
    .storage-savings-grid {
        grid-template-columns: 1fr;
        row-gap: 2.5rem;
    }

    .storage-savings-header {
        margin-bottom: 3rem;
    }

    .storage-savings-item {
        display: grid;
        grid-template-columns: 16px 1fr;
        grid-template-rows: auto auto;
        column-gap: 0.75rem;
        row-gap: 0.75rem;
        align-items: start;
        padding-right: 0;
        flex-direction: unset;
    }

    .storage-savings-node {
        display: flex;
        flex-direction: column;
        align-items: center;
        grid-column: 1;
        grid-row: 1 / span 2;
        position: relative;
        align-self: stretch;
        height: calc(100% + 2.5rem);
    }

    .storage-savings-item:last-child .storage-savings-node {
        height: 100%;
        margin: 0;
    }

    .node-dot {
        width: 10px;
        height: 10px;
        flex-shrink: 0;
        margin-top: 11px;
    }

    .node-line {
        display: block;
        position: absolute;
        top: 16px;
        left: 50%;
        width: 2px;
        height: 100%;
        background: linear-gradient(180deg, rgba(226, 30, 49, 1) 0%, rgba(207, 202, 194, 0.5) 20%, rgba(207, 202, 194, 0.5) 30%, rgba(226, 30, 49, 1) 50%, rgba(207, 202, 194, 0.5) 70%, rgba(207, 202, 194, 0.5) 80%, rgba(226, 30, 49, 1) 100%);
        background-size: 100% 200%;
        animation: flowDown 3s linear infinite;
        transform: translateX(-50%);
        z-index: 1;
    }

    @keyframes flowDown {
        0% {
            background-position: 0 0%;
        }

        100% {

            background-position: 0 100%;
        }
    }

    /* Mobile: gradient flows top→bottom, so topmost dot (nth 1) glows first */
    .storage-savings-item:nth-child(1) .node-dot {
        animation-delay: 0s;
    }

    .storage-savings-item:nth-child(2) .node-dot {
        animation-delay: 0.75s;
    }

    .storage-savings-item:nth-child(3) .node-dot {
        animation-delay: 1.5s;
    }

    .storage-savings-item:nth-child(4) .node-dot {
        animation-delay: 2.25s;
    }

    .storage-savings-icon {
        grid-column: 2;
        grid-row: 1;
        margin-bottom: 0;
        height: 32px;
        min-width: auto;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .storage-savings-icon img,
    .storage-savings-icon svg {
        width: 32px;
        height: 32px;
    }

    .storage-savings-content {
        grid-column: 2;
        grid-row: 2;
    }

    .solution-card-top {
        padding: 1.25rem;
        min-height: 170px;
    }
}

/* @keyframes flowDown {
    0% {
        background-position: 0 -100%;
    }

    100% {
        background-position: 0 100%;
    }
} */

/* Built Differently Section */
.built-diff-section {
    padding: 6rem 1.5rem;
    background: linear-gradient(180deg, #FFF 0%, #F4F4F4 55.35%, #CFCAC2 110.69%);
}

.built-diff-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto clamp(2rem, 5vw, 4rem) auto;
}

.built-diff-title {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
}

.built-diff-subtitle {
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    color: #000000;
    opacity: 0.5;
    max-width: 750px;
    margin: 0 auto;
}

.built-ds-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: clamp(0.25rem, 0.75vw, 0.5rem);
    margin-bottom: 5rem;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.built-ds-stats .built-ds-item {
    text-align: center;
}

.built-ds-stats .built-ds-value {
    font-size: clamp(1.25rem, 1.55vw, 2rem);
    font-weight: 600;
    line-height: 110%;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    background: linear-gradient(180deg, #000 20%, #666 78%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.built-ds-stats .built-ds-label {
    font-size: clamp(0.85rem, 1.15vw, 0.95rem);
    color: #000000;
    opacity: 0.5;
    text-align: center;
}

/* Bento Grid */
.built-diff-bento {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 400px;
    gap: 1.5rem;
    /* max-width: 1400px; */
    margin: 0 auto;
}

.bento-card {
    position: relative;
    overflow: hidden;
    background-color: #e5e6e6;
    display: flex;
    flex-direction: column;
}

.bento-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.bento-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to bottom, rgb(0 0 0 / 80%) 0%, rgb(0 0 0 / 0%) 100%);
    z-index: 2;
}

.bento-content {
    position: relative;
    z-index: 3;
    padding: 1.5rem;
}

.bento-title {
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.4rem 0;
}

.bento-desc {
    font-size: clamp(0.85rem, 1vw, 1rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin: 0;
    max-width: 300px;
    width: 100%;
}

/* Specific Card Sizes based on index */
.bento-card-1 {
    grid-column: span 3;
}

.bento-card-2 {
    grid-column: span 3;
}

.bento-card-3 {
    grid-column: span 2;
}

.bento-card-4 {
    grid-column: span 2;
}

.bento-card-5 {
    grid-column: span 2;
}

/* Responsive Refinements */
@media (max-width: 1200px) {
    .built-diff-bento {
        grid-auto-rows: clamp(200px, 70vw, 350px);
    }
}

@media (max-width: 991px) {
    .built-ds-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 2rem;
        max-width: 450px;
    }

    .built-diff-bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-card-1,
    .bento-card-2 {
        grid-column: span 2;
    }

    .bento-card-3,
    .bento-card-4 {
        grid-column: span 1;
    }

    .bento-card-5 {
        grid-column: span 2;
    }

    .built-ds-stats .built-ds-item:last-child {
        grid-column: 1 / -1;
        justify-self: center;
    }
}

@media (max-width: 767px) {
    .built-diff-section {
        padding: 4rem 1.25rem;
    }

    .built-ds-stats {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem 1.5rem;
        margin-bottom: 3rem;
    }

    .built-diff-bento {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .bento-card-1,
    .bento-card-2,
    .bento-card-3,
    .bento-card-4,
    .bento-card-5 {
        grid-column: span 1;
    }

    .bento-content {
        padding: 1.25rem;
    }

    .built-ds-stats .built-ds-item:last-child {
        grid-column: 1 / -1;
        justify-self: center;
    }

}

/* =========================================
   Measurable ROI Section
   ========================================= */
.measurable-roi-section {
    padding: clamp(3.5rem, 5vw, 5rem) 1.25rem clamp(1.5rem, 5vw, 5rem) 1.25rem;
    background-color: #ffffff;
    font-family: inherit;
    overflow: hidden;
}

.measurable-roi-header {
    text-align: center;
    max-width: clamp(700px, 80vw, 900px);
    margin: 0 auto 3.55rem auto;
}

.roi-title {
    font-size: clamp(1.5rem, 3.25vw, 2.5rem);
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.roi-subtitle {
    font-size: clamp(1rem, 1.176vw, 1rem);
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.measurable-roi-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 3rem;
    /* max-width: 1400px; */
    /* margin: 0 auto 5rem auto; */
    margin: 0 auto;
    align-items: center;
}

.roi-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.roi-stat-card {
    gap: 0.45rem;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.roi-icon {
    width: 32px;
    height: 32px;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    display: none;
}

.roi-stat-value {

    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    background: linear-gradient(180deg, #000 20%, #666 78%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: clamp(1.5rem, 1.25vw, 1.75rem);
}

.roi-stat-title {
    font-size: clamp(0.875rem, 1.75vw, 1rem);
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.roi-stat-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
    min-height: 70px;
}

.roi-image-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.roi-center-img,
.measurable-video-player {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    aspect-ratio: 4 / 3;
}

/* Calculate Your Savings CTA Section */
.cta-banner-section {
    padding: 0 1.25rem;
}

section.cta-banner-section.show_sec {
    padding-bottom: clamp(1.5rem, 5vw, 5rem);
}

.ctainner-grid {
    padding: 0 1.25rem clamp(4rem, 4vw, 6rem) 1.25rem;
    background: linear-gradient(180deg, #FFF 0%, #F4F4F4 50%, #CFCAC2 100%);
}

.cta-card-section.calculate-your-savings {
    /* max-width: 1200px; */
    margin: 0 auto;
    background: #000000 url('../assets/images/cta-bg-red-wave.jpg') no-repeat center right;
    /* Fallback BG */
    background-size: cover;
    padding: 1.55rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.cta-card-section.calculate-your-savings::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle at right, rgba(226, 30, 49, 0.5) 0%, transparent 80%);
    pointer-events: none;
    z-index: 1;
}

.cta-card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
    gap: 2rem;
}

.cta-text {
    flex: 1;
}

.cta-text h3 {
    font-size: clamp(0.95rem, 1.3vw, 1.15rem);
    font-weight: 600;
    margin: 0;
    color: #ffffff;
}

.cta-text p {
    font-size: clamp(0.75rem, 1.1vw, 0.95rem);
    color: rgba(255, 255, 255, 0.8);
    margin: 0.5rem 0 0 0;
}

.cta-button-wrapper {
    flex-shrink: 0;
}

.btn-calculate-savings {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #e21e31;
    color: #ffffff !important;
    padding: 12px 24px;
    font-size: clamp(0.95rem, 1vw, 1rem);
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s ease;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-calculate-savings:hover {
    background-color: #c11526;
    color: #ffffff;
    transition: all 0.3s ease;

}

.btn-calculate-savings:hover .icon-wrapper {
    transform: translateX(4px);
    transition: transform 0.3s ease;
}

/* Responsive Refinements */
@media (max-width: 1024px) {
    .measurable-roi-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        /* margin-bottom: 2rem; */
    }

    .roi-column.roi-center {
        grid-column: span 2;
        order: 10;
        /* margin: 0 -1.25rem; */
        /* Move image below stats */
    }

    .cta-card-section.calculate-your-savings {
        padding: 1.25rem;
    }
}

@media (max-width: 768px) {
    .cta-card-content {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 1.25rem;
    }

    .cta-button-wrapper {
        margin-top: 1.5rem;
        width: 100%;
    }
}

@media (max-width: 575px) {
    .btn-calculate-savings {
        width: 100%;
    }

    .measurable-roi-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .measurable-roi-header {
        text-align: left;
        margin-bottom: 2rem;
    }

    /* .roi-column {
        display: contents;
    } */

    .roi-column.roi-center {
        grid-column: span 1;
        order: 10;
    }

    .cta-card-section.calculate-your-savings {
        padding: 2rem 1.25rem;
    }


}

.multi-gradient {
    background: linear-gradient(90deg, #FF9A32 0%, #FF9A32 35%, #EEE 50%, #148706 65%, #148706 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* =========================================
   Detailed Specifications Section
   ========================================= */
.detailed-specs-section {
    padding: 6rem 1.25rem;
    background-color: #ffffff;
    font-family: inherit;
    text-align: center;
}

.detailed-specs-header {
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.specs-title {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.specs-subtitle {
    font-size: clamp(1rem, 1.15vw, 1.15rem);
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.specs-tabs-container {
    max-width: 900px;
    margin: 0 auto;
}

.specs-tabs-nav-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.specs-tabs-nav {
    display: inline-flex;
    overflow: hidden;
    gap: 0.5rem;
}

.specs-tab-btn {
    display: flex;
    padding: clamp(6px, 0.85vw, 0.5rem) clamp(8px, 1vw, 1rem);
    justify-content: center;
    align-items: center;
    font-size: clamp(0.75rem, 1vw, 0.95rem);
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 0px 1px 1px rgb(179 179 179 / 56%);
    background: var(--Primary-White, #FFF);
    border: none;
    margin: 1px;
    transition: all 0.3s ease;
}

/* .specs-tab-btn:last-child {
    border-right: none;
} */
.specs-tab-btn:focus,
.specs-tab-btn:hover {
    background-color: #f1f1f1;
    color: #e21e31;
    transition: all 0.3s ease;
}

.specs-tab-btn.active {
    background-color: #000000;
    color: #ffffff;
    box-shadow: 0px 1px 12px 0px rgba(0, 0, 0, 0.15);
}

.specs-tab-pane {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.specs-tab-pane.active {
    display: block;
}

.specs-table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 3.5rem;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.specs-table-wrapper::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    margin: 0;
    border: none;
}

.specs-table tr:nth-child(even) {
    background-color: #F4F4F4;
}

.specs-table tr:nth-child(odd) {
    background-color: #ffffff;
    border-top: 1px solid rgba(207, 202, 194, 0.45);
    border-bottom: 1px solid rgba(207, 202, 194, 0.45);
}

.specs-table td {
    padding: 16px 24px;
    font-size: clamp(0.75rem, 1vw, 0.95rem);
    color: #1a1a1a;
    border: none;
}

.spec-label {
    font-weight: 500;
    width: 40%;
}

.spec-value {
    color: #444;
}

.specs-footer {
    display: flex;
    justify-content: center;
}

.btn-download-datasheet {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: 1px solid #e21e31;
    border-radius: 50px;
    color: #e21e31;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.btn-download-datasheet svg {
    transition: transform 0.3s ease;
}

.btn-download-datasheet:hover {
    background-color: #e21e31;
    color: #ffffff;
}

.btn-download-datasheet:hover svg {
    transform: translateX(3px);
}

@media (max-width: 767px) {
    .detailed-specs-section {
        padding: 4rem 1.25rem;
    }

    .specs-tabs-nav {
        width: 100%;
        border: none;
        justify-content: center;
    }

    .detailed-specs-header {
        margin: 0px auto 2rem auto;
    }

    .specs-tabs-nav-wrapper {
        margin-bottom: 1.25rem;
    }


    .specs-table {
        min-width: 500px;
    }

    .specs-table td {
        padding: 10px 12px;
    }

    .spec-label {
        position: sticky;
        left: 0;
        width: 150px;
        min-width: 150px;
        z-index: 2;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.03);
    }

    /* Ensure solid background for sticky column so scrolling content doesn't show through */
    .specs-table tr:nth-child(even) .spec-label {
        background-color: #f7f7f7;
    }

    .specs-table tr:nth-child(odd) .spec-label {
        background-color: #ffffff;
    }


}

@media screen and (max-width: 480px) {

    .btn-download-datasheet {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* --- Applications Across Industries Section --- */
.bess-ind-section {
    padding: clamp(4rem, 5vw, 6rem) 1.25rem;
    background: #ffffff;
    font-family: inherit;
}

.bess-ind-header {
    text-align: center;
    margin-bottom: 3rem;
}

.bess-ind-title {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 600;
    color: #000000;
    line-height: 1.2;
    margin: 0 0 0.8rem 0;
    letter-spacing: -0.5px;
}

.bess-ind-subtitle {
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    color: #666;
    line-height: 1.6;
    margin: 0;
    max-width: 900px;
    margin: 0 auto;
}

.bess-ind-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    background: #f5f5f5;
    overflow: hidden;
}

.bess-ind-sidebar {
    background: #f5f5f5;
    padding: 16px;
    border-right: 1px solid #eaeaea;
}

.bess-ind-search-wrap {
    background: #ffffff;
    display: flex;
    align-items: center;
    padding: 16px;
}

.bess-ind-search-icon {
    margin-right: 10px;
    flex-shrink: 0;
}

.bess-ind-search-wrap .bess-ind-search {
    border: none;
    background: transparent;
    width: 100%;
    outline: none;
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    padding: 0;
}

.bess-ind-search-wrap .bess-ind-search:focus,
.bess-ind-search-wrap .bess-ind-search:hover {
    padding: 0;
    background: transparent;
}

.bess-ind-tabs-list {
    display: flex;
    flex-direction: column;
    margin: 0 -16px;
    overflow: auto;
    max-height: 525px;
    scrollbar-width: thin;
    scrollbar-color: #a8a8a8 #E0E0E0;

}

.bess-ind-tabs-list::-webkit-scrollbar {
    width: 5px;
}

.bess-ind-tabs-list::-webkit-scrollbar-track {
    background: #E0E0E0;
    border: none;
}

.bess-ind-tabs-list::-webkit-scrollbar-thumb {
    background-color: #a8a8a8;
}

.bess-ind-no-results {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    text-align: center;
    color: #999;
}

.bess-ind-no-results svg {
    margin-bottom: 1rem;
    opacity: 0.5;
}

.bess-ind-no-results p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
}

.bess-ind-tab-btn {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 16px 15px;
    background: transparent;
    border: none;
    /* border-bottom: 1px solid rgba(0, 0, 0, 0.05); */
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.bess-ind-tab-btn:last-child {
    border-bottom: none;
}

.bess-ind-tab-btn:hover,
.bess-ind-tab-btn.active {
    background: #E0E0E0;
}

.bess-ind-tab-icon {
    color: #e31837;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bess-ind-tab-icon img,
.bess-ind-tab-icon svg {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.bess-ind-tab-name {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    flex-grow: 1;
}

.bess-ind-content-wrapper {
    position: relative;
    background: #000;
    overflow: hidden;
}

.bess-ind-content-area {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bess-ind-panel {
    display: none;
    flex-direction: column;
    height: 100%;
    animation: fadeContent 0.4s ease;
}

.bess-ind-panel.active {
    display: flex;
}

.bess-ind-panel-image {
    position: relative;
    width: 100%;
    height: 550px;
    border-radius: 0;
    overflow: hidden;
}

.bess-ind-panel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
}

.bess-ind-panel-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.8) 75%, rgba(0, 0, 0, 1) 100%);
    pointer-events: none;
}

.bess-ind-panel-hero-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    z-index: 2;
    padding: 0 clamp(1.25rem, 3vw, 2.5vw) 2.5rem clamp(1.25rem, 3vw, 2.5vw);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.bess-ind-panel-hero-text-left {
    flex: 1;
}

.bess-ind-panel-hero-btn-wrap {
    flex-shrink: 0;
}

.bess-ind-hero-btn {
    background: #e31837;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.bess-ind-hero-btn .download-icon {
    display: flex;
}

.bess-ind-hero-btn:active,
.bess-ind-hero-btn:focus,
.bess-ind-hero-btn:hover {
    background: #c11526;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 24, 55, 0.3);
}

.bess-ind-panel-hero-text h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
    margin: 0 0 8px 0;
}

.bess-ind-panel-hero-text p {
    font-size: clamp(0.95rem, 2.5vw, 1rem);
    color: #cccccc;
    margin: 0;
    max-width: 600px;
}

.bess-ind-panel-body {
    background: #000;
    padding: clamp(20px, 2vw, 30px) clamp(20px, 3vw, 40px) clamp(30px, 4vw, 40px) clamp(20px, 3vw, 40px);
    flex-grow: 1;
    display: none;
    flex-direction: column;
}

.bess-ind-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 2vw, 30px);
    margin-bottom: 40px;
}

.bess-ind-col h4 {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 500;
    margin-bottom: 12px;
    color: #ffffff;
}

.bess-ind-col h4.text-red {
    color: #e31837;
}

.bess-ind-col p {
    font-size: clamp(0.8rem, 1.1vw, 1rem);
    line-height: 1.6;
    color: #999999;
    margin: 0;
}

.bess-ind-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    margin-top: auto;
}

.bess-ind-recommended {
    font-size: clamp(0.8rem, 1.1vw, 1rem);
    font-weight: 600;
    color: #ffffff;
}

.bess-ind-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    width: 100%;
    max-width: 22rem;
    justify-content: flex-end;
}

.bess-btn-outline {
    padding: 10px 24px;
    border: 1px solid #e31837;
    color: #e31837;
    background: transparent;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.bess-btn-outline:hover {
    background: #e31837;
    color: #ffffff;
}

.bess-btn-solid .download-icon,
.bess-btn-outline .download-icon {
    display: flex;
}

.bess-btn-solid {
    padding: 10px 20px;
    background: #e31837;
    border: 1px solid #e31837;
    color: #ffffff;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.bess-btn-solid:hover {
    background: #c11526;
    border-color: #c11526;
}

/* Utilities */
.bess-ind-mobile-only {
    display: none !important;
}



@keyframes fadeContent {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* --- Mobile / Tablet Styles --- */
@media (max-width: 991px) {
    .bess-ind-mobile-only {
        display: flex !important;
    }

    .bess-ind-desktop-only {
        display: none !important;
    }

    .bess-ind-mobile-layout {
        flex-direction: column;
        padding: 20px 20px 40px;
        background: #000;
    }

    .bess-ind-mobile-text {
        margin-bottom: 25px;
    }

    .bess-ind-mobile-text h3 {
        font-size: clamp(1.25rem, 2.5vw, 1.5rem);
        font-weight: 600;
        margin: 0 0 8px 0;
        color: #fff;
    }

    .bess-ind-mobile-text p {
        font-size: clamp(0.95rem, 2.5vw, 1rem);
        color: #cccccc;
        margin: 0;
    }

    .bess-ind-mobile-btn-wrap {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
        width: 100%;
    }

    .bess-ind-mobile-btn-solid {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }

    .bess-ind-mobile-view-link {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .bess-ind-mobile-view-link .download-icon {
        display: flex;
        align-items: center;
    }

    .bess-ind-view-all.bess-ind-mobile-only {
        display: block !important;
        text-align: center;
        margin-top: 5px;
        padding-top: 16px;
        border-top: 1px solid #cfcac276;
    }

    .bess-ind-view-link:hover,
    .bess-ind-view-link:focus,
    .bess-ind-view-link:active,
    .bess-ind-view-link:visited,
    .bess-ind-view-link {
        color: #e31837;
        font-weight: 500;
        text-decoration: none;
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .bess-ind-view-link span {
        height: 15px;
    }

    .bess-ind-layout {
        display: block;
        background: transparent;
        box-shadow: none;
    }

    .bess-ind-sidebar {
        background: #f5f5f5;
        border-right: none;
        padding: 16px;
    }

    /* Modal Styles */
    .bess-ind-content-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 9999;
        pointer-events: none;
        background: transparent;
    }

    .bess-ind-modal-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.7);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .bess-ind-content-wrapper.modal-open {
        pointer-events: auto;
    }

    .bess-ind-content-wrapper.modal-open .bess-ind-modal-overlay {
        opacity: 1;
    }

    .bess-ind-content-area {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 85vh;
        background: #000;
        border-radius: 14px 14px 0 0;
        overflow-y: auto;
        overflow-x: hidden;
        transform: translateY(100%);
        transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        display: block;
    }

    .bess-ind-content-wrapper.modal-open .bess-ind-content-area {
        transform: translateY(0);
    }

    .bess-ind-modal-close {
        position: absolute;
        right: 0;
        top: 0;
        float: right;
        margin-right: 15px;
        margin-top: 12px;
        z-index: 10;
        background: rgb(255, 255, 255) !important;
        border: none;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: #fff;
        padding: 4px;
    }


    .bess-ind-panel {
        display: none;
    }

    .bess-ind-panel.active {
        display: block;
    }

    .bess-ind-panel-image {
        height: clamp(300px, 45vh, 450px);
        border-radius: 0;
        position: relative;
    }

    .bess-ind-panel-hero-text {
        padding: 0 20px 25px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }



    .bess-ind-panel-body {
        padding: 20px;
    }

    .bess-ind-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 30px;
    }

    .bess-ind-footer {
        /* flex-direction: column; */
        align-items: flex-start;
        align-items: center;
        gap: 20px;
    }

    .bess-ind-actions {
        width: 100%;
        align-items: center;
        /* max-width: 100%; */
    }

    .bess-btn-outline,
    .bess-btn-solid {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .bess-ind-actions {
        width: 100%;
        flex-direction: column;
        max-width: 100%;
    }

    .bess-ind-footer {
        flex-direction: column;
        align-items: baseline;
    }
}

/* ==========================================================================
   Industries Hero Media Section (ind-hero-m)
   ========================================================================== */



.ind-hero-m-section {
    background-color: #000000;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    height: 100dvh;
    min-height: 750px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.ind-hero-m-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(0 0 0 / 60%) 0%, rgba(0, 0, 0, 0.6) 40%, rgb(0 0 0 / 60%) 100%);
    z-index: 1;
}

.ind-hero-m-mobile-bg {
    display: none;
}

.ind-hero-m-container {
    position: relative;
    z-index: 4;
    padding: clamp(2.5rem, 10vw, 5rem) clamp(1.25rem, 12vw, 4rem);
    width: 100%;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpText 1s cubic-bezier(0.2, 0.8, 0.2, 1) 1s forwards;
}

.ind-hero-m-content {
    display: flex;
    align-items: center;
    max-width: 650px;
}

/* Left Content */
.ind-hero-m-left {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.ind-hero-m-title {
    font-size: clamp(2.25rem, 3.5vw, 2.5rem);
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
    max-width: 550px;
}

.ind-hero-m-desc {
    font-size: clamp(1rem, 1.1vw, 1rem);
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    max-width: 700px;
}


/* Tags */
.ind-hero-m-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 0.5rem;
}

.ind-hero-m-tag {
    background: #ffffff;
    border-radius: 100px;
    transition: all 0.3s ease;
    display: flex;
    padding: 10px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.ind-hero-m-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.ind-hero-m-tag-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.ind-hero-m-tag-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ind-hero-m-tag-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a1a1a;
    line-height: normal;
}

/* Button */
.ind-hero-m-btn-wrap {
    margin-top: 1.5rem;
}

.ind-hero-m-btn {
    padding: 12px 28px;
    background: #e51b23;
    border: none;
    color: #ffffff;
    border-radius: 50px;
    text-decoration: none;
    font-size: clamp(0.95rem, 1vw, 1rem);
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    line-height: normal;
}

.ind-hero-m-btn .download-icon {
    display: flex;
    width: 20px;
    height: 20px;
    justify-content: center;
    align-items: center;
}

.ind-hero-m-btn:hover {
    background-color: #c11526;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(226, 30, 49, 0.3);
    color: #ffffff;
}

.ind-hero-m-btn-arrow {
    transition: transform 0.3s ease;
}

.ind-hero-m-btn:hover .ind-hero-m-btn-arrow {
    transform: translateX(4px);
}

/* Right Media */
.ind-hero-m-right {
    position: relative;
}

.ind-hero-m-image-wrap {
    position: relative;
    /* border-radius: 20px; */
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background-color: #f0f0f0;
    /* box-shadow: 0 40px 80px -20px rgba(0,0,0,0.15); */
}

.ind-hero-m-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Stats Overlay */
.ind-hero-m-stats-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: end;
    gap: 8px;
    overflow: hidden;
    background: linear-gradient(0deg, #000 2.54%, rgba(0, 0, 0, 0.00) 93.25%);
    padding: 24px;
    min-height: 198px;
}

.ind-hero-m-stat-card {
    color: #ffffff;
    display: flex;
    text-align: left;
    border-left: 2px solid #e21e31;
    background: rgb(244 244 244 / 15%);
    backdrop-filter: blur(1px);
    padding: 12px 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

/* .ind-hero-m-stat-card:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
} */

.ind-hero-m-stat-value {
    font-size: clamp(0.95rem, 1.1vw, 1rem);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
}

.ind-hero-m-stat-label {
    font-size: 0.90rem;
    color: #fff;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    text-transform: capitalize;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .ind-hero-m-content {
        gap: 3rem;
    }
}

@media (max-width: 991px) {
    .ind-hero-m-section {
        padding: 0;
        min-height: 100vh;
        display: flex;
        align-items: flex-end;
    }

    .ind-hero-m-mobile-bg {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .ind-hero-m-bg-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .ind-hero-m-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.9) 100%);
    }

    .ind-hero-m-container {
        position: relative;
        z-index: 2;
        width: 100%;
        padding: 0;
    }

    .ind-hero-m-content {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 5rem 1.25rem;
    }

    .ind-hero-m-left {
        text-align: left;
        align-items: flex-start;
        gap: 1rem;
    }

    .ind-hero-m-title {
        color: #ffffff;
    }

    .ind-hero-m-desc {
        color: rgba(255, 255, 255, 0.9);
    }

    .ind-hero-m-right {
        display: none;
    }

    .ind-hero-m-tags {
        justify-content: flex-start;
        gap: 8px;
    }



    .ind-hero-m-tag {
        padding: 8px 12px;
    }

    .ind-hero-m-tag-icon {
        width: 16px;
        height: 16px;
        aspect-ratio: 1 / 1;
    }

    .ind-hero-m-btn-wrap {
        width: 100%;
        margin-top: 1rem;
    }


}

@media (max-width: 479px) {
    .ind-hero-m-btn {
        width: 100%;
    }

}

/* ==========================================================================
   BESS Stats Cards Section (bess-stats)
   ========================================================================== */

.bess-stats-section {
    padding: clamp(3rem, 6vw, 7rem) 1.25rem clamp(2rem, 4vw, 3.5rem);
    background-color: #ffffff;
    overflow: hidden;
}


.bess-stats-header {
    margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
    max-width: clamp(55rem, 80vw, 62rem);
}

.bess-stats-heading {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 500;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.2;
    max-width: clamp(55rem, 80vw, 65rem);

}

.bess-stats-intro {
    font-size: clamp(0.95rem, 1.5vw, 1rem);
    color: rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    margin: 0;
}

/* Stats Grid */
.bess-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.bess-stats-card {
    padding: clamp(24px, 2.75vw, 30px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: clamp(40px, 5.5vw, 70px);
    min-height: clamp(200px, 280px, 280px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #F4F4F4;
    height: 100%;
}

.bess-stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 4px rgb(0 0 0 / 25%);
}

.bess-stats-card-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.bess-stats-card-title {
    margin: 0;
    color: #000;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
}

.bess-stats-card-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    aspect-ratio: 1/1;
    width: 48px;
    height: 48px;
}

.bess-stats-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bess-stats-card-desc,
.bess-stats-card-desc p {
    font-size: clamp(0.875rem, 1.5vw, 0.875rem);
    line-height: 1.4;
    color: rgba(26, 26, 26, 0.6);
    margin: 0;
}

/* Footer disclaimer */
.bess-stats-footer {
    margin-top: 0.75rem;
}

.bess-stats-footer p {
    font-size: clamp(0.875rem, 1.2vw, 0.875rem);
    color: rgba(26, 26, 26, 0.45);
    margin: 0;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 1200px) {
    .bess-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {


    .bess-stats-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 15px;
        margin-left: -1.25rem;
        margin-right: -1.25rem;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        scroll-padding-left: 1.25rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .bess-stats-grid::-webkit-scrollbar {
        display: none;
    }

    .bess-stats-card {
        flex: 0 0 45%;
        max-width: 45%;
        scroll-snap-align: start;
        height: auto;
        min-height: auto;
    }


}

@media screen and (max-width:480px) {
    .bess-stats-card {
        flex: 0 0 85%;
        max-width: 85%;
    }
}


/* ==========================================================================
   Challenge Section (chall-sec)
   ========================================================================== */

.chall-sec-section {
    padding: clamp(3rem, 8vw, 7rem) 1.25rem clamp(2rem, 4vw, 3.5rem);
    background-color: #ffffff;
    overflow: hidden;
}



.chall-sec-content-wrap {
    display: block;
}

.chall-sec-left {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    column-gap: 32px;
}

.chall-sec-title {
    grid-column: 1 / 2;
    grid-row: 1;
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 500;
    color: #000000;
    margin: 0;
    line-height: 1.2;
    text-transform: none;
    max-width: clamp(40rem, 70.5vw, 75.2rem);
}

.chall-sec-btn-wrap {
    grid-column: 2 / 3;
    grid-row: 1;
    justify-self: end;
    margin: 0;
}

.chall-sec-intro {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 15px;
    max-width: 850px;
    font-size: clamp(0.95rem, 1.1vw, 1.1rem);
    color: rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    max-width: clamp(40rem, 70.5vw, 75.2rem);
}

/* Grid Layout */
.chall-sec-grid {
    grid-column: 1 / -1;
    grid-row: 3;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 3.5rem;
    max-width: 100%;
}


.chall-sec-item {
    display: flex;
    flex-direction: column;
    padding: clamp(1rem, 2.75vw, 2rem);
    border: 1px solid #E9E7E3;
    background: #ffffff;
}



.chall-sec-item-trigger {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    cursor: default;
}

.chall-sec-item-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 32px;
    height: 32px;
    aspect-ratio: 1 / 1;
}


.chall-sec-item-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.chall-sec-item-title {
    font-size: clamp(1.20rem, 2.25vw, 1.25rem);
    font-weight: 500;
    color: #000000;
    margin: 0 0 0.5rem 0;
}

.chall-sec-item-desc {
    font-style: normal;
    font-weight: 400;
    font-size: clamp(0.875rem, 1.5vw, 0.875rem);
    color: rgb(0 0 0 / 50%);
    line-height: 1.4;
    margin: 0;
}

.chall-sec-accordion-icon {
    display: none;
    /* Mobile only */
}

/* CTA Button */

.chall-sec-btn {
    padding: 12px 28px;
    background: #e51b23;
    border: none;
    color: #ffffff;
    border-radius: 50px;
    text-decoration: none;
    font-size: clamp(0.95rem, 1vw, 1rem);
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Google Sans', sans-serif;
    line-height: normal;
}

.chall-sec-btn .download-icon {
    display: flex;
    width: 20px;
    height: 20px;
    justify-content: center;
    align-items: center;
}

.chall-sec-btn:hover {
    background-color: #c11526;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(226, 30, 49, 0.3);
    color: #ffffff;
}

/* Right Image */
.chall-sec-img-wrap {
    position: sticky;
    top: 100px;
    overflow: hidden;
    height: 100%;
}

.chall-sec-right {
    height: 100%;
}

.chall-sec-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chall-sec-mobile-img {
    display: none;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .chall-sec-content-wrap {
        display: block;
    }

    .chall-sec-left {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 0;
    }

    .chall-sec-title {
        order: 1;
        margin-bottom: 1rem;
    }

    .chall-sec-intro {
        order: 2;
        margin-top: 0;
        margin-bottom: 1.5rem;
    }

    .chall-sec-btn-wrap {
        order: 3;
        /* width: 100%; */
        margin-top: 0;
        margin-bottom: 2rem;
    }

    .chall-sec-btn {
        width: 100%;
        justify-content: center;
    }

    .chall-sec-grid {
        order: 4;
        grid-template-columns: 1fr;
        margin-top: 0;
        width: 100%;
        gap: 16px;
    }

    .chall-sec-mobile-img {
        display: block;
        margin-bottom: 1.5rem;
        overflow: hidden;
        aspect-ratio: 4 / 3;
    }

    .chall-sec-mobile-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .chall-sec-right {
        display: none;
    }

    /* Important: Override inline JS max-height for accordion */
    .chall-sec-item-body {
        max-height: none !important;
    }
}

@media (max-width: 580px) {
    .chall-sec-btn {
        width: 100%;
        justify-content: center;
    }

    .chall-sec-btn-wrap {
        width: 100%;
    }
}


/* ==========================================================================
   Energy Problem Solution Section (energy-prob)
   ========================================================================== */

.energy-prob-section {
    padding: clamp(1.5rem, 5vw, 4rem) 1.25rem;
    background-color: #ffffff;
    overflow: hidden;
}


.energy-prob-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto clamp(2rem, 3vw, 3.5rem);
}

.energy-prob-title {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 500;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.2;
    text-transform: capitalize;
}

.energy-prob-desc {
    font-size: clamp(0.95rem, 1.1vw, 1.1rem);
    color: rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    margin: 0;
}

/* Rows & Items */
.energy-prob-rows {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.energy-prob-row-item {
    display: flex;
    align-items: stretch;
    background: #ffffff;
    gap: 0;
}

.energy-prob-card {
    flex: 1;
    padding: 40px;
    border: 1px solid rgba(207, 202, 194, 0.45);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.energy-prob-card--challenge {
    background-color: #ffffff;
}

.energy-prob-card--solution {
    background: #F4F4F4;
    border-left: 0;
}

.energy-prob-badge {
    display: inline-block;
    padding: 6px 12px;
    font-size: clamp(0.95rem, 1vw, 1rem);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    align-self: flex-start;
}

.energy-prob-card--challenge .energy-prob-badge {
    background: #F4F4F4;
    backdrop-filter: blur(2px);
    color: #e21e31;
}

.energy-prob-card--solution .energy-prob-badge {
    background: #1a1a1a;
    color: #ffffff;
}

.energy-prob-card-title {
    margin-bottom: 1rem;
    color: #000;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    font-size: clamp(1rem, 1.75vw, 1.25rem);
}

.energy-prob-card-desc {
    font-size: clamp(0.95rem, 1.1vw, 1.1rem);
    color: rgb(0 0 0);
    line-height: 1.6;
    margin: 0 0 1.25rem;
    opacity: 0.6;
}

.energy-prob-card-footer {
    margin-top: auto;
}

.energy-prob-stat-value {
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 5px;
    font-size: clamp(1.25rem, 1.25vw, 1.25rem);
    background: linear-gradient(180deg, #000 20%, #666 78%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-flex;
}

.energy-prob-stat-label {
    color: rgb(26 26 26 / 54%);
    font-size: clamp(0.85rem, 1vw, 1rem);
    line-height: 1.4;
}

/* Connector Arrow */
.energy-prob-connector {
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    margin: 0 -30px;
}

.energy-prob-arrow-circle {
    width: 44px;
    height: 44px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Slider Styles */
@media (max-width: 991px) {
    .energy-prob-rows {
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        /* padding-bottom: 40px; */
        -ms-overflow-style: none;
        scrollbar-width: none;
        gap: 0;
    }

    .energy-prob-rows::-webkit-scrollbar {
        display: none;
    }

    .energy-prob-row-item {
        flex: 0 0 48%;
        scroll-snap-align: center;
        flex-direction: column;
        padding: 0 0.5rem;
        background: transparent;
    }

    .energy-prob-row-item:first-child {
        padding-left: 1.25rem;
    }

    .energy-prob-row-item:last-child {
        padding-right: 1.25rem;
    }


    .energy-prob-card {
        padding: 30px;
        min-height: 380px;
    }

    .energy-prob-card--challenge {
        margin-bottom: 0;
        border-bottom: none;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        padding-bottom: 3.5rem !important;
    }

    .energy-prob-card--solution {
        margin-top: 0;
        border-top: none;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        border: 1px solid rgba(207, 202, 194, 0.45);
    }

    .energy-prob-connector {
        width: 100%;
        height: 60px;
        margin: -30px 0;
        transform: rotate(90deg);
    }

    .energy-prob-dots {
        display: none;
        justify-content: center;
        gap: 8px;
        margin-top: 10px;
    }

    .energy-prob-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #dddddd;
        transition: all 0.3s ease;
    }

    .energy-prob-dot.is-active {
        background: #e21e31;
        transform: scale(1.2);
    }

    .energy-prob-card--solution .energy-prob-badge {
        margin-top: 2rem;
    }
}

@media (max-width: 991px) {
    .energy-prob-section {
        padding: 2rem 0;
    }

    .energy-prob-header {
        padding: 0 1.25rem;
    }

    .energy-prob-card {
        padding: 24px;
    }
}

@media screen and (max-width: 600px) {
    .energy-prob-row-item {
        flex: 0 0 90%;
    }
}

/* ==========================================================================
   Changes After Implementation Section (changes-impl)
   ========================================================================== */

.changes-impl-section {
    padding: clamp(2rem, 4vw, 4rem) 1.25rem;
}

.changes-impl-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5%;
}

.changes-impl-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.changes-impl-header-left {
    max-width: 900px;
}

.changes-impl-title {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 500;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.2;
    text-transform: capitalize;
}

.changes-impl-desc {
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    line-height: 1.6;
    color: rgba(26, 26, 26, 0.5);
    margin: 0;
}

.changes-impl-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: #e21e31;
    color: #ffffff;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 500;
    font-size: clamp(0.9rem, 1.05vw, 1rem);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.changes-impl-cta:hover {
    background-color: #c11526;
    transform: translateY(-2px);
    color: #ffffff;
}

/* Grid & Boxes */
.changes-impl-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid #eeeeee;
    overflow: hidden;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.05);
}

.changes-impl-box {
    padding: clamp(1.5rem, 3vw, 3rem);
    display: flex;
    flex-direction: column;
    min-height: 280px;
    position: relative;
}

.changes-impl-box--before {
    background-color: #ffffff;
}

.changes-impl-box--after {
    background-color: #000000;
    color: #ffffff;
}

.changes-impl-box-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(226, 30, 49, 0.4) 0%, rgba(0, 0, 0, 0) 60%);
    pointer-events: none;
    opacity: 0.8;
}

.changes-impl-box-content {
    position: relative;
    z-index: 2;
}

.changes-impl-box-title {
    color: inherit;
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 500;
    margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
}

.changes-impl-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.changes-impl-list-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.changes-impl-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 7px;
    flex-shrink: 0;
}

.changes-impl-dot--gray {
    background-color: #CFCAC2;
}

.changes-impl-dot--red {
    background-color: #e21e31;
    box-shadow: 0 0 10px rgba(226, 30, 49, 0.8);
}

.changes-impl-item-text {
    color: inherit;
    font-size: clamp(0.95rem, 2vw, 1rem);
    line-height: 1.6;
    font-style: normal;
    font-weight: 400;
}

.changes-impl-box--before .changes-impl-item-text {
    color: rgba(26, 26, 26, 0.8);
}

.changes-impl-box--after .changes-impl-item-text {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive */
@media (max-width: 991px) {
    .changes-impl-header {
        flex-direction: column;
        gap: 2rem;
    }

    .changes-impl-header-right {
        order: -1;
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }

    .changes-impl-grid {
        grid-template-columns: 1fr;
    }

    .changes-impl-box {
        min-height: auto;
    }

    .changes-impl-box-title {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767px) {


    .changes-impl-header-right {
        display: none;
    }

}

/* Storage Savings Section */
.sol-page-container {
    padding: 0 clamp(1.25rem, 3.5vw, 4rem);
    width: 100%;
    max-width: 1920px;
    min-height: clamp(320px, 50vw, 600px);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.sol-storage-section {
    padding: clamp(2.5rem, 5vw, 5rem) 1.5rem clamp(1.25rem, 3.5vw, 2.25rem);
    background: #ffffff;
    font-family: inherit;
}

.sol-storage-title {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 500;
    color: #000000;
    margin: 0 0 clamp(1.25rem, 3.5vw, 2.5rem) 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.sol-storage-media {
    width: 100%;
    /* min-height: clamp(400px, 55vw, 880px); */
    aspect-ratio: 16 / 9;
    height: auto;
    display: block;
    object-fit: cover;
}

.electres-hero-banner .sol-storage-media {
    width: 100%;
    min-height: 100dvh !important;
    height: auto;
    display: block;
    object-fit: cover;
}

/* .sfs-image-col {
    width: 100%;
} */
.sfs-image-col {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.sfs-image-col img {
    width: 100%;
    padding-right: 1%;
    margin-bottom: -1rem;
}

@media (max-width: 767px) {
    .sfs-image-col-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-top: 2rem;
    }

    .sol-storage-media {
        object-position: bottom center;
        min-height: 180px;
    }

    .sfs-image-col-mobile img {
        width: 100%;
        height: auto;
        display: block;
    }

    .sfs-image-col-mobile img:first-child {
        max-width: clamp(380px, 80vw, 70%);
        margin: 0 auto clamp(2rem, 4vw, 3.5rem) auto;
    }

    .sfs-image-col-mobile img:last-child {
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
    }
}

/* BESS Product Line Section */
.bpl-section {
    padding: 5rem 0 0;
    background: #ffffff;
    font-family: inherit;
}

.bpl-header {
    text-align: center;
    margin-bottom: 4rem;
}

.bpl-title {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 600;
    color: #000000;
    margin: 0 0 1rem 0;
}

.bpl-subtitle {
    font-size: clamp(1rem, 1.25vw, 1.15rem);
    color: #666666;
    margin: 0;
}

.bpl-list {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
}

.bpl-list::-webkit-scrollbar {
    display: none;
}

.bpl-card {
    background: #f4f5f5;
    flex: 0 0 calc(33.3333% - 16px);
    min-width: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    scroll-snap-align: start;
}

.bpl-image-col {
    width: 100%;
    display: flex;
    justify-content: center;
}

.bpl-img {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
    aspect-ratio: 5 / 4;
}

.bpl-content-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    width: 100%;
    flex: 1;
}

.bpl-card-title {
    font-size: clamp(1.25rem, 1.5vw, 1.5rem);
    font-weight: 600;
    color: #000000;
    margin: 0 0 1rem 0;
}

.bpl-card-subtitle {
    font-size: clamp(0.9rem, 1vw, 1rem);
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0 0 2rem 0;
}

.bpl-card-desc {
    margin-bottom: 2rem;
    color: #000;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-transform: capitalize;
}

.bpl-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    margin-bottom: 2.5rem;
}

.bpl-spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 16px;
}

.bpl-spec-item:first-child {
    padding: 0 16px 0 0px;
}

.bpl-spec-item:last-child {
    padding: 0 0 0 16px;
}

/*  Vertical separators  */
.bpl-spec-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 1%;
    height: 98%;
    width: 1px;
    background-color: rgba(0, 0, 0, 0.1);
}

.bpl-spec-icon {
    width: clamp(1.25rem, 1.25vw, 1.5rem);
    height: clamp(1.25rem, 1.25vw, 1.5rem);
    margin-bottom: 8px;
    color: #1a1a1a;
}

.bpl-spec-icon img,
.bpl-spec-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bpl-spec-value {
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    font-weight: 500;
    color: #000000;
    margin-bottom: 2px;
    line-height: 120%;
    white-space: nowrap;
}

.bpl-spec-label {
    font-size: clamp(0.75rem, 1vw, 0.85rem);
    color: #666666;
    white-space: nowrap;
}

.bpl-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.bpl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bpl-btn-solid {
    background: #e31837;
    color: #ffffff;
}

.bpl-btn-solid:hover {
    background: #c4122e;
    color: #ffffff;
}

.bpl-btn-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: #e31837;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.bpl-btn-text:hover {
    color: #c4122e;
}

/* Responsive */
@media (max-width: 1024px) {
    .bpl-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 767px) {
    .bpl-card {
        flex: 0 0 85%;
        min-width: 280px;
    }
}

/* ==========================================
   BESS Product Section
   ========================================== */
.single-bess-pro-section {
    padding: clamp(4.5rem, 6vw, 5rem) 1.25rem clamp(2rem, 4vw, 3.5rem);
    background-color: #ffffff;
}

.single-bess-pro-header {
    text-align: left;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.single-bess-pro-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    color: #000000;
    max-width: 900px;
    margin: 0 0 1rem 0;
}

.single-bess-pro-subtitle {
    font-size: clamp(0.95rem, 1.2vw, 1rem);
    color: rgba(0, 0, 0, 0.6);
    max-width: 67vw;
    margin: 0;
}

.single-bess-pro-card {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.single-bess-pro-image {
    width: 100%;
}

.single-bess-pro-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 550px;
}

.single-bess-pro-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55%;
    z-index: 1;

    opacity: 0.7;
    background: linear-gradient(0deg, #000 38.3%, rgba(0, 0, 0, 0.00) 96.1%);
}

.single-bess-pro-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: clamp(1.5rem, 4vw, 3.5rem) clamp(1.5rem, 4vw, 2.5rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    row-gap: 2rem;
}

.single-bess-pro-left {
    color: #ffffff;
    max-width: 600px;
}

.single-bess-pro-name {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
}

.single-bess-pro-desc {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 1rem 0;
    line-height: 1.4;
}

.single-bess-pro-capacity {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(5px);
    padding: 6px 12px;
    font-size: 0.9rem;
    color: #ffffff;
}

.single-bess-pro-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.single-bess-pro-link {
    color: #e31837;
    transition: opacity 0.3s ease;
    padding: 11px 24px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    gap: 6px;
    border: 1px solid #E21E31;
}

.single-bess-pro-link:hover {
    opacity: 0.8;
    color: #e31837;
}

.single-bess-pro-btn {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    gap: 6px;
}

.single-bess-pro-btn:hover {
    background-color: #c4122e;
    color: #ffffff;
}

@media (max-width: 767px) {
    .single-bess-pro-image img {
        height: 650px;
    }

    .single-bess-pro-overlay {
        height: 85%;
        background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.9) 30%, rgba(0, 0, 0, 0) 100%);
    }

    .single-bess-pro-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 2.5rem 1.25rem;
        row-gap: 0;
    }

    .single-bess-pro-right {
        flex-direction: column-reverse;
        align-items: center;
        width: 100%;
        margin-top: 2.5rem;
        gap: 1.5rem;
    }

    .single-bess-pro-link,
    .single-bess-pro-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* Deployed Across Section */
.bess_prouti_bg {
    background: linear-gradient(180deg, #FFF 0%, #F4F4F4 50%, #fdfdfd 100%);
}

.deployed-across {
    padding: clamp(1.5rem, 2vw, 2rem) 1.25rem clamp(4rem, 5vw, 4.5rem);
    font-family: inherit;
    background: linear-gradient(180deg, #FFF 0%, #F4F4F4 50%, #CFCAC2 100%);
    overflow: hidden;

}

.deployed-across-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.deployed-across-title {
    font-size: clamp(1.25rem, 2.5vw, 1.25rem);
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
}

.deployed-across-arrows {
    display: flex;
    gap: 12px;
}

.deployed-across-arrows button {
    width: 36px;
    height: 36px;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    padding: 0;
}

.deployed-across-arrows button:hover {
    background: #fff;
    border-color: #1a1a1a;
    color: #1a1a1a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.deployed-across-arrows button.slick-disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background: transparent;
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.1);
    color: #aaa;
}

.deployed-across__slider {
    margin: 0 -10px;
    /* Offset card paddings */
}

.deployment-card-item {
    padding: 0 10px;
    outline: none;
}

.deployment-card {
    background: #ffffff;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Slight border to distinguish white background from very light page background */
}

.deployment-card-image {
    width: 100%;
    aspect-ratio: 4 / 4;
    /* Taller aspect ratio matching the screenshot */
    overflow: hidden;
}

.deployment-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.deployment-card-content {
    padding: 20px;
    flex-grow: 1;
}

.deployment-card-title {
    font-size: clamp(0.85rem, 1.25vw, 1rem);
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 4px 0;
    line-height: 1.3;
    min-height: 42px;
    align-items: center;
    display: flex;
}

.deployment-card-description {
    font-size: clamp(0.75rem, 1vw, 0.95rem);
    color: #1a1a1a;
    opacity: 0.5;
    margin: 0;
    line-height: 1.5;
}

/* Operating Envelope Section */
.operating-envelope {
    padding: clamp(3.125rem, 5vw, 5rem) 1.25rem;
    font-family: inherit;
    background: linear-gradient(180deg, #FFF 0%, #F4F4F4 50%, #CFCAC2 100%);
}

.operating-envelope-text {
    max-width: 900px;
    margin-bottom: 40px;
}

.operating-envelope-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0 0 8px 0;
}

.operating-envelope-desc {
    font-size: clamp(1rem, 1.25vw, 1rem);
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.operating-envelope-desc p {
    margin: 0;
}

.operating-envelope-media {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #ffffff;
}

.operating-envelope-video-wrapper,
.operating-envelope-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 8;
    /* Large wide media block */
}

.operating-envelope-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.40);
    backdrop-filter: blur(0);
    pointer-events: none;
    transition: opacity 0.3s ease;
    opacity: 1;
}

.operating-envelope-video,
.operating-envelope-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.operating-envelope-play-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.operating-envelope-play-center svg {
    width: clamp(3rem, 5vw, 5rem);
    height: clamp(3rem, 5vw, 5rem);
}

.operating-envelope-play-center:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

.operating-envelope-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 8px 16px;
    display: none;
    align-items: center;
    gap: 10px;
    z-index: 2;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    background: rgba(0, 0, 0, 0.40);
    backdrop-filter: blur(3px);
}

.operating-envelope-badge span {
    color: #fff;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    font-weight: 500;
    text-transform: uppercase;
}

@media (max-width: 768px) {

    .operating-envelope-video-wrapper,
    .operating-envelope-image-wrapper {
        aspect-ratio: 4 / 2;
    }

    .deployment-card-content {
        padding: 12px;
    }

    .operating-envelope-text {
        margin-bottom: 2rem;
    }

    .operating-envelope-badge {
        display: none;
    }

    .deployed-across__slider .slick-list {
        overflow: visible;
    }

    .operating-envelope {
        padding-bottom: 2rem;
        background: linear-gradient(180deg, #FFF 0%, #F4F4F4 30%, #ffffff 100%);
    }
}

/* Engineered Subsystems Section */
.engineered-subsystems {
    padding: clamp(4rem, 5vw, 5rem) 1.25rem;
    font-family: inherit;
    background: #ffffff;
}

.engineered-subsystems-header {
    max-width: 900px;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.engineered-subsystems-title {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    text-transform: capitalize;
    max-width: 800px;
}

.engineered-subsystems-desc {
    font-size: clamp(1rem, 1.25vw, 1rem);
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.engineered-subsystems-desc p {
    margin: 0;
}

.engineered-subsystems-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    /* Columns touch each other directly as per mockup */
}

@media (max-width: 991px) {
    .engineered-subsystems-grid {
        grid-template-columns: 1fr;
    }
}

.engineered-subsystems-media {
    position: relative;
    width: 100%;
    height: 100%;
    background: #ffffff;
    overflow: hidden;
}

.engineered-media-video-wrapper,
.engineered-media-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
}

.engineered-media-video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.40);
    backdrop-filter: blur(0);
    pointer-events: none;
    transition: opacity 0.3s ease;
    opacity: 1;
}

/* Hide the overlay when the video is playing */
.engineered-media-video-wrapper.is-playing::before {
    opacity: 0;
}

.engineered-media-video,
.engineered-media-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Play button center and badge */
.engineered-play-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    width: clamp(50px, 5vw, 100px);
    height: clamp(50px, 5vw, 100px);
    display: flex;
    justify-content: center;
    align-items: center;
}



.engineered-play-center:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

.engineered-media-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 8px 16px;
    display: none;
    align-items: center;
    gap: 10px;
    z-index: 2;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    background: rgba(0, 0, 0, 0.40);
    backdrop-filter: blur(3px);
}

.engineered-media-badge span {
    color: #fff;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    font-weight: 500;
    text-transform: uppercase;
}



/* Right side content */
.engineered-subsystems-content {
    background: #f4f4f4;
    padding: clamp(2rem, 4vw, 4rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.engineered-content-title {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.engineered-content-desc {
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.engineered-content-desc p {
    margin: 0;
}

.engineered-features {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.engineered-feature-item {
    padding: 0.95rem 0;
    border-bottom: 1px solid #cfcac2;
}

.engineered-feature-item:first-child {
    border-top: none;
    padding-top: 0;
}

.engineered-feature-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.engineered-feature-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
}

.engineered-feature-dot {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e31837;
    /* Match red from Electres branding */
}

.engineered-feature-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    padding-left: 16px;
    /* Align precisely under text, skipping the dot */
    margin: 0;
}

.engineered-feature-desc p {
    margin: 0;
}

@media (max-width: 768px) {
    .engineered-media-badge {
        display: none;
    }

    .engineered-subsystems-content {
        background: transparent;
        padding: clamp(2rem, 4vw, 4rem) 0;
        padding-bottom: 0;
    }

    .engineered-subsystems {
        padding-bottom: 0;
    }
}

.built_utility_bg .core-functions-grid {
    row-gap: 0;
}

.built_utility_bg {
    background: #ffff;
}

.built_utility_bg .core-functions-subtitle {
    font-size: clamp(1rem, 1.176vw, 1rem);
    max-width: 900px;
}

.built_utility_bg .core-function-card {
    border: 0;
}

@media (max-width: 991px) {
    .built_utility_bg {
        padding-bottom: 0;
    }

    .built_utility_bg .core-functions-grid {
        gap: 30px;
        grid-template-columns: 1fr 1fr;
    }

    .built_utility_bg .core-function-card {
        padding: 0;
        border: none;
    }

    .built_utility_bg .core-function-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        cursor: default;
        /* Disable accordion cursor */
    }

    .built_utility_bg .core-function-card-title {
        display: block;
        margin: 0 0 4px 0;
    }

    .built_utility_bg .core-function-card-desc.toggle-content {
        display: block;
        /* Force show content */
    }

    .built_utility_bg .core-function-card-desc.toggle-content .toggle-content-inner {
        padding-left: 0;
        padding-top: 6px;
        font-size: 0.95rem;
        color: #666;
        line-height: 1.5;
        overflow: visible;
    }
}

@media (max-width: 580px) {
    .built_utility_bg .core-functions-grid {
        gap: 30px;
        grid-template-columns: 1fr;
    }
}

.utility-core-bg {
    background: linear-gradient(180deg, #FFF 0%, #F4F4F4 50%, #cfcac2b3 100%);
    padding: clamp(2.5rem, 9vw, 5rem) 1.25rem;
}

body:has(.utility-core-bg) .operating-envelope {
    background: #fdfdfd;
}

.home-battery-roi-sec .roi-icon {
    display: none;
}

.home-battery-roi-sec .roi-stat-value {
    background: linear-gradient(180deg, #000 20%, #666 78%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: clamp(1.5rem, 2vw, 2rem);
}

.home-battery-roi-sec .roi-stat-desc {
    max-width: 260px;
}

.resi-bess-sol-bot {
    padding-top: clamp(1.5rem, 5vw, 5rem);
    padding-bottom: 0 !important;
}

/* 
.stats-sec .built-diff-bento {
    grid-template-columns: repeat(7, 1fr);
}

.stats-sec .bento-card-1,
.stats-sec .bento-card-4 {
    grid-column: span 4;
}

.stats-sec .bento-card-2,
.stats-sec .bento-card-3 {
    grid-column: span 3;
} */

.sol-fits {
    background: linear-gradient(180deg, #FFF 0%, #F4F4F4 50%, #CFCAC2 100%);
    color: #000000;
    padding: clamp(4.5rem, 3.5vw, 5rem) 1.25rem clamp(4.5rem, 10.5vw, 8rem);
}

.sol-fits .solution-fits-overlay {
    opacity: 0;
    display: none;
}

.sol-fits .solution-card {
    box-shadow: none;
}

.which-sol-fits .sfs-image-col img {
    width: 100%;
    padding-right: 0;
    margin: 0 auto;
    margin-bottom: -1rem;
}

@media (max-width: 991px) {
    body:has(.utility-core-bg) .operating-envelope {
        padding-bottom: 1.5rem;
    }

    .home-battery-roi-sec .roi-stat-desc {
        min-height: 0;
        max-width: 100%;
    }

    /* .sol-fits .solution-fits-grid {
        grid-template-columns: 1fr 1fr;
    } */
}

/* @media (max-width: 768px) {

    .stats-sec .bento-card-2,
    .stats-sec .bento-card-3,
    .stats-sec .bento-card-1,
    .stats-sec .bento-card-4 {
        grid-column: span 7;
    }

    .sol-fits .solution-fits-grid {
        grid-template-columns: 1fr;
    }

} */
.toggle-content-inner p br,
.commercial-industrial-bess .early-access-row:nth-child(3),
.commercial-industrial-bess .early-access-row:nth-child(4),
.utility-scale-bess .early-access-row:nth-child(3),
.utility-scale-bess .early-access-row:nth-child(4),
.residential-bess .early-access-row:nth-child(3),
.residential-bess .early-access-row:nth-child(4),
.residential-bess .early-access-row:nth-child(2) .early-access-field:nth-child(2) {
    display: none;
}