/* ==========================================================================
   Lithio BI Landing Page Stylesheet
   ========================================================================== */

/* Design Variables */
:root {
    --bg-header: #000000;
    --bg-dark: #050b11;
    --bg-card: #0c1520;
    --primary-green: #00E676;
    --primary-green-hover: #00c853;
    --text-white: #ffffff;
    --text-muted: #abb2bf;
    --text-dark: #0f172a;
    --text-light: #f8fafc;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-light: rgba(255, 255, 255, 0.08);
}

/* Base resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
}

/* Header & Navbar Style matching the exact crop */
.header {
    background-color: var(--bg-header);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition);
}

.header.scrolled {
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* Navigation Links */
.nav-menu ul {
    display: flex;
    list-style: none;
    align-items: flex-start;
    gap: 28px;
}

.nav-link {
    color: var(--text-white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.85;
    transition: var(--transition);
}

.nav-link:hover {
    opacity: 1;
}

/* Active Link Underline Effect exactly matching the screenshot */
.nav-link.active {
    opacity: 1;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-green);
    border-radius: 4px;
}

.chevron-icon {
    transition: var(--transition);
}

.dropdown:hover .chevron-icon {
    transform: translateY(2px);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 0;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    color: #000;
    padding: 10px 20px;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    color: #0ca158;
    background-color: rgba(255, 255, 255, 0.03);
}

/* Buttons style */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--text-dark);
    border: none;
    box-shadow: 0 4px 14px rgba(0, 230, 118, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-green-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 230, 118, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--primary-green);
    background: rgba(255, 255, 255, 0.04);
}

.w-full {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 100%;
    height: 2.5px;
    background-color: var(--text-white);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 150px;
    padding-bottom: 0px;
    overflow: hidden;
}

.green-radial-glow {
    position: absolute;
    top: -15%;
    right: -15%;
    width: 70%;
    height: 90%;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.08) 0%, transparent 65%);
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
}

.badge {
    display: inline-block;
    color: var(--primary-green);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    padding: 6px 14px;
    background: rgba(0, 230, 118, 0.08);
    border-radius: 6px;
    border: 1px solid rgba(0, 230, 118, 0.15);
}

.hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.green-text {
    color: var(--primary-green);
}

/* Hero Right: Image + Badges */
.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

/* Feature Badges Column */
.hero-badges-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

.hero-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(0, 230, 118, 0.15);
    border-radius: 10px;
    padding: 10px 14px;
    backdrop-filter: blur(8px);
    min-width: 160px;
    transition: var(--transition);
}

.hero-badge-item:hover {
    background: rgba(0, 230, 118, 0.06);
    border-color: rgba(0, 230, 118, 0.3);
    transform: translateX(2px);
}

.hero-badge-icon {
    width: 36px;
    height: 36px;
    background: rgba(0, 230, 118, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-badge-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.hero-badge-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.2;
}

.hero-badge-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Hero Stats Bar at bottom of hero section */
.hero-stats-bar {
    background: rgba(255, 255, 255, 0.04);
    border-top: 1px solid rgba(0, 230, 118, 0.12);
    padding: 24px 0;
    position: relative;
    z-index: 3;
}

.hero-stats-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.hero-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    justify-content: center;
}

.hero-stat-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 230, 118, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-stat-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-stat-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.1;
}

.hero-stat-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* Product Image & Aura */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 420px;
}

/* Glowing green ring behind charger exactly like screenshot */
.green-ring-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 4px solid #00E676;
    box-shadow: 0 0 35px #00E676, inset 0 0 25px #00E676;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
}

/* Green ambient glow under the image */
.hero-image-wrapper::before {
    content: '';
    position: absolute;
    width: 85%;
    height: 55%;
    background: radial-gradient(ellipse at center, rgba(0, 230, 118, 0.25) 0%, transparent 70%);
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
}

/* Image container to mask white background */
.hero-img-box {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-dark);
    /* Fade the white edges into the dark background */
    -webkit-mask-image: radial-gradient(ellipse 90% 85% at 50% 50%, black 55%, transparent 100%);
    mask-image: radial-gradient(ellipse 90% 85% at 50% 50%, black 55%, transparent 100%);
}

.hero-product-img {
    width: 100%;
    max-width: 540px;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    display: block;
    filter:
        brightness(1.05) contrast(1.1) saturate(1.15) drop-shadow(0 0 35px rgba(0, 230, 118, 0.3)) drop-shadow(0 16px 40px rgba(0, 0, 0, 0.9));
    animation: floatImage 5s ease-in-out infinite;
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-14px);
    }
}

@keyframes rotateDashed {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}





/* Footer style */
.footer {
    border-top: 1px solid var(--border-light);
    padding: 40px 0;
    background-color: #000000;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-brand {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 1px;
}

.footer-tagline {
    font-size: 12px;
    color: var(--text-muted);
}

.copyright {
    color: var(--text-muted);
    font-size: 13px;
}

/* Mobile Drawer Elements */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: #ffffff;
    color: var(--text-dark);
    z-index: 200;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.mobile-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid #f1f5f9;
}

.drawer-close {
    background: transparent;
    border: none;
    color: #475569;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drawer-nav {
    flex: 1;
    padding: 30px 24px;
}

.drawer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.drawer-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #334155;
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    transition: var(--transition);
    display: block;
}

.drawer-link:hover,
.drawer-link.active {
    color: #39B54A;
    transform: translateX(5px);
}

.drawer-footer {
    padding: 24px;
    border-top: 1px solid #f1f5f9;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Trusted Section */
.trusted-section {
    position: absolute;
    z-index: 10;
    margin-top: -50px;
    margin-bottom: 0px;
    width: 100%;
}

.trusted-bar {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    padding: 24px 30px;
    color: var(--text-dark);
}

.trusted-title {
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: #64748b;
    margin-bottom: 20px;
}

.trusted-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.trusted-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1;
    border-right: 1px solid #e2e8f0;
    transition: var(--transition);
}

.trusted-item:last-child {
    border-right: none;
}

.trusted-item .icon {
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.trusted-item .label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
}

.trusted-item:hover .icon {
    color: var(--primary-green-hover);
}

/* Features Section - Clean White grid layout with separators */
.features-section {
    background-color: #ffffff;
    padding: 60px 0 50px;
    border-top: 1px solid #f1f5f9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    align-items: flex-start;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 15px;
    position: relative;
    transition: var(--transition);
}

/* Vertical separators matching the screenshot */
.feature-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 15%;
    right: -8px;
    height: 70%;
    width: 1px;
    background-color: #e2e8f0;
}

.feature-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    color: #39b54a;
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon-wrapper {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(57, 181, 74, 0.15);
    border-color: #39b54a;
}

.feature-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    color: #0f172a;
    margin-bottom: 12px;
}

.feature-desc {
    color: #64748b;
    font-size: 12px;
    line-height: 1.4;
}

/* /* Products Section - 4-Item Premium Cards Slider */
.products-section {
    background-color: #ffffff;
    padding: 50px 0;
    border-top: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.products-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 24px;
}

.products-header-left {
    max-width: 620px;
}

.products-badge {
    color: #39b54a;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 10px;
    position: relative;
    padding-left: 24px;
}

.products-badge::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 2px;
    background-color: #39b54a;
}

.products-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 12px;
}

.products-desc {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
}

/* Slider Controls Header Buttons */
.products-slider-controls {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.products-nav-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.products-nav-btn:hover {
    background: #00E676;
    color: #050b11;
    border-color: #00E676;
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(0, 230, 118, 0.35);
}

/* Slider Container & Wrapper */
.products-slider-container {
    width: 100%;
    overflow: hidden;
    padding: 10px 0 20px 0;
}

.products-slider-wrapper {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    width: max-content;
}

/* Product Card - Sized for 4 items per view */
.product-card {
    flex: 0 0 calc((1240px - 60px) / 4);
    width: calc((1240px - 60px) / 4);
    background: #091119;
    border: 1px solid rgba(0, 230, 118, 0.18);
    border-radius: 18px;
    padding: 24px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 230, 118, 0.45);
    box-shadow: 0 20px 40px rgba(0, 230, 118, 0.18), 0 10px 25px rgba(0, 0, 0, 0.25);
}

.product-card.highlight-card {
    border-color: rgba(0, 230, 118, 0.35);
    background: linear-gradient(180deg, #0d1722 0%, #080e15 100%);
}

.product-card-head {
    margin-bottom: 12px;
}

.product-voltage {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: #00E676;
    display: block;
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.product-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.product-card-desc {
    color: #94a3b8;
    font-size: 12px;
    line-height: 1.45;
    min-height: 35px;
}

/* Image & Glowing Ring */
.product-card-img-wrapper {
    position: relative;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 8px 0 16px 0;
}

.product-ring-glow {
    position: absolute;
    width: 135px;
    height: 135px;
    border-radius: 50%;
    border: 3px solid #00E676;
    box-shadow: 0 0 20px #00E676, inset 0 0 12px #00E676;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.85;
    z-index: 1;
    pointer-events: none;
    transition: all 0.3s ease;
}

.product-card:hover .product-ring-glow {
    opacity: 1;
    box-shadow: 0 0 30px #00E676, inset 0 0 18px #00E676;
    transform: translate(-50%, -50%) scale(1.05);
}

.product-card-img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    max-height: 145px;
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.6));
    transition: transform 0.35s ease;
}

.product-card:hover .product-card-img {
    transform: translateY(-3px) scale(1.04);
}

/* Footer & Features inside card */
.product-card-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 14px;
}

.product-features-row {
    display: flex;
    justify-content: space-between;
    gap: 4px;
    margin-bottom: 14px;
}

.product-features-row .feature-item {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.product-features-row .feature-item svg {
    flex-shrink: 0;
}

.product-features-row .feature-item span {
    font-size: 10px;
    font-weight: 600;
    color: #cbd5e1;
    line-height: 1.2;
}

.btn-view-specs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 9px 12px;
    border: 1px solid rgba(0, 230, 118, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.btn-view-specs:hover {
    background: #00E676;
    color: #050b11;
    border-color: #00E676;
    box-shadow: 0 4px 14px rgba(0, 230, 118, 0.35);
}

.btn-view-specs svg {
    transition: transform 0.3s ease;
}

.btn-view-specs:hover svg {
    transform: translateX(3px);
}

/* Dots Pagination */
.products-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.products-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.products-dots .dot.active {
    background-color: #00E676;
    width: 22px;
    border-radius: 4px;
}



/* ==========================================================================
   OUR OEM PROMISE - Represents Your Brand Section (Clean Light Theme)
   ========================================================================== */
.oem-promise-section {
    background-color: #ffffff;
    padding: 40px 0;
    position: relative;
}

.oem-promise-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px auto;
}

.oem-promise-badge {
    color: #39b54a;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 12px;
    position: relative;
    padding: 0 16px;
}

.oem-promise-badge::before,
.oem-promise-badge::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 2px;
    background-color: #39b54a;
}

.oem-promise-badge::before {
    left: -4px;
}

.oem-promise-badge::after {
    right: -4px;
}

.oem-promise-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.18;
    color: #0f172a;
    margin-bottom: 16px;
}

.oem-promise-desc {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
}

/* Top Main Grid: Left Charger Visual + Right 6 Feature Cards */
.oem-promise-main-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 36px;
    align-items: center;
    margin-bottom: 40px;
}

/* Visual Charger Showcase Card */
.oem-promise-visual {
    width: 100%;
}

.oem-charger-card {
    position: relative;
    background: #091119;
    border: 1px solid rgba(0, 230, 118, 0.2);
    border-radius: 24px;
    padding: 40px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.oem-green-arc {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 4px solid #00E676;
    box-shadow: 0 0 35px #00E676, inset 0 0 20px #00E676;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.9;
    z-index: 1;
    pointer-events: none;
}

.oem-charger-img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.7));
}

/* Right Column: 6 Feature Cards Grid */
.oem-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.oem-feature-card {
    background: #091119;
    border: 1px solid rgba(0, 230, 118, 0.15);
    border-radius: 16px;
    padding: 24px 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.oem-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 230, 118, 0.4);
    box-shadow: 0 12px 25px rgba(0, 230, 118, 0.12);
}

.oem-feature-icon {
    width: 44px;
    height: 44px;
    background: rgba(0, 230, 118, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.oem-feature-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.oem-feature-desc {
    color: #94a3b8;
    font-size: 12px;
    line-height: 1.5;
}

/* Bottom OEM Branding Options Block (Slider) */
.oem-branding-block {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 28px 30px;
    margin-bottom: 30px;
    position: relative;
}

.oem-branding-badge-row {
    text-align: center;
    margin-bottom: 24px;
}

.oem-branding-badge {
    color: #39b54a;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    position: relative;
    padding: 0 20px;
}

.oem-branding-badge::before,
.oem-branding-badge::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 2px;
    background-color: #39b54a;
}

.oem-branding-badge::before {
    left: -10px;
}

.oem-branding-badge::after {
    right: -10px;
}

/* Slider Overflow Container & Flex Wrapper */
.oem-slider-container {
    width: 100%;
    overflow: hidden;
    padding: 4px 0 10px 0;
}

.oem-slider-wrapper {
    display: flex;
    gap: 16px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    width: max-content;
}

/* Option Card (Original styling) - 4 visible per view */
.oem-option-card {
    flex: 0 0 calc((1180px - 48px) / 4);
    width: calc((1180px - 48px) / 4);
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.oem-option-card:hover {
    transform: translateY(-3px);
    border-color: #39b54a;
    box-shadow: 0 8px 20px rgba(57, 181, 74, 0.15);
}

.oem-option-thumb {
    width: 100%;
    height: 90px;
    background: #091119;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.oem-option-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.oem-option-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
}

/* Slider Dots */
.oem-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
}

.oem-dots .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.oem-dots .dot.active {
    background-color: #00E676;
    width: 20px;
    border-radius: 4px;
}

/* Bottom CTA Banner (Premium Dark Container Bar) */
.oem-promise-cta-bar {
    background: #091119;
    border: 1px solid rgba(0, 230, 118, 0.35);
    border-radius: 16px;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
    margin-top: 25px;
    position: relative;
    z-index: 5;
}

.oem-promise-cta-left {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
}

.oem-promise-cta-left svg {
    flex-shrink: 0;
    stroke: #00E676;
    filter: drop-shadow(0 0 6px rgba(0, 230, 118, 0.8));
}

/* ==========================================================================
   OUR PROCESS - Manufacturing Process Section (Dark Premium Theme)
   ========================================================================== */
.mfg-process-section {
    background-color: #091119;
    padding: 80px 0;
    position: relative;
    border-top: 1px solid rgba(0, 230, 118, 0.15);
    overflow: hidden;
}

.mfg-process-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px auto;
}

.mfg-process-badge {
    color: #39b54a;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 12px;
    position: relative;
    padding: 0 16px;
}

.mfg-process-badge::before,
.mfg-process-badge::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 2px;
    background-color: #39b54a;
}

.mfg-process-badge::before {
    left: -4px;
}

.mfg-process-badge::after {
    right: -4px;
}

.mfg-process-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.18;
    color: #ffffff;
    margin-bottom: 16px;
}

.mfg-process-desc {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.6;
}

/* 7 Step Cards Grid */
.mfg-steps-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.mfg-step-card {
    background: #0d1722;
    border: 1px solid rgba(0, 230, 118, 0.15);
    border-radius: 16px;
    padding: 16px 12px 14px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.mfg-step-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 230, 118, 0.45);
    box-shadow: 0 12px 30px rgba(0, 230, 118, 0.15);
}

.mfg-step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid #00E676;
    color: #00E676;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    background: rgba(0, 230, 118, 0.05);
}

.mfg-step-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.mfg-step-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #00E676;
    line-height: 1.3;
    margin-bottom: 8px;
    min-height: 34px;
}

.mfg-step-desc {
    color: #94a3b8;
    font-size: 11px;
    line-height: 1.45;
    margin-bottom: 14px;
    min-height: 48px;
}

.mfg-step-img-box {
    width: 100%;
    height: 110px;
    border-radius: 12px;
    overflow: hidden;
    background: #050b11;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mfg-step-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.mfg-step-card:hover .mfg-step-img-box img {
    transform: scale(1.08);
}

/* Timeline Bar with Green Dots and Arrows */
.mfg-timeline-bar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    align-items: center;
    position: relative;
    margin-bottom: 40px;
    padding: 0 10px;
}

.mfg-timeline-bar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(90deg, #00E676 0%, #39b54a 100%);
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0.6;
}

.mfg-line-node {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mfg-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #00E676;
    box-shadow: 0 0 10px #00E676;
}

.mfg-arrow {
    position: absolute;
    right: -6px;
    color: #00E676;
    font-size: 14px;
}

/* Bottom 5-Feature Bar */
.mfg-features-bar {
    background: #0d1722;
    border: 1px solid rgba(0, 230, 118, 0.2);
    border-radius: 18px;
    padding: 20px 30px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.mfg-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mfg-feature-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(0, 230, 118, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mfg-feature-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.35;
}

/* Bottom CTA Banner */
.mfg-promise-cta-bar {
    background: #0d1722;
    border: 1px solid rgba(0, 230, 118, 0.3);
    border-radius: 18px;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.3);
}

.mfg-promise-cta-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mfg-factory-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1.5px solid #00E676;
    background: rgba(0, 230, 118, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mfg-promise-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mfg-promise-bold {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
}

.mfg-promise-sub {
    font-size: 13px;
    color: #94a3b8;
}

/* Responsive for mfg section */
@media (max-width: 1200px) {
    .mfg-steps-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .mfg-timeline-bar {
        display: none;
    }

    .mfg-features-bar {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .mfg-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mfg-features-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .mfg-promise-cta-bar {
        flex-direction: column;
        text-align: center;
    }

    .mfg-promise-cta-left {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .mfg-steps-grid {
        grid-template-columns: 1fr;
    }

    .mfg-features-bar {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .oem-promise-main-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .oem-option-card {
        flex: 0 0 calc((100% - 2 * 16px) / 3);
        width: calc((100% - 2 * 16px) / 3);
    }
}

@media (max-width: 768px) {
    .oem-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .oem-option-card {
        flex: 0 0 calc((100% - 16px) / 2);
        width: calc((100% - 16px) / 2);
    }

    .oem-promise-cta-bar {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .oem-features-grid {
        grid-template-columns: 1fr;
    }

    .oem-option-card {
        flex: 0 0 100%;
        width: 100%;
    }
}

/* Industries Section */
.industries-section {
    background-color: #ffffff;
    padding: 50px 0 50px;
    border-top: 1px solid #f1f5f9;
}

.industries-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.industries-intro {
    flex: 0 0 32%;
    max-width: 320px;
}

.industries-badge {
    color: var(--primary-green);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 16px;
}

.industries-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 30px;
    font-weight: 800;
    line-height: 40px;
    color: #0f172a;
}

.industries-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.industry-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 24px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 15px rgb(0 0 0 / 28%);
    transition: var(--transition);
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: rgba(57, 181, 74, 0.2);
}

.industry-card .icon {
    color: #0f172a;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.industry-card:hover .icon {
    color: var(--primary-green);
}

.industry-card .label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.4;
}

/* Stats Section */
.stats-section {
    background-color: #ffffff;
    padding: 0 0 0px;
}

.stats-bar-container {
    background: #050a0f;
    border-radius: 24px;
    padding: 36px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 15px 40px rgba(0, 230, 118, 0.04);
    border: 1px solid rgba(0, 230, 118, 0.1);
    position: relative;
    overflow: hidden;
}

.stats-bar-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00E676, transparent);
    box-shadow: 0 0 20px 4px rgba(0, 230, 118, 0.4);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 10px;
}

.stat-item:last-child {
    border-right: none;
}

.stat-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00E676;
    filter: drop-shadow(0 0 8px rgba(0, 230, 118, 0.3));
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-weight: 850;
    color: #00E676;
    line-height: 1.2;
    filter: drop-shadow(0 0 4px rgba(0, 230, 118, 0.2));
}

.stat-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 4px;
}

/* Journey Section */
.journey-section {
    background-color: #ffffff;
    padding: 50px 0 50px;
}

.journey-header {
    text-align: left;
    margin-bottom: 0px;
}

.journey-section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.journey-title-line {
    display: block;
    width: 40px;
    height: 3px;
    background-color: var(--primary-green);
    border-radius: 2px;
}

.timeline-wrapper {
    position: relative;
    padding: 20px 0;
}

.timeline-track {
    position: absolute;
    top: 68px;
    /* half of wrapper padding + half of circle icon wrapper (48px) */
    left: 8%;
    right: 8%;
    height: 2px;
    background-color: #cbd5e1;
    z-index: 1;
}

.timeline-track::before {
    content: '';
    position: absolute;
    left: 0;
    top: -3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-green);
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.timeline-icon-wrapper {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1.5px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.timeline-item:hover .timeline-icon-wrapper {
    border-color: var(--primary-green);
    color: var(--primary-green);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(57, 181, 74, 0.1);
}

.timeline-item.active .timeline-icon-wrapper {
    border-color: var(--primary-green);
    background-color: #f0fdf4;
    color: var(--primary-green);
    box-shadow: 0 8px 20px rgba(57, 181, 74, 0.15);
}

.timeline-content {
    margin-top: 20px;
}

.timeline-year {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.timeline-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
    line-height: 1.3;
}

.timeline-desc {
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
    max-width: 220px;
    margin: 0 auto;
}

/* Packaging Section */
.packaging-section {
    background-color: #f7f7f7;
    padding: 40px 0;
    border-top: 1px solid #f1f5f9;
}

.packaging-container {
    display: flex;
    align-items: center;
    gap: 48px;
}

.packaging-intro {
    flex: 0 0 32%;
    max-width: 320px;
}

.packaging-badge {
    color: var(--primary-green);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 16px;
}

.packaging-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.25;
    color: #0f172a;
    margin-bottom: 20px;
}

.packaging-desc {
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.packaging-slider-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.packaging-slider-wrapper {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    width: max-content;
}

.packaging-slide {
    flex: 0 0 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.packaging-img-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
    background: #0c1520;
    border: 1px solid rgba(0, 230, 118, 0.18);
    box-shadow:
        0 0 0 1px rgba(0, 230, 118, 0.08),
        0 8px 24px rgba(0, 0, 0, 0.35),
        0 0 30px rgba(0, 230, 118, 0.10);
    transition: var(--transition);
}

.packaging-img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: center center;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0.95;
}

.packaging-slide:hover .packaging-img-wrapper {
    transform: translateY(-6px);
    border-color: rgba(0, 230, 118, 0.40);
    box-shadow:
        0 0 0 1px rgba(0, 230, 118, 0.20),
        0 16px 40px rgba(0, 0, 0, 0.45),
        0 0 50px rgba(0, 230, 118, 0.22);
}

.packaging-slide:hover .packaging-img {
    transform: scale(1.06);
    opacity: 1;
}

.packaging-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 750;
    color: #0f172a;
    text-align: center;
}

.packaging-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.packaging-dots .packaging-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #cbd5e1;
    cursor: pointer;
    transition: var(--transition);
}

.packaging-dots .packaging-dot.active {
    background-color: var(--primary-green);
    width: 20px;
    border-radius: 4px;
}

/* Why Choose & Specs Section */
.specs-section {
    background-color: #ffffff;
    padding: 50px 0;
    border-top: 1px solid #f1f5f9;
}

.specs-container {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.why-choose-block {
    text-align: left;
}

.why-badge {
    color: var(--primary-green);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 16px;
}

.why-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 40px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.why-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
    padding: 0 10px;
}

/* Dividers between why columns */
.why-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 15%;
    right: -10px;
    height: 70%;
    width: 1px;
    background-color: #cbd5e1;
}

.why-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1.5px solid #e2e8f0;
    color: var(--primary-green);
    margin-bottom: 20px;
    transition: var(--transition);
}

.why-card:hover .why-icon-wrapper {
    border-color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(57, 181, 74, 0.15);
}

.why-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.why-card-desc {
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
}

/* Specs Block styling */
.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 48px;
    align-items: center;
}

.spec-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(57, 181, 74, 0.06) 0%, transparent 70%);
    padding: 0px;
    border-radius: 24px;
}

.spec-charger-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.25));
}

.spec-table-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.spec-table-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.spec-table-title-line {
    display: block;
    width: 40px;
    height: 3px;
    background-color: var(--primary-green);
    border-radius: 2px;
    margin-bottom: 30px;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.spec-table th {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
    padding: 16px 12px;
    border-bottom: 2.5px solid #e2e8f0;
}

.spec-table th:not(:first-child) {
    color: var(--primary-green);
}

.spec-table td {
    font-size: 13px;
    color: #475569;
    padding: 14px 12px;
    border-bottom: 1px solid #f1f5f9;
    line-height: 1.4;
}

.spec-table tr:hover td {
    background-color: #f8fafc;
}

.spec-table .row-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #0f172a;
}

/* Applications Section */
.app-section {
    background-color: #ffffff;
    padding: 40px 0;
    border-top: 1px solid #f1f5f9;
}

.app-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.app-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 10px;
}

.app-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.app-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
}

.app-title-line {
    display: block;
    width: 40px;
    height: 3px;
    background-color: var(--primary-green);
    border-radius: 2px;
}

.app-slider-container {
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.app-slider-wrapper {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    width: max-content;
}

.app-slide {
    flex: 0 0 280px;
    background: #0c1520;
    border: 1px solid rgba(0, 230, 118, 0.15);
    border-radius: 16px;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    box-shadow:
        0 0 0 1px rgba(0, 230, 118, 0.06),
        0 8px 24px rgba(0, 0, 0, 0.40),
        0 0 30px rgba(0, 230, 118, 0.08);
    transition: var(--transition);
}

.app-slide:hover {
    transform: translateY(-7px);
    border-color: rgba(0, 230, 118, 0.38);
    box-shadow:
        0 0 0 1px rgba(0, 230, 118, 0.18),
        0 16px 40px rgba(0, 0, 0, 0.50),
        0 0 55px rgba(0, 230, 118, 0.20);
}

.app-img-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
    background: #060e18;
    border: 1px solid rgba(0, 230, 118, 0.10);
    box-shadow: inset 0 2px 12px rgba(0, 0, 0, 0.40);
}

.app-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.5s ease, opacity 0.3s ease;
    opacity: 0.92;
}

.app-slide:hover .app-img {
    transform: scale(1.07);
    opacity: 1;
}

.app-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #e2e8f0;
    text-align: center;
    line-height: 1.3;
    letter-spacing: 0.3px;
}


.app-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.app-dots .app-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #cbd5e1;
    cursor: pointer;
    transition: var(--transition);
}

.app-dots .app-dot.active {
    background-color: var(--primary-green);
    width: 20px;
    border-radius: 4px;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
        padding-top: 40px;
    }

    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-desc {
        max-width: 600px;
    }

    .hero-right {
        flex-direction: column-reverse;
        gap: 24px;
    }

    .hero-badges-col {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .hero-badge-item {
        min-width: 140px;
    }

    .hero-stats-grid {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }

    .hero-stat-item {
        flex: none;
        min-width: 140px;
    }

    .hero-stat-divider {
        display: none;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px 16px;
    }

    .feature-card:nth-child(3)::after,
    .feature-card:nth-child(6)::after {
        display: none !important;
    }

    .product-card {
        flex: 0 0 calc((100% - 20px) / 2);
        width: calc((100% - 20px) / 2);
    }

    .industries-container {
        flex-direction: column;
        align-items: stretch;
        gap: 40px;
    }

    .industries-intro {
        max-width: 100%;
        text-align: center;
    }

    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .stats-bar-container {
        flex-wrap: wrap;
        gap: 24px;
        justify-content: center;
        padding: 30px;
    }

    .stat-item {
        flex: none;
        width: 45%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 16px;
        justify-content: flex-start;
    }

    .stat-item:nth-child(even) {
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        padding-left: 20px;
    }

    .stat-item:nth-child(5) {
        border-bottom: none;
        padding-bottom: 0;
        width: 100%;
        justify-content: center;
        border-left: none;
        padding-left: 0;
    }

    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-bottom: none;
        padding-bottom: 0;
    }

    .timeline-track {
        left: 5%;
        right: 5%;
        top: 60px;
    }

    .timeline-grid {
        gap: 16px;
    }

    .timeline-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .timeline-desc {
        font-size: 11px;
    }

    .packaging-container {
        flex-direction: column;
        align-items: stretch;
        gap: 40px;
    }

    .packaging-intro {
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        flex: 1;
    }

    .packaging-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .why-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 16px;
    }

    .why-card::after {
        display: none !important;
    }

    .specs-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .spec-image-wrapper {
        max-width: 280px;
        margin: 0 auto;
    }

    .app-slide {
        flex: 0 0 240px;
    }
}

@media (max-width: 768px) {

    .nav-menu,
    .nav-actions .btn {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .header {
        padding: 12px 0;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-badges-col {
        display: none;
    }

    .hero-stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 0 8px;
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-stat-item {
        justify-content: flex-start;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 12px;
    }

    .feature-card::after {
        display: none !important;
    }

    .feature-card:nth-child(odd) {
        border-right: 1px solid #e2e8f0;
    }

    .footer-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

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

    .stat-item {
        width: 100% !important;
        border-left: none !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        padding: 0 0 16px 0 !important;
        justify-content: center !important;
    }

    .stat-item:last-child {
        border-bottom: none !important;
        padding-bottom: 0 !important;
    }

    .timeline-track {
        display: none;
    }

    .timeline-grid {
        display: flex;
        flex-direction: column;
        gap: 32px;
        align-items: stretch;
    }

    .timeline-item {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 20px;
    }

    .timeline-icon-wrapper {
        flex-shrink: 0;
        width: 72px;
        height: 72px;
    }

    .timeline-content {
        margin-top: 0;
    }

    .timeline-desc {
        margin: 0;
        max-width: 100%;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 12px;
    }

    .spec-table-card {
        padding: 24px 16px;
    }

    .spec-table th,
    .spec-table td {
        padding: 10px 6px;
        font-size: 12px;
    }

    .app-slide {
        flex: 0 0 220px;
        padding: 16px 12px;
    }

    .app-title {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .products-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        border-right: none !important;
        border-bottom: 1px solid #f1f5f9;
        padding-bottom: 20px;
    }

    .feature-card:last-child {
        border-bottom: none;
    }

    .product-slide {
        flex: 0 0 280px;
        height: 380px;
        padding: 30px 24px;
    }

    .slide-voltage {
        font-size: 36px;
    }

    .slide-title {
        font-size: 18px;
    }

    .slide-img {
        width: 180px;
    }

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

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

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

    .app-slide {
        flex: 0 0 200px;
    }
}

.wdthlogo img {
    width: 120px;
}

/* ==========================================================================
   OEM CTA & Trusted Brands Section
   ========================================================================== */
.oem-cta-section {
    background-color: var(--bg-dark);
    padding: 60px 0 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.oem-cta-banner {
    position: relative;
    background-color: #050a10;
    border: 1px solid rgba(0, 230, 118, 0.15);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* Glowing green backlighting */
.oem-glow-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.08) 0%, rgba(5, 10, 16, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.oem-cta-left,
.oem-cta-middle,
.oem-cta-right {
    position: relative;
    z-index: 2;
}

.oem-cta-left {
    flex: 1;
    max-width: 380px;
}

.oem-cta-title {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--text-white);
    margin-bottom: 12px;
}

.oem-cta-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-muted);
}

.oem-cta-middle {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1.2;
    max-width: 480px;
}

.oem-feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.oem-feature-icon-wrapper {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px dashed rgba(0, 230, 118, 0.35);
    background: rgba(0, 230, 118, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.1);
    flex-shrink: 0;
}

.oem-feature-icon {
    display: block;
}

.oem-feature-content {
    text-align: left;
}

.oem-feature-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 2px;
}

.oem-feature-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    color: var(--text-muted);
}

.oem-cta-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 260px;
}

.oem-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    border-radius: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.oem-btn-primary {
    background-color: var(--primary-green);
    color: var(--text-dark);
    border: none;
    box-shadow: 0 4px 14px rgba(0, 230, 118, 0.2);
}

.oem-btn-primary:hover {
    background-color: var(--primary-green-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 230, 118, 0.35);
}

.oem-btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.oem-btn-secondary:hover {
    border-color: var(--primary-green);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.1);
}

/* Logos Bar Styling */
.oem-logos-bar {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
}

.oem-logos-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    text-align: left;
    min-width: 140px;
}

.oem-logos-divider {
    width: 1px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.12);
    margin: 0 30px;
}

.oem-logos-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    padding: 5px 0;
}

.oem-logos-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
}

.oem-logo-item {
    color: var(--text-muted);
    opacity: 0.5;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.oem-logo-item:hover {
    color: var(--text-white);
    opacity: 1;
    transform: scale(1.05);
}

/* Responsive adjustments for OEM Section */
@media (max-width: 1024px) {
    .oem-cta-banner {
        flex-direction: column;
        align-items: stretch;
        padding: 30px;
        gap: 24px;
    }

    .oem-cta-left,
    .oem-cta-middle,
    .oem-cta-right {
        max-width: 100%;
        width: 100%;
    }

    .oem-logos-bar {
        flex-direction: row;
        gap: 20px;
        align-items: center;
        text-align: center;
    }

    .oem-logos-title {
        text-align: center;
    }

    .oem-logos-divider {
        display: none;
    }

    .oem-logos-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

/* ==========================================================================
   Footer CTA Section
   ========================================================================== */
.footer-cta-section {
    background-color: var(--bg-dark);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-cta-banner {
    position: relative;
    background-color: #050a10;
    border: 1px solid rgba(0, 230, 118, 0.15);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* Glowing green backlighting */
.footer-cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.08) 0%, rgba(5, 10, 16, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.footer-cta-left {
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 2;
    flex: 1.5;
}

.footer-cta-icon-wrapper {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 1.5px dashed rgba(0, 230, 118, 0.35);
    background: rgba(0, 230, 118, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 230, 118, 0.15);
    flex-shrink: 0;
}

.footer-cta-text {
    text-align: left;
}

.footer-cta-title {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--text-white);
    margin-bottom: 8px;
}

.footer-cta-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-muted);
}

.footer-cta-right {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.footer-cta-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 28px;
    border-radius: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
    gap: 10px;
}

.footer-cta-btn-primary {
    background-color: var(--primary-green);
    color: var(--text-dark);
    border: none;
    box-shadow: 0 4px 14px rgba(0, 230, 118, 0.2);
}

.footer-cta-btn-primary:hover {
    background-color: var(--primary-green-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 230, 118, 0.35);
}

.footer-cta-btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-cta-btn-secondary:hover {
    border-color: var(--primary-green);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.1);
}

/* ==========================================================================
   Main Footer Styling
   ========================================================================== */
.main-footer {
    background-color: #03070a;
    padding: 60px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
}

.footer-grid-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.footer-col-brand {
    padding-right: 20px;
}

.footer-logo-wrapper {
    margin-bottom: 20px;
}

.footer-logo-svg {
    display: block;
}

.footer-logo-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 4px;
}

.footer-brand-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-muted);
}

.footer-col-title {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
    text-transform: capitalize;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
}

.footer-links a::before {
    content: "\203A";
    font-size: 14px;
    color: var(--primary-green);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    margin-top: -2px;
}

.footer-links a:hover {
    color: var(--primary-green);
}

.footer-links a:hover::before {
    transform: translateX(3px);
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    color: var(--text-muted);
}

.footer-contact-list li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-list li a:hover {
    color: var(--primary-green);
}

.contact-icon {
    flex-shrink: 0;
    opacity: 0.7;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
    background-color: #020406;
}

.footer-bottom-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copyright {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-bottom-links a {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary-green);
}

.footer-divider-line {
    color: rgba(255, 255, 255, 0.15);
    font-size: 11px;
}

/* ==========================================================================
   Responsive adjustments for Footer Section
   ========================================================================== */
@media (max-width: 1024px) {
    .footer-cta-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        gap: 24px;
    }

    .footer-cta-left,
    .footer-cta-right {
        width: 100%;
    }

    .footer-cta-right {
        justify-content: flex-start;
    }

    .footer-grid-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .footer-col-brand {
        grid-column: span 3;
        max-width: 500px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .footer-cta-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .footer-cta-right {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-cta-btn {
        width: 100%;
    }

    .footer-grid-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-col-brand {
        grid-column: span 1;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .footer-bottom-flex {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

.footer-logo-img {
    width: 120px;
    height: auto;
    display: block;
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */

/* Hero Section */
.contact-hero-section {
    background-color: #050a10;
    position: relative;
    padding: 140px 0 120px;
    overflow: hidden;
}

.contact-hero-glow {
    position: absolute;
    top: 30%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.07) 0%, rgba(5, 10, 16, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.contact-hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.contact-hero-left {
    flex: 1.2;
    text-align: left;
}

.contact-hero-badge {
    color: var(--primary-green);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: inline-block;
}

.contact-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-white);
    margin-bottom: 20px;
}

.contact-hero-title .green-highlight {
    color: var(--primary-green);
}

.contact-hero-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 580px;
}

/* Hero Contact Features */
.contact-hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 20px;
}

.contact-hero-feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-hero-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px dashed rgba(0, 230, 118, 0.35);
    background: rgba(0, 230, 118, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.1);
    flex-shrink: 0;
}

.contact-hero-feature-text {
    text-align: left;
}

.contact-hero-feature-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 2px;
}

.contact-hero-feature-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    color: var(--text-muted);
}

/* Right Side: Charger neon ring display */
.contact-hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-charger-container {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.charger-neon-ring {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 2px solid var(--primary-green);
    box-shadow: 0 0 35px rgba(0, 230, 118, 0.5), inset 0 0 35px rgba(0, 230, 118, 0.2);
    pointer-events: none;
    animation: pulseRing 3s infinite ease-in-out;
}

.contact-charger-image {
    width: 280px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
}

/* Main Form Section - White Card Layout */
.contact-card-section {
    background-color: #f8fafc;
    padding: 0 0 50px;
}

.contact-main-card {
    background-color: #ffffff;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.06);
    padding: 60px;
    display: flex;
    gap: 60px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
    border: 1px solid #e2e8f0;
}

/* Info Column (Left) */
.contact-info-col {
    flex: 1;
    max-width: 340px;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.contact-info-title {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.contact-info-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13.5px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 36px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    flex-grow: 1;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.15);
}

.contact-detail-content {
    text-align: left;
}

.contact-detail-content h5 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.contact-detail-content p,
.contact-detail-content p a {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: #475569;
    text-decoration: none;
    transition: var(--transition);
}

.contact-detail-content p a:hover {
    color: var(--primary-green-hover);
}

/* Social links follow */
.contact-social-wrapper {
    margin-top: 40px;
    border-top: 1px solid #f1f5f9;
    padding-top: 24px;
}

.contact-social-wrapper h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 12px;
}

.contact-social-links {
    display: flex;
    gap: 12px;
}

.contact-social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    transition: var(--transition);
    text-decoration: none;
}

.contact-social-links a:hover {
    background-color: #0f172a;
    border-color: #0f172a;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Form Column (Right) */
.contact-form-col {
    flex: 2;
    border-left: 1px solid #f1f5f9;
    padding-left: 60px;
    text-align: left;
}

.contact-form-title {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 24px;
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    width: 100%;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.form-group.full-width {
    flex: none;
    width: 100%;
}

.form-group label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    background-color: #ffffff;
    color: #0f172a;
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
    width: 100%;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23475569'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #39b54a;
    box-shadow: 0 0 0 3px rgba(57, 181, 74, 0.12);
}

/* Mobile wrapper with prefix drop down */
.mobile-input-wrapper {
    display: flex;
    gap: 8px;
    width: 100%;
}

.mobile-input-wrapper select {
    width: 90px;
    flex-shrink: 0;
}

/* Checkbox Check Grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 20px;
    margin-top: 6px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    color: #475569;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 18px;
    width: 18px;
    border-radius: 4px;
    border: 1px solid #cbd5e1;
    background-color: #ffffff;
    transition: background-color 0.2s, border-color 0.2s;
}

.checkbox-container:hover input~.checkmark {
    border-color: #94a3b8;
}

.checkbox-container input:checked~.checkmark {
    background-color: #39b54a;
    border-color: #39b54a;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked~.checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 4px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Consent check spacing adjustment */
.consent-checkbox {
    margin-top: 10px;
    font-size: 13px;
    color: #475569;
}

/* Form actions (Submit & Callback Buttons) */
.form-actions-row {
    display: flex;
    gap: 16px;
    margin-top: 15px;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 28px;
    border-radius: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
    gap: 12px;
}

.submit-btn-primary {
    background-color: #39b54a;
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 14px rgba(57, 181, 74, 0.2);
    flex: 1.2;
    justify-content: center;
}

.submit-btn-primary:hover {
    background-color: #2ea03d;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(57, 181, 74, 0.35);
}

.submit-btn-secondary {
    background-color: transparent;
    color: #0f172a;
    border: 1px solid #cbd5e1;
    flex: 1;
    justify-content: center;
}

.submit-btn-secondary:hover {
    border-color: #39b54a;
    color: #39b54a;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(57, 181, 74, 0.08);
}

/* ==========================================================================
   Responsive Adjustments for Contact Page
   ========================================================================== */
@media (max-width: 1024px) {
    .contact-hero-container {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 48px;
    }

    .contact-hero-left {
        text-align: center;
    }

    .contact-hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-hero-features {
        max-width: 600px;
        margin: 0 auto;
    }

    .contact-main-card {
        flex-direction: column;
        padding: 40px;
        gap: 40px;
    }

    .contact-info-col {
        max-width: 100%;
    }

    .contact-form-col {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid #f1f5f9;
        padding-top: 40px;
    }
}

@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 38px;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .checkbox-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .form-actions-row {
        flex-direction: column;
        align-items: stretch;
    }

    .submit-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 32px;
    }

    .contact-hero-features {
        grid-template-columns: 1fr;
        max-width: 320px;
    }

    .charger-neon-ring {
        width: 240px;
        height: 240px;
    }

    .contact-charger-image {
        width: 200px;
    }

    .contact-main-card {
        padding: 24px;
    }
}

/* ==========================================================================
   Contact Extra Section (Why Contact, Map, Process)
   ========================================================================== */
.contact-extra-section {
    background-color: #f8fafc;
    padding: 20px 0 20px;
}

.extra-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.contact-location-box .extra-section-title {
    color: #000;
}

.extra-section-title.text-center {
    text-align: center;
}

.green-title-line {
    display: block;
    width: 40px;
    height: 3px;
    background-color: var(--primary-green);
    margin-bottom: 30px;
}

.why-contact-box .green-title-line {
    margin-left: auto;
    margin-right: auto;
}

/* Why Contact Box Style */
.why-contact-box {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #e2e8f0;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.why-contact-box .extra-section-title {
    color: #0f172a;
}

.why-contact-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.why-contact-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.why-contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(57, 181, 74, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px dashed rgba(57, 181, 74, 0.3);
    box-shadow: 0 0 15px rgba(57, 181, 74, 0.05);
}

.why-contact-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    color: #334155;
    line-height: 1.4;
    max-width: 140px;
}

.why-contact-divider {
    width: 1px;
    height: 60px;
    background-color: #e2e8f0;
    flex-shrink: 0;
}

/* Bottom Grid: Map & Process */
.contact-bottom-grid {
    /* display: grid; */
    grid-template-columns: 1.2fr 1.8fr;
    gap: 30px;
}

/* Location Box (Left) */
.contact-location-box {
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.contact-map-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 10px;
    height: 240px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
}

.map-location-label-card {
    position: absolute;
    bottom: 10px;
    left: 60px;
    right: 16px;
    display: inline-table;
    background-color: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 14px 16px;
    backdrop-filter: blur(5px);
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.map-location-label-card h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 4px;
}

.map-location-label-card p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    line-height: 1.4;
    color: var(--text-muted);
}

/* Process Box (Right) */
.contact-process-box {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.contact-process-box .extra-section-title {
    color: #0f172a;
}

.process-timeline-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    margin-top: 20px;
    position: relative;
}

/* Horizontal dotted connector line behind steps */
.process-timeline-wrapper::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 30px;
    right: 30px;
    height: 1.5px;
    background-image: linear-gradient(to right, rgba(57, 181, 74, 0.3) 50%, rgba(255, 255, 255, 0) 0%);
    background-position: top;
    background-size: 8px 1px;
    background-repeat: repeat-x;
    z-index: 1;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    gap: 12px;
}

.process-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1.5px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.process-step:hover .process-icon-circle {
    border-color: var(--primary-green);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(57, 181, 74, 0.15);
}

.process-content h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 2px;
}

.process-content p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 9px;
    font-weight: 600;
    color: #64748b;
    line-height: 1.3;
}

.process-bottom-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    margin-top: auto;
    padding-top: 30px;
}

/* ==========================================================================
   Responsive Adjustments for Extra Section
   ========================================================================== */
@media (max-width: 1024px) {
    .why-contact-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .why-contact-item {
        flex: none;
        width: calc(33.333% - 20px);
    }

    .why-contact-divider {
        display: none;
    }

    .contact-bottom-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .why-contact-item {
        width: calc(50% - 20px);
    }

    .process-timeline-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .process-timeline-wrapper::before {
        display: none;
    }

    .process-step {
        flex-direction: row;
        text-align: left;
        align-items: center;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .why-contact-item {
        width: 100%;
    }

    .why-contact-box {
        padding: 24px;
    }

    .contact-location-box,
    .contact-process-box {
        padding: 24px;
    }
}

/* ==========================================================================
   About Page Styles
   ========================================================================== */

/* Hero Section */
.about-hero-section {
    background-color: #050a10;
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
}

.about-hero-stripes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    pointer-events: none;
    z-index: 1;
    opacity: 0.15;
}

.about-hero-stripes span {
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(57, 181, 74, 0) 0%, rgba(57, 181, 74, 1) 50%, rgba(57, 181, 74, 0) 100%);
}

.about-hero-glow {
    position: absolute;
    top: 20%;
    right: -10%;
    width: 60%;
    height: 70%;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.08) 0%, rgba(5, 10, 16, 0) 70%);
    pointer-events: none;
    z-index: 2;
}

.about-hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 3;
}

.about-hero-left {
    flex: 1.2;
    text-align: left;
}

.about-hero-badge {
    color: var(--primary-green);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: inline-block;
}

.about-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-white);
    margin-bottom: 20px;
}

.about-hero-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 580px;
}

/* Hero Features */
.about-hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
}

.about-hero-feat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.about-hero-feat-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 230, 118, 0.08);
    border: 1px solid rgba(0, 230, 118, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-feat-item h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.4;
}

/* Hero Right Image Display */
.about-hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-charger-container {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.about-charger-glow-ring {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 2px solid var(--primary-green);
    box-shadow: 0 0 35px rgba(0, 230, 118, 0.5), inset 0 0 35px rgba(0, 230, 118, 0.2);
    pointer-events: none;
    animation: pulseRing 3s infinite ease-in-out;
}

.about-charger-image {
    width: 300px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
}

/* Our Story Section */
.about-story-section {
    background-color: #ffffff;
    padding: 60px 0;
    border-bottom: 1px solid #e2e8f0;
}

.about-story-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.about-story-left {
    flex: 1.2;
    text-align: left;
}

.about-section-badge {
    color: var(--primary-green);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: inline-block;
}

.about-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 12px;
}

.about-story-p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    line-height: 1.65;
    color: #475569;
    margin-bottom: 20px;
}

.about-story-quote {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-green);
    border-left: 3px solid var(--primary-green);
    padding-left: 16px;
    margin: 30px 0 0;
    line-height: 1.5;
}

/* Story Right Image Grid */
.about-story-right {
    flex: 1;
}

.story-image-grid {
    display: flex;
    gap: 20px;
}

.story-image-card {
    flex: 1;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 380px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.story-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-image-card:hover img {
    transform: scale(1.04);
}

.story-image-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background-color: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 12px 14px;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.story-image-badge span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.3;
}

/* About Highlights Section (5 boxes in a row) */
.about-highlights-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.about-highlights-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.about-highlight-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.02);
}

.about-highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
    border-color: rgba(57, 181, 74, 0.3);
}

.highlight-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background-color: rgba(57, 181, 74, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.about-highlight-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.about-highlight-card p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    line-height: 1.5;
    color: #475569;
    margin-bottom: 16px;
    flex-grow: 1;
}

.highlight-link {
    color: #334155;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.about-highlight-card:hover .highlight-link {
    color: var(--primary-green);
    transform: translateX(4px);
}

/* Our Strength In Numbers Section (Stats Banner) */
.about-stats-section {
    background-color: #f8fafc;
    padding: 80px 0 40px;
}

.about-stats-banner {
    background-color: #000000;
    border-radius: 16px;
    padding: 40px 48px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stats-glow-effect {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(57, 181, 74, 0.04) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.stats-banner-title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 32px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stats-banner-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.stat-banner-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.stat-banner-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(57, 181, 74, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(57, 181, 74, 0.2);
}

.stat-banner-value {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-green);
}

.stat-banner-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
}

.stat-banner-divider {
    width: 1px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

/* Our Journey Section */
.about-journey-section {
    background-color: #f8fafc;
    padding: 60px 0;
}

.journey-timeline-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-top: 48px;
    position: relative;
}

.journey-timeline-wrapper::before {
    content: "";
    position: absolute;
    top: 25px;
    left: 40px;
    right: 40px;
    height: 1.5px;
    background-image: linear-gradient(to right, rgba(57, 181, 74, 0.3) 50%, rgba(255, 255, 255, 0) 0%);
    background-position: top;
    background-size: 8px 1px;
    background-repeat: repeat-x;
    z-index: 1;
}

.journey-node {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    gap: 12px;
}

.journey-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03);
    transition: var(--transition);
}

.journey-node:hover .journey-icon-circle {
    border-color: var(--primary-green);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(57, 181, 74, 0.18);
}

.journey-year {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-green);
}

.journey-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.02);
    min-height: 110px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.journey-card h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 800;
    color: #0f172a;
}

.journey-card p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    line-height: 1.45;
    color: #64748b;
}

/* Values, Vision & Mission Section */
.about-values-section {
    background-color: #f8fafc;
    padding: 60px 0 100px;
}

.values-grid-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 30px;
}

/* Values List (LHS) */
.values-list-col {
    text-align: left;
}

.values-col-title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.value-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(57, 181, 74, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-text h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 2px;
}

.value-text p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    color: #64748b;
}

/* Vision Card (Middle) */
.vision-card {
    background-color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.vision-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(57, 181, 74, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px dashed rgba(57, 181, 74, 0.3);
    margin-bottom: 24px;
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.1);
}

.vision-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 6px;
}

.vision-card p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Mission Card (RHS) */
.mission-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.mission-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(57, 181, 74, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px dashed rgba(57, 181, 74, 0.3);
    margin-bottom: 24px;
}

.mission-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

.mission-card p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

/* ==========================================================================
   Responsive Adjustments for About Page
   ========================================================================== */
@media (max-width: 1200px) {
    .about-highlights-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .about-hero-container {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 48px;
    }

    .about-hero-left {
        text-align: center;
    }

    .about-hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .about-hero-features {
        max-width: 600px;
        margin: 0 auto;
    }

    .about-story-container {
        flex-direction: column;
        gap: 48px;
    }

    .about-story-left {
        text-align: center;
    }

    .about-story-quote {
        border-left: none;
        border-top: 2px solid var(--primary-green);
        border-bottom: 2px solid var(--primary-green);
        padding: 16px 0;
        text-align: center;
    }

    .stats-banner-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .stat-banner-item {
        flex: none;
        width: calc(33.333% - 20px);
    }

    .stat-banner-divider {
        display: none;
    }

    .values-grid-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 38px;
    }

    .about-hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-section-title {
        font-size: 30px;
    }

    .story-image-grid {
        flex-direction: column;
        max-width: 320px;
        margin: 0 auto;
    }

    .story-image-card {
        height: 280px;
    }

    .about-highlights-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-banner-item {
        width: calc(50% - 20px);
    }

    .journey-timeline-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
    }

    .journey-timeline-wrapper::before {
        display: none;
    }

    .journey-node {
        flex-direction: row;
        text-align: left;
        align-items: center;
        gap: 16px;
    }

    .journey-card {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 32px;
    }

    .about-hero-features {
        grid-template-columns: 1fr;
        max-width: 240px;
    }

    .about-charger-glow-ring {
        width: 240px;
        height: 240px;
    }

    .about-charger-image {
        width: 200px;
    }

    .about-highlights-wrapper {
        grid-template-columns: 1fr;
    }

    .stat-banner-item {
        width: 100%;
    }
}

/* ==========================================================================
   Products Page Styles
   ========================================================================== */

/* Hero Section */
.products-hero-section {
    background:
        linear-gradient(90deg, rgba(5, 10, 16, 0.96) 0%, rgba(7, 14, 22, 0.88) 42%, rgba(7, 14, 22, 0.42) 62%, rgba(7, 14, 22, 0.16) 100%),
        url('../images/img_3.png') center/cover no-repeat;
    position: relative;
    padding: 116px 0 54px;
    overflow: hidden;
}

.products-hero-grid {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.08;
    pointer-events: none;
}

.products-hero-glow {
    position: absolute;
    inset: auto -6% -28% auto;
    width: 58%;
    height: 88%;
    background:
        radial-gradient(circle at center, rgba(140, 242, 42, 0.22) 0%, rgba(140, 242, 42, 0.1) 26%, rgba(5, 10, 16, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.products-hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    position: relative;
    z-index: 2;
}

.products-hero-left {
    flex: 0 1 48%;
    text-align: left;
}

.products-hero-badge {
    color: #7fe22c;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.9px;
    margin-bottom: 10px;
    display: inline-block;
    text-transform: uppercase;
}

.products-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 54px;
    font-weight: 800;
    line-height: 1.02;
    color: var(--text-white);
    max-width: 520px;
    margin-bottom: 12px;
}

.products-hero-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.76);
    max-width: 430px;
    margin-bottom: 18px;
}

.products-hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.products-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1px solid transparent;
}

.products-hero-btn-primary {
    background: #57c92d;
    color: #061019;
    box-shadow: 0 10px 24px rgba(87, 201, 45, 0.22);
}

.products-hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(87, 201, 45, 0.28);
}

.products-hero-btn-secondary {
    color: #f8fafc;
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
}

.products-hero-btn-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
}

.products-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    max-width: 620px;
}

.products-hero-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.products-hero-stat-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7fe22c;
    background: rgba(127, 226, 44, 0.08);
    border: 1px solid rgba(127, 226, 44, 0.18);
    flex-shrink: 0;
}

.products-hero-stat-text strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
}

.products-hero-stat-text span {
    display: block;
    margin-top: 3px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 10px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.62);
}

/* Hero Right Image */
.products-hero-right {
    flex: 0 1 52%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.products-charger-container {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: flex-end;
    width: min(100%, 560px);
    min-height: 330px;
}

.products-charger-floor-glow {
    position: absolute;
    left: 50%;
    bottom: 8px;
    transform: translateX(-50%);
    width: min(100%, 400px);
    height: 58px;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, rgba(127, 226, 44, 0.6) 0%, rgba(127, 226, 44, 0.2) 38%, rgba(5, 10, 16, 0) 72%);
    filter: blur(8px);
}

.products-charger-glow-ring {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 2px solid var(--primary-green);
    box-shadow: 0 0 35px rgba(0, 230, 118, 0.5), inset 0 0 35px rgba(0, 230, 118, 0.2);
    pointer-events: none;
    animation: pulseRing 3s infinite ease-in-out;
}

.products-charger-image {
    width: min(100%, 500px);
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 22px 38px rgba(0, 0, 0, 0.45));
}

/* Floating Selector Section */
.product-selector-section {
    background-color: #f8fafc;
    padding: 30px 0 30px;
    position: relative;
}

.product-selector-wrapper {
    display: flex;
    gap: 30px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.product-selector-card {
    flex: 1;
    background-color: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.03);
}

.product-selector-card.active {
    border-color: var(--primary-green);
    box-shadow: 0 15px 35px rgba(57, 181, 74, 0.1);
}

.product-selector-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}

.selector-card-img-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: #f8fafc;
    border-radius: 12px;
    padding: 8px;
}

.selector-card-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.selector-card-content {
    text-align: left;
    flex-grow: 1;
}

.selector-card-content h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1.1;
}

.selector-card-content h5 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.selector-card-content p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11.5px;
    color: #64748b;
}

.selector-card-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    transition: var(--transition);
    text-decoration: none;
    flex-shrink: 0;
}

.product-selector-card:hover .selector-card-arrow {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: #ffffff;
}

.product-selector-card.active .selector-card-arrow {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: #ffffff;
}

/* Product Range Detailed Section */
.product-range-section {
    padding: 50px 0 50px;
    background-color: #ffffff;
}

.product-range-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    color: #64748b;
    max-width: 650px;
    margin: 15px auto 0;
    line-height: 1.6;
}

.product-range-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 55px;
}

.range-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.range-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 230, 118, 0.35);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 0 25px rgba(0, 230, 118, 0.12);
}

.featured-range-card {
    border: 2px solid #00e676;
    background: linear-gradient(180deg, #f8fffb 0%, #ffffff 100%);
    box-shadow: 0 10px 30px rgba(0, 230, 118, 0.12);
}

.featured-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #00e676;
    color: #0b131f;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11.5px;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.range-card-header {
    text-align: center;
}

.range-card-badge {
    display: inline-block;
    background-color: rgba(0, 230, 118, 0.1);
    color: #00a854;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 750;
    padding: 4px 14px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.range-img-wrapper {
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.range-img {
    max-height: 150px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

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

.range-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.range-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 15px;
}

.range-card-body {
    border-top: 1px dashed #e2e8f0;
    border-bottom: 1px dashed #e2e8f0;
    padding: 22px 0;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-block-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 750;
    color: #1e293b;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.ratings-pills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.rating-pill {
    background-color: #f1f5f9;
    color: #0f172a;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.range-card:hover .rating-pill {
    background-color: #e8fcf1;
    border-color: rgba(0, 230, 118, 0.3);
    color: #008a43;
}

.suitable-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.suitable-list li {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    color: #475569;
    position: relative;
    padding-left: 18px;
}

.suitable-list li::before {
    content: "•";
    color: #00e676;
    font-size: 18px;
    position: absolute;
    left: 4px;
    top: -3px;
}

.range-card-footer {
    text-align: center;
}

.range-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 13.5px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 991px) {
    .product-range-grid {
        grid-template-columns: repeat(1, 1fr);
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Inside Charger Section */
.inside-charger-section {
    position: relative;
    padding: 24px 0 54px;
    background:
        radial-gradient(circle at 50% 50%, rgba(57, 181, 74, 0.12), transparent 34%),
        linear-gradient(180deg, #030709 0%, #06110c 100%);
    overflow: hidden;
}

.inside-charger-grid {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 26px 26px;
    opacity: 0.08;
    pointer-events: none;
}

.inside-charger-shell {
    position: relative;
    z-index: 1;
    padding: 18px 22px 26px;
    border: 1px solid rgba(140, 242, 42, 0.12);
    border-radius: 22px;
    background:
        radial-gradient(circle at 50% 48%, rgba(57, 181, 74, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(9, 17, 14, 0.92), rgba(5, 11, 9, 0.96));
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
}

.inside-charger-topbar {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.inside-charger-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.inside-charger-badge-icon {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #7fe22c;
    color: #07100a;
    font-size: 11px;
    font-weight: 900;
}

.inside-charger-layout {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(400px, 520px) minmax(260px, 1fr);
    align-items: center;
    gap: 8px;
}

.inside-feature-column {
    display: flex;
    flex-direction: column;
    gap: 34px;
    justify-content: center;
}

.inside-feature-item {
    position: relative;
    display: grid;
    grid-template-columns: 26px 1fr;
    gap: 12px;
    align-items: flex-start;
}

.inside-feature-number {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(127, 226, 44, 0.12);
    border: 1px solid rgba(127, 226, 44, 0.22);
    color: #7fe22c;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 800;
    margin-top: 2px;
}

.inside-feature-copy h3 {
    margin: 0 0 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}

.inside-feature-copy p {
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.66);
}

.inside-feature-connector {
    position: absolute;
    top: 12px;
    width: 156px;
    height: 34px;
    pointer-events: none;
}

.inside-feature-connector::before,
.inside-feature-connector::after {
    content: '';
    position: absolute;
}

.inside-feature-connector::before {
    top: 16px;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(127, 226, 44, 0.95), rgba(127, 226, 44, 0.2));
    box-shadow: 0 0 10px rgba(127, 226, 44, 0.14);
}

.inside-feature-connector::after {
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #7fe22c;
    background: #041008;
    box-shadow: 0 0 12px rgba(127, 226, 44, 0.2);
}

.inside-feature-column-left .inside-feature-connector {
    right: -144px;
}

.inside-feature-column-left .inside-feature-connector::before {
    left: 0;
}

.inside-feature-column-left .inside-feature-connector::after {
    right: -3px;
}

.inside-feature-column-right .inside-feature-connector {
    left: -144px;
}

.inside-feature-column-right .inside-feature-connector::before {
    right: 0;
    background: linear-gradient(90deg, rgba(127, 226, 44, 0.2), rgba(127, 226, 44, 0.95));
}

.inside-feature-column-right .inside-feature-connector::after {
    left: -3px;
}

.inside-feature-item-1 .inside-feature-connector,
.inside-feature-item-6 .inside-feature-connector {
    width: 164px;
}

.inside-feature-item-2 .inside-feature-connector,
.inside-feature-item-5 .inside-feature-connector {
    width: 178px;
}

.inside-feature-item-3 .inside-feature-connector,
.inside-feature-item-4 .inside-feature-connector {
    width: 170px;
}

.inside-feature-item-1 .inside-feature-connector,
.inside-feature-item-4 .inside-feature-connector {
    top: 10px;
}

.inside-feature-item-2 .inside-feature-connector,
.inside-feature-item-5 .inside-feature-connector {
    top: 14px;
}

.inside-feature-item-3 .inside-feature-connector,
.inside-feature-item-6 .inside-feature-connector {
    top: 18px;
}

.inside-charger-visual-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.inside-charger-visual {
    position: relative;
    width: min(100%, 520px);
    min-height: 320px;
}

.inside-visual-glow {
    position: absolute;
    inset: 18% 12% 16%;
    background: radial-gradient(circle at center, rgba(127, 226, 44, 0.24), rgba(127, 226, 44, 0.08) 32%, rgba(127, 226, 44, 0) 74%);
    filter: blur(10px);
}

.inside-visual-bottom-unit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: auto;
    border-radius: 12px;
}

.inside-visual-bottom-unit::before,
.inside-visual-bottom-unit::after {
    content: '';
    position: absolute;
    top: 44px;
    width: 84px;
    height: 1px;
    background: linear-gradient(90deg, rgba(127, 226, 44, 0.8), rgba(127, 226, 44, 0));
    opacity: 0.6;
}

.inside-visual-bottom-unit::before {
    left: -64px;
}

.inside-visual-bottom-unit::after {
    right: -64px;
    transform: scaleX(-1);
}

.inside-charger-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.46));
}

.inside-visual-beam {
    display: none;
}

@media (max-width: 1199px) {
    .inside-charger-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .inside-feature-column {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }

    .inside-feature-connector {
        display: none;
    }

    .inside-charger-visual {
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .inside-charger-section {
        padding: 20px 0 44px;
    }

    .inside-charger-shell {
        padding: 18px 16px 22px;
        border-radius: 18px;
    }

    .inside-charger-badge {
        font-size: 11px;
    }

    .inside-feature-column {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .inside-feature-copy h3 {
        font-size: 14px;
    }

    .inside-charger-visual {
        min-height: 260px;
    }

    .inside-visual-bottom-unit {
        width: 240px;
        height: 136px;
    }

    .inside-visual-beam {
        display: none;
    }
}

/* Why Choose Section */
.products-why-section {
    background-color: #f8fafc;
    padding: 50px 0 50px;
    border-bottom: 1px solid #e2e8f0;
}

.products-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 10px;
}

.products-why-item {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.02);
}

.products-why-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
    border-color: rgba(57, 181, 74, 0.3);
}

.products-why-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background-color: rgba(57, 181, 74, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.products-why-item h5 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.products-why-item p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: #475569;
}

/* Trusted Partners Section */
.trusted-partners-section {
    padding: 22px 0 32px;
    background: #f8fafc;
}

.trusted-partners-shell {
    position: relative;
    overflow: hidden;
    padding: 18px 20px 0;
    border-radius: 18px;
    background:
        radial-gradient(circle at 18% 20%, rgba(127, 226, 44, 0.12), transparent 22%),
        linear-gradient(180deg, #050a10 0%, #081119 100%);
    border: 1px solid rgba(127, 226, 44, 0.08);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

.trusted-partners-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 0.08;
    pointer-events: none;
}

.trusted-partners-top {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(240px, 0.95fr) minmax(0, 1.05fr);
    gap: 18px;
    align-items: center;
    padding-bottom: 16px;
}

.trusted-partners-copy {
    max-width: 280px;
}

.trusted-partners-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #7fe22c;
}

.trusted-partners-badge-dot {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background: #7fe22c;
    color: #07100a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 900;
}

.trusted-partners-title {
    margin: 0 0 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.02;
    color: #ffffff;
}

.trusted-partners-title span {
    color: #7fe22c;
}

.trusted-partners-desc {
    margin: 0;
    max-width: 260px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.7);
}

.trusted-partners-logos {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.trusted-logo-card {
    min-height: 46px;
    padding: 8px 10px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: #2b3440;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.08);
}

.trusted-partners-stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trusted-stat-item {
    padding: 14px 18px 16px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.trusted-stat-item:last-child {
    border-right: none;
}

.trusted-stat-item strong {
    display: block;
    margin-bottom: 4px;
    font-family: 'Outfit', sans-serif;
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    color: #7fe22c;
}

.trusted-stat-item span {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 10px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.72);
}

/* Technical Specifications Section */
.products-specs-section {
    background-color: #f8fafc;
    padding: 40px 0 40px;
    border-bottom: 1px solid #e2e8f0;
}

.specs-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
    text-align: left;
}

.specs-grid-container {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 50px;
    align-items: center;
    margin-top: 10px;
}

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

.specs-image-container {
    position: relative;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
    width: 100%;
    max-width: 400px;
}

.specs-image-container img {
    max-width: 370px;
    border-radius: 10px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

.specs-beam-glow {
    position: absolute;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(57, 181, 74, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.specs-table-col {
    width: 100%;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.specs-table th,
.specs-table td {
    padding: 16px 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    color: #000;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
}

.specs-table th {
    background-color: #0f172a;
    color: #ffffff;
    font-weight: 700;
}

.specs-table th:first-child {
    background-color: var(--primary-green);
}

.specs-table td:first-child {
    font-weight: 700;
    color: #0f172a;
    background-color: #f8fafc;
    width: 25%;
}

.specs-table tr:last-child td {
    border-bottom: none;
}

/* Applications Section */
.products-apps-section {
    background-color: #ffffff;
    padding: 100px 0;
}

.apps-grid-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.app-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.02);
}

.app-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
    border-color: rgba(57, 181, 74, 0.3);
}

.app-card-img-wrapper {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f8fafc;
    padding: 12px;
}

.app-card-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.app-card h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 800;
    color: #0f172a;
}

/* Need Help Choices Section (Footer CTA) */
.need-help-section {
    background-color: #ffffff;
    padding: 0 0 100px;
}

.need-help-banner {
    background-color: #000000;
    border-radius: 20px;
    padding: 40px 48px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.need-help-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 32px;
}

.need-help-left-block {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.need-help-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(0, 230, 118, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 230, 118, 0.2);
    flex-shrink: 0;
}

.need-help-text-block h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 6px;
}

.need-help-text-block p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13.5px;
    color: var(--text-muted);
}

.need-help-actions-block {
    display: flex;
    gap: 16px;
}

.need-help-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px 26px;
    border-radius: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    gap: 10px;
}

.need-help-btn-primary {
    background-color: var(--primary-green);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.25);
}

.need-help-btn-primary:hover {
    background-color: var(--primary-green-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 230, 118, 0.4);
}

.need-help-btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.need-help-btn-secondary:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
    transform: translateY(-1px);
}

/* Bottom Horizontal Badges Row */
.need-help-badges-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding-top: 32px;
}

.need-help-badge-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.badge-check-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(0, 230, 118, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 800;
    color: var(--text-white);
}

.badge-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 10.5px;
    color: var(--text-muted);
}

/* ==========================================================================
   Responsive Adjustments for Products Page
   ========================================================================== */
@media (max-width: 1200px) {
    .products-hero-section {
        padding: 108px 0 48px;
    }

    .products-hero-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .products-hero-left,
    .products-hero-right {
        flex: 1 1 auto;
        width: 100%;
    }

    .products-hero-right {
        justify-content: center;
    }

    .products-hero-title {
        font-size: 46px;
        max-width: 620px;
    }

    .products-hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 100%;
    }

    .trusted-partners-top {
        grid-template-columns: 1fr;
    }

    .trusted-partners-copy {
        max-width: 100%;
    }

    .trusted-partners-desc {
        max-width: 100%;
    }

    .products-charger-container {
        min-height: 280px;
    }

    .product-selector-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .products-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .specs-grid-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .specs-image-container {
        margin: 0 auto;
    }

    .apps-grid-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .need-help-badges-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .products-hero-section {
        padding: 96px 0 40px;
    }

    .products-hero-title {
        font-size: 38px;
    }

    .products-hero-desc {
        max-width: 100%;
    }

    .products-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .products-hero-btn {
        width: 100%;
    }

    .products-hero-stats {
        grid-template-columns: 1fr;
    }

    .trusted-partners-logos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trusted-partners-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .products-why-grid {
        grid-template-columns: 1fr;
    }

    .specs-table th,
    .specs-table td {
        padding: 12px 14px;
        font-size: 12px;
    }

    .apps-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .need-help-top-row {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
        text-align: center;
    }

    .need-help-left-block {
        flex-direction: column;
        text-align: center;
    }

    .need-help-actions-block {
        flex-direction: column;
    }

    .need-help-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .products-hero-title {
        font-size: 32px;
    }

    .products-hero-badge {
        font-size: 9px;
    }

    .products-hero-desc {
        font-size: 12px;
    }

    .products-hero-stat {
        padding: 9px 0;
    }

    .trusted-partners-section {
        padding: 18px 0 26px;
    }

    .trusted-partners-shell {
        padding: 16px 14px 0;
    }

    .trusted-partners-title {
        font-size: 28px;
    }

    .trusted-logo-card {
        font-size: 12px;
    }

    .trusted-partners-stats {
        grid-template-columns: 1fr;
    }

    .trusted-stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .trusted-stat-item:last-child {
        border-bottom: none;
    }

    .products-charger-glow-ring {
        width: 240px;
        height: 240px;
    }

    .products-charger-container {
        min-height: 220px;
    }

    .products-charger-image {
        width: 260px;
    }

    .product-selector-card {
        flex-direction: column;
        text-align: center;
    }

    .selector-content {
        text-align: center;
    }

    .apps-grid-container {
        grid-template-columns: 1fr;
    }
}
}

/* ==========================================================================
   OEM Solution Page Styles
   ========================================================================== */

/* Hero Section */
.oem-hero-section {
    background-color: #050a10;
    position: relative;
    padding: 200px 0 180px;
    overflow: hidden;
}

.oem-hero-glow {
    position: absolute;
    top: 10%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.08) 0%, rgba(5, 10, 16, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.oem-hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.oem-hero-left {
    flex: 1.2;
    text-align: left;
}

.oem-hero-badge {
    color: var(--primary-green);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: inline-block;
}

.oem-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-white);
    margin-bottom: 20px;
}

.oem-hero-title .green-text {
    color: var(--primary-green);
}

.oem-hero-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-muted);
    max-width: 580px;
    margin-bottom: 35px;
}

.oem-hero-actions {
    display: flex;
    gap: 16px;
}

/* Hero Right Image Box */
.oem-hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.oem-mockup-container {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.oem-glow-ring {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    border: 2px dashed rgba(0, 230, 118, 0.4);
    pointer-events: none;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
        
    }
}

.oem-charger-img {
    width: 230px;
    height: 230px;
    position: relative;
    bottom: 25px;
    object-fit: fill;
    z-index: 2;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
    /* margin-right: 0px; */
    border-radius: 50%;
}

.oem-box-img {
    width: 220px;
    height: auto;
    position: relative;
    z-index: 3;
    filter: drop-shadow(-15px 15px 30px rgba(0, 0, 0, 0.6));
    margin-top: 60px;
}

/* Floating Features Section */
.oem-features-section {
    background-color: #ffffff;
    padding: 30px 0 30px;
    position: relative;
}

.oem-features-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.oem-feature-card {
    background-color: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.03);
}

.oem-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.08);
    border-color: rgba(57, 181, 74, 0.3);
}

.oem-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(57, 181, 74, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--primary-green);
    flex-shrink: 0;
}

.oem-feature-card h6 {
    font-family: 'Outfit', sans-serif;
    font-size: 13.5px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
    line-height: 1.25;
}

.oem-feature-card p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    color: #64748b;
    line-height: 1.4;
}

/* Customization Options Section */
.oem-customization-section {
    background-color: #ffffff;
    padding: 20px 0 80px;
    border-bottom: 1px solid #e2e8f0;
}

.oem-custom-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    color: #475569;
    max-width: 700px;
    margin-bottom: 40px;
    text-align: left;
}

.custom-options-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.custom-option-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}

.custom-option-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(15, 23, 42, 0.06);
    border-color: rgba(57, 181, 74, 0.3);
}

.custom-card-img {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    width: 100%;
}

.custom-card-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.08));
}

.custom-option-card h6 {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
}

.custom-option-card p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    color: #64748b;
}

/* Checklist Box */
.customize-checklist-box {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px 48px;
    text-align: left;
}

.checklist-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 24px;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.checklist-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13.5px;
    color: #334155;
    font-weight: 500;
}

.checklist-check {
    color: var(--primary-green);
    font-weight: 800;
    font-size: 15px;
}

/* Process Section */
.oem-process-section {
    background-color: #f8fafc;
    padding: 40px 0 40px;
    border-bottom: 1px solid #e2e8f0;
}

.oem-process-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    color: #64748b;
    max-width: 650px;
    margin: 15px auto 0;
    line-height: 1.6;
}


.oem-process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 60px;
    position: relative;
}

.oem-process-timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: repeating-linear-gradient(to right, #e2e8f0, #e2e8f0 8px, transparent 8px, transparent 16px);
    z-index: 1;
}

.process-node {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 10px;
    position: relative;
    z-index: 2;
}

.process-step-num {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 800;
    color: #94a3b8;
    margin-bottom: 12px;
}

.process-node-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: var(--transition);
}

.process-node:hover .process-node-circle {
    border-color: var(--primary-green);
    box-shadow: 0 0 15px rgba(57, 181, 74, 0.3);
    transform: scale(1.1);
}

.process-node h6 {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.process-node p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11.5px;
    line-height: 1.5;
    color: #64748b;
    max-width: 160px;
}

/* Packaging Section */
.oem-packaging-section {
    background-color: #ffffff;
    padding: 100px 0;
    border-bottom: 1px solid #e2e8f0;
}

.oem-packaging-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.oem-packaging-left {
    flex: 1;
    text-align: left;
}

.oem-pack-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: #475569;
    margin-bottom: 30px;
}

.oem-packaging-right {
    flex: 1.5;
}

.oem-packaging-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.oem-pack-card {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}

.oem-pack-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
    border-color: rgba(57, 181, 74, 0.3);
}

.oem-pack-card img {
    height: 140px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
}

.oem-pack-card span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 800;
    color: #0f172a;
}

/* Trusted Logos Section */
.oem-trusted-section {
    background-color: #f8fafc;
    padding: 60px 0;
}

.trusted-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #64748b;
    margin-bottom: 30px;
    display: inline-block;
}

.trusted-logos-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.trusted-logo-item {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #cbd5e1;
    transition: var(--transition);
}

.trusted-logo-item:hover {
    color: #475569;
}

/* ==========================================================================
   Responsive Adjustments for OEM Solution Page
   ========================================================================== */
@media (max-width: 1200px) {
    .oem-features-wrapper {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .custom-options-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .oem-process-timeline {
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
    }

    .oem-process-timeline::before {
        display: none;
    }

    .process-node {
        flex-direction: row;
        text-align: left;
        align-items: center;
        gap: 20px;
        padding: 0;
    }

    .process-step-num {
        margin-bottom: 0;
        width: 30px;
        text-align: right;
    }

    .process-node-circle {
        margin-bottom: 0;
    }

    .process-node p {
        max-width: 100%;
    }

    .oem-packaging-container {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .oem-hero-title {
        font-size: 38px;
    }

    .oem-hero-actions {
        flex-direction: column;
    }

    .oem-features-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .custom-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .oem-packaging-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .oem-hero-title {
        font-size: 32px;
    }

    .oem-charger-img {
        width: 180px;
        margin-right: -20px;
    }

    .oem-box-img {
        width: 150px;
        margin-top: 40px;
    }

    .oem-features-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Customization Slider Layout */
.customization-section {
    background-color: #ffffff;
    padding: 50px 0;
    border-bottom: 1px solid #e2e8f0;
}

.customization-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 50px;
}

.customization-intro {
    flex: 1;
    text-align: left;
}

.customization-badge {
    color: var(--primary-green);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: inline-block;
}

.customization-title {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.customization-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: #475569;
    margin-bottom: 30px;
}

.customization-slider-container {
    flex: 1.8;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.customization-slider-wrapper {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    width: max-content;
}

.customization-slide {
    flex: 0 0 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.customization-img-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
    background: #0c1520;
    border: 1px solid rgba(0, 230, 118, 0.15);
    box-shadow:
        0 0 0 1px rgba(0, 230, 118, 0.06),
        0 8px 24px rgba(0, 0, 0, 0.40),
        0 0 30px rgba(0, 230, 118, 0.08);
    transition: var(--transition);
}

.customization-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0.93;
}

.customization-slide:hover .customization-img-wrapper {
    transform: translateY(-6px);
    border-color: rgba(0, 230, 118, 0.38);
    box-shadow:
        0 0 0 1px rgba(0, 230, 118, 0.18),
        0 16px 40px rgba(0, 0, 0, 0.50),
        0 0 50px rgba(0, 230, 118, 0.20);
}

.customization-slide:hover .customization-img {
    transform: scale(1.07);
    opacity: 1;
}

.customization-label-title {
    font-family: 'Outfit', sans-serif;
    font-size: 14.5px;
    font-weight: 800;
    color: #0f172a;
}

.customization-label-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11.5px;
    color: #64748b;
}


.customization-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.customization-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #cbd5e1;
    cursor: pointer;
    transition: var(--transition);
}

.customization-dot.active {
    background-color: var(--primary-green);
    transform: scale(1.2);
}

@media (max-width: 1200px) {
    .customization-container {
        flex-direction: column;
        gap: 40px;
    }

    .customization-slider-container {
        width: 100%;
    }
}

/* ==========================================================================
   Knowledge Center / Blog Styles
   ========================================================================== */

.blog-hero-section {
    background-color: #050a10;
    position: relative;
    padding: 160px 0 100px;
    overflow: visible;
}

.blog-hero-glow {
    position: absolute;
    top: 5%;
    right: -10%;
    width: 60%;
    height: 90%;
    background: radial-gradient(circle, rgba(57, 181, 74, 0.08) 0%, rgba(5, 10, 16, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.blog-hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.blog-hero-left {
    flex: 1.2;
    text-align: left;
}

.blog-hero-badge {
    color: var(--primary-green);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: inline-block;
}

.blog-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-white);
    margin-bottom: 20px;
}

.blog-hero-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-muted);
    max-width: 540px;
}

.blog-hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-charger-container {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.blog-charger-glow-ring {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(57, 181, 74, 0.12) 0%, rgba(57, 181, 74, 0) 70%);
    z-index: 1;
}

.blog-charger-image {
    width: 260px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
}

/* Floating Search Bar */
.blog-search-bar-container {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 600px;
    padding: 0 20px;
    z-index: 10;
}

.blog-search-bar-wrapper {
    background-color: #ffffff;
    border-radius: 99px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    padding: 6px 24px;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.blog-search-bar-wrapper:focus-within {
    border-color: var(--primary-green);
    box-shadow: 0 10px 30px rgba(57, 181, 74, 0.12);
}

.blog-search-bar-wrapper .search-icon {
    margin-right: 12px;
    flex-shrink: 0;
}

.blog-search-bar-wrapper input {
    width: 100%;
    border: none;
    outline: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    color: #0f172a;
    background: transparent;
    padding: 12px 0;
}

.blog-search-bar-wrapper input::placeholder {
    color: #94a3b8;
}

/* Featured Section */
.blog-featured-section {
    background-color: #f8fafc;
    padding: 100px 0 60px;
    border-bottom: 1px solid #e2e8f0;
}

.blog-section-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.featured-article-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.featured-card-left {
    flex: 1.2;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.featured-badge {
    background-color: rgba(57, 181, 74, 0.1);
    color: var(--primary-green);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 99px;
    margin-bottom: 20px;
}

.featured-title {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 16px;
}

.featured-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14.5px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 24px;
}

.featured-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    color: #64748b;
    margin-bottom: 32px;
}

.featured-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.featured-meta .meta-divider {
    color: #cbd5e1;
}

.featured-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #0f172a;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 99px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.featured-read-btn:hover {
    background-color: #1e293b;
    transform: translateY(-2px);
}

.featured-card-right {
    flex: 1;
    background-color: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border-left: 1px solid #e2e8f0;
}

.compare-visual-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.compare-image-box {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.compare-image-box .compare-img {
    max-height: 100px;
    width: auto;
    object-fit: contain;
    margin-bottom: 12px;
}

.compare-image-box .lead-acid-mock {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.compare-image-box .lead-acid-mock .lead-acid-text {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    margin-top: 8px;
}

.compare-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.compare-label.green {
    background-color: rgba(57, 181, 74, 0.1);
    color: var(--primary-green);
}

.compare-label.grey {
    background-color: #f1f5f9;
    color: #64748b;
}

.compare-vs-badge {
    background-color: #0f172a;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 800;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 4px solid #f1f5f9;
    z-index: 2;
}

/* Two-Column List & Sidebar */
.blog-list-section {
    background-color: #ffffff;
    padding: 50px 0 50px;
}

.blog-content-container {
    display: flex;
    gap: 50px;
}

.blog-articles-col {
    flex: 2.2;
    min-width: 0;
}

.blog-sidebar-col {
    flex: 1;
}

/* Full-width layout overrides */
.blog-content-container.blog-full-width {
    display: block;
}

.blog-content-container.blog-full-width .blog-articles-col {
    width: 100%;
}

.blog-content-container.blog-full-width .latest-articles-grid {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px) {
    .blog-content-container.blog-full-width .latest-articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-content-container.blog-full-width .latest-articles-grid {
        grid-template-columns: 1fr;
    }
}

.blog-section-title-wrapper {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.latest-article-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    transition: var(--transition);
    cursor: pointer;
}

.latest-article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    border-color: rgba(57, 181, 74, 0.3);
}

.article-img-wrapper {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: #f8fafc;
    border-bottom: 1px solid #f1f5f9;
    /* display: flex;
    align-items: center;
    justify-content: center; */
    padding: 10px;
}

.article-img-wrapper img {
    /* max-width: 100%; */
    width: 100%;
    transition: transform 0.5s ease;
    height: 250px;
    object-fit: contain;
}

.latest-article-card:hover .article-img-wrapper img {
    transform: scale(1.05);
}

.article-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

.article-category {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 10px;
    font-weight: 800;
    color: var(--primary-green);
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: inline-block;
}

.article-title {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.4;
    margin-bottom: 16px;
    flex-grow: 1;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11.5px;
    color: #64748b;
}

.article-meta .meta-divider {
    color: #e2e8f0;
}

.load-more-container {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.btn-load-more {
    background: transparent;
    border: 1px solid #cbd5e1;
    color: #475569;
    padding: 12px 28px;
    border-radius: 99px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-load-more:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
    transform: translateY(-2px);
}

/* Sidebar Widgets */
.sidebar-widget {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.widget-title {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2.5px;
    background-color: var(--primary-green);
    border-radius: 2px;
}

/* Categories Widget */
.widget-category-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.widget-category-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.widget-category-list li:last-child {
    border-bottom: none;
}

.widget-category-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    transition: var(--transition);
}

.widget-category-list li a svg {
    color: #94a3b8;
    transition: var(--transition);
}

.widget-category-list li:hover a {
    color: var(--primary-green);
}

.widget-category-list li:hover a svg {
    color: var(--primary-green);
}

.widget-category-list .count-badge {
    background-color: #f1f5f9;
    color: #64748b;
    font-family: 'Outfit', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    transition: var(--transition);
}

.widget-category-list li:hover .count-badge {
    background-color: rgba(57, 181, 74, 0.1);
    color: var(--primary-green);
}

.view-all-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-green);
    text-decoration: none;
    transition: var(--transition);
}

.view-all-link:hover {
    gap: 10px;
}

/* Newsletter Widget */
.newsletter-widget {
    background-color: #050a10;
    border: 1px solid #1e293b;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.newsletter-widget .widget-title {
    color: var(--text-white);
}

.newsletter-widget .widget-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.newsletter-form {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-input {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 14px 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13.5px;
    color: #ffffff;
    outline: none;
    transition: var(--transition);
}

.newsletter-input:focus {
    border-color: var(--primary-green);
    background-color: rgba(255, 255, 255, 0.08);
}

.newsletter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.newsletter-envelope-visual {
    position: absolute;
    bottom: -20px;
    right: -20px;
    pointer-events: none;
    z-index: 1;
}

/* Popular Articles Widget */
.popular-articles-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popular-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.popular-thumb {
    width: 70px;
    height: 52px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popular-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.popular-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.popular-title {
    font-family: 'Outfit', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    text-decoration: none;
    margin-bottom: 6px;
    transition: var(--transition);
}

.popular-title:hover {
    color: var(--primary-green);
}

.popular-meta {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    color: #64748b;
}

/* Help Widget */
.help-widget {
    background-color: rgba(57, 181, 74, 0.02);
    border: 1.5px dashed rgba(57, 181, 74, 0.25);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 35px 25px;
}

.help-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(57, 181, 74, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.help-widget h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 16.5px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
}

.help-widget p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 20px;
}

.help-contact-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-green);
    text-decoration: none;
    transition: var(--transition);
}

.help-contact-link:hover {
    gap: 10px;
}

/* Topic Banner Section */
.blog-topic-cta-section {
    background-color: #ffffff;
    padding: 0 0 100px;
}

.blog-topic-banner {
    background-color: #050a10;
    border-radius: 20px;
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.blog-topic-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(57, 181, 74, 0.08) 0%, rgba(5, 10, 16, 0) 70%);
    pointer-events: none;
}

.topic-banner-left {
    text-align: left;
}

.topic-banner-left h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.topic-banner-left p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14.5px;
    color: var(--text-muted);
}

.btn-outline-green {
    border: 1.5px solid var(--primary-green);
    color: var(--primary-green);
    background: transparent;
    padding: 14px 28px;
    border-radius: 99px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-outline-green:hover {
    background-color: var(--primary-green);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-outline-green .btn-pen-icon {
    opacity: 0.8;
}

.btn-outline-green .btn-arrow-icon {
    display: none;
}

.btn-outline-green:hover .btn-pen-icon {
    display: none;
}

.btn-outline-green:hover .btn-arrow-icon {
    display: inline-block;
}

/* Responsive adjustments for Blog */
@media (max-width: 992px) {
    .blog-content-container {
        flex-direction: column;
        gap: 50px;
    }

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

    .help-widget {
        grid-column: span 2;
    }

    .featured-article-card {
        flex-direction: column;
    }

    .featured-card-right {
        border-left: none;
        border-top: 1px solid #e2e8f0;
    }

    .blog-topic-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .topic-banner-left {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .blog-hero-container {
        flex-direction: column;
        text-align: center;
    }

    .blog-hero-left {
        text-align: center;
    }

    .blog-hero-title {
        font-size: 36px;
    }

    .latest-articles-grid {
        grid-template-columns: 1fr;
    }

    .blog-sidebar-col {
        grid-template-columns: 1fr;
    }

    .help-widget {
        grid-column: span 1;
    }
}

/* ==========================================================================
   Blog Details Page Styling
   ========================================================================== */

.blog-breadcrumb-wrapper {
    background-color: #f8fafc;
    padding: 24px 0;
    border-bottom: 1px solid #e2e8f0;
    margin-top: 70px;
    /* offset fixed header height */
    text-align: left;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
}

.breadcrumb-nav a {
    color: #64748b;
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-nav a:hover {
    color: var(--primary-green);
}

.breadcrumb-separator {
    color: #cbd5e1;
}

.breadcrumb-current {
    color: #0f172a;
    font-weight: 600;
}

.article-detail-section {
    background-color: #ffffff;
    padding: 60px 0 100px;
}

.blog-post-content {
    text-align: left;
}

.post-main-title {
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.25;
    color: #0f172a;
    margin-top: 12px;
    margin-bottom: 24px;
}

.post-author-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 40px;
}

.author-info {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13.5px;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-name {
    font-weight: 700;
    color: #0f172a;
}

.post-share-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.share-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    color: #64748b;
    margin-right: 4px;
}

.share-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    text-decoration: none;
    transition: var(--transition);
}

.share-btn:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
    background-color: rgba(57, 181, 74, 0.05);
    transform: translateY(-2px);
}

.post-featured-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    /* display: flex;
    align-items: center;
    justify-content: center; */
    padding: 40px;
    margin-bottom: 40px;
}

.post-featured-image-wrapper img {
    height: 100%;
    width: 100%;
    /* object-fit: contain; */
}

.post-body-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #334155;
}

.post-body-text p {
    margin-bottom: 24px;
}

.post-body-text h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin-top: 40px;
    margin-bottom: 16px;
}

.post-body-text blockquote {
    border-left: 4px solid var(--primary-green);
    background-color: #f8fafc;
    padding: 24px 30px;
    border-radius: 0 12px 12px 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17px;
    font-style: italic;
    font-weight: 500;
    line-height: 1.6;
    color: #1e293b;
    margin: 35px 0;
}

.post-specs-table-wrapper {
    overflow-x: auto;
    margin: 35px 0;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
}

.post-specs-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14.5px;
    text-align: left;
}

.post-specs-table th {
    background-color: #f8fafc;
    color: #0f172a;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    padding: 16px 20px;
    border-bottom: 2px solid #cbd5e1;
}

.post-specs-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #e2e8f0;
    color: #334155;
}

.post-specs-table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .blog-breadcrumb-wrapper {
        margin-top: 60px;
        padding: 16px 0;
    }

    .post-main-title {
        font-size: 28px;
    }

    .post-featured-image-wrapper {
        padding: 20px;
    }

    .post-body-text {
        font-size: 15px;
    }
}
}

/* ==========================================================================
   Industry Page Styles
   ========================================================================== */
.industry-hero-section {
    background-color: var(--bg-dark);
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.industry-hero-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.08) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.industry-hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 230, 118, 0.1);
    color: var(--primary-green);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 2px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.industry-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-white);
    max-width: 800px;
    margin: 0 auto 24px;
}

.industry-hero-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.industry-detail-section {
    background-color: #ffffff;
    padding: 100px 0;
}

.industry-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.industry-detail-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.industry-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
    border-color: rgba(57, 181, 74, 0.3);
}

.industry-detail-card .icon-wrapper {
    background: rgba(57, 181, 74, 0.05);
    color: var(--primary-green);
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: var(--transition);
}

.industry-detail-card:hover .icon-wrapper {
    background: var(--primary-green);
    color: var(--text-white);
}

.industry-detail-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
}

.industry-detail-card p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14.5px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.industry-spec-info {
    background: #f8fafc;
    border-radius: 12px;
    padding: 16px;
    margin-top: auto;
}

.industry-spec-info h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 800;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.industry-spec-info span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    color: #334155;
    font-weight: 500;
}

.industry-cta-section {
    background-color: var(--bg-dark);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.industry-cta-container {
    max-width: 700px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

.industry-cta-title {
    font-family: 'Outfit', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 20px;
}

.industry-cta-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .industry-detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .industry-detail-grid {
        grid-template-columns: 1fr;
    }

    .industry-hero-title {
        font-size: 36px;
    }

    .industry-cta-title {
        font-size: 30px;
    }
}

/* Frequently Asked Questions (FAQ) Section */
.faq-section {
    padding: 40px 0 40px;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.faq-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    color: #64748b;
    max-width: 650px;
    margin: 15px auto 0;
    line-height: 1.6;
}

.faq-grid {
    max-width: 860px;
    margin: 50px 0px 0px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.faq-card:hover {
    border-color: rgba(0, 230, 118, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05), 0 0 20px rgba(0, 230, 118, 0.08);
}

.faq-details {
    width: 100%;
}

.faq-question {
    padding: 22px 26px;
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: color 0.2s ease;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-card:hover .faq-question-text {
    color: #00a854;
}

.faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #f1f5f9;
    color: #475569;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-details[open] .faq-icon {
    background-color: #00e676;
    color: #0b131f;
    transform: rotate(180deg);
}

.faq-details[open] .faq-question {
    border-bottom: 1px solid #f1f5f9;
    color: #00a854;
}

.faq-answer {
    padding: 20px 26px 24px;
    background-color: #ffffff;
    animation: fadeInFaq 0.3s ease-in-out;
}

.faq-answer p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14.5px;
    color: #475569;
    line-height: 1.65;
    margin: 0;
}

@keyframes fadeInFaq {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

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

@media (max-width: 768px) {
    .faq-question {
        padding: 18px 20px;
        font-size: 15.5px;
    }

    .faq-answer {
        padding: 16px 20px 20px;
    }

    .faq-answer p {
        font-size: 13.5px;
    }
}

/* Why Choose OEM Manufacturing Section */
.why-oem-section {
    padding: 70px 0 90px;
    background-color: #ffffff;
}

.why-oem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
    align-items: stretch;
}

.why-oem-info-card {
    background: linear-gradient(135deg, #0c1520 0%, #060e18 100%);
    border-radius: 20px;
    padding: 40px 36px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(0, 230, 118, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 0 25px rgba(0, 230, 118, 0.08);
}

.info-card-badge {
    display: inline-block;
    align-self: flex-start;
    background: rgba(0, 230, 118, 0.15);
    color: #00e676;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11.5px;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 230, 118, 0.3);
}

.info-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.35;
    margin-bottom: 20px;
}

.info-card-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14.5px;
    color: #94a3b8;
    line-height: 1.65;
    margin-bottom: 16px;
}

.highlight-desc {
    color: #e2e8f0;
    font-weight: 600;
    border-left: 3px solid #00e676;
    padding-left: 14px;
    background: rgba(255, 255, 255, 0.03);
    padding-top: 8px;
    padding-bottom: 8px;
    border-radius: 0 8px 8px 0;
}

.info-card-image-box {
    margin-top: auto;
    text-align: center;
    padding-top: 20px;
}

.info-card-img {
    max-height: 180px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 230, 118, 0.2));
    transition: transform 0.4s ease;
}

.why-oem-info-card:hover .info-card-img {
    transform: scale(1.05);
}

.why-oem-benefits-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px 36px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.benefits-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px dashed #e2e8f0;
}

.oem-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.benefit-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background-color: #e8fcf1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    border: 1px solid rgba(0, 230, 118, 0.3);
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon-box {
    background-color: #00e676;
    transform: scale(1.1);
}

.benefit-item:hover .benefit-icon-box svg {
    stroke: #0b131f;
}

.benefit-text h5 {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.benefit-text p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 991px) {
    .why-oem-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Customization Options Grid Section */
.customization-section {
    padding: 54px 0 64px;
    background-color: #ffffff;
    border-top: 1px solid #eef2f6;
    border-bottom: 1px solid #eef2f6;
}

.partner-section-header {
    margin: 0 auto 34px;
    text-align: left;
}

.partner-section-badge {
    display: block;
    margin-bottom: 6px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.45px;
    color: #475467;
    text-transform: uppercase;
}

.partner-section-title {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.12;
    color: #101828;
}

.partner-section-line {
    display: block;
    width: 44px;
    height: 4px;
    margin-top: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, #8ce445 0%, #39b54a 100%);
}

.partner-benefits-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.partner-benefit-card {
    background: #ffffff;
    border: 1px solid #eaecf0;
    border-radius: 16px;
    padding: 22px 18px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.06);
}

.partner-benefit-card:hover {
    transform: translateY(-4px);
    border-color: rgba(57, 181, 74, 0.22);
    box-shadow: 0 14px 28px rgba(16, 24, 40, 0.09);
}

.partner-benefit-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border: 1px solid transparent;
    box-shadow: 0 8px 22px rgba(16, 24, 40, 0.08);
}

.partner-benefit-icon-green {
    color: #6cc44a;
    background: radial-gradient(circle at center, rgba(108, 196, 74, 0.16), rgba(108, 196, 74, 0.03));
    border-color: rgba(108, 196, 74, 0.14);
}

.partner-benefit-icon-lime {
    color: #74d24a;
    background: radial-gradient(circle at center, rgba(116, 210, 74, 0.16), rgba(116, 210, 74, 0.03));
    border-color: rgba(116, 210, 74, 0.14);
}

.partner-benefit-icon-bright {
    color: #7cdd52;
    background: radial-gradient(circle at center, rgba(124, 221, 82, 0.16), rgba(124, 221, 82, 0.03));
    border-color: rgba(124, 221, 82, 0.14);
}

.partner-benefit-icon-soft {
    color: #72cf58;
    background: radial-gradient(circle at center, rgba(114, 207, 88, 0.16), rgba(114, 207, 88, 0.03));
    border-color: rgba(114, 207, 88, 0.14);
}

.partner-benefit-icon-box {
    color: #76c65e;
    background: radial-gradient(circle at center, rgba(118, 198, 94, 0.16), rgba(118, 198, 94, 0.03));
    border-color: rgba(118, 198, 94, 0.14);
}

.partner-benefit-icon-medal {
    color: #7ac85c;
    background: radial-gradient(circle at center, rgba(122, 200, 92, 0.16), rgba(122, 200, 92, 0.03));
    border-color: rgba(122, 200, 92, 0.14);
}

.partner-benefit-content h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 10px;
    line-height: 1.25;
}

.partner-benefit-content p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 991px) {
    .partner-section-title {
        font-size: 34px;
    }

    .partner-benefits-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .customization-section {
        padding: 46px 0 54px;
    }

    .partner-section-title {
        font-size: 28px;
    }

    .partner-benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* OEM Package Comparison Section */
.oem-package-section {
    padding: 30px 0 34px;
    background: #ffffff;
}

.oem-package-shell {
    position: relative;
    overflow: hidden;
    padding: 20px 18px 18px;
    border-radius: 18px;
    background:
        radial-gradient(circle at 50% 12%, rgba(127, 226, 44, 0.12), transparent 24%),
        linear-gradient(180deg, #04090d 0%, #081018 100%);
    border: 1px solid rgba(127, 226, 44, 0.12);
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.16);
}

.oem-package-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.08;
    pointer-events: none;
}

.oem-package-header {
    position: relative;
    z-index: 1;
    margin-bottom: 18px;
}

.oem-package-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.45px;
    color: #8ce445;
}

.oem-package-badge-count {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #7fe22c;
    color: #061109;
    font-size: 11px;
    font-weight: 900;
}

.oem-package-title {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
}

.oem-package-line {
    display: block;
    width: 44px;
    height: 3px;
    margin-top: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, #8ce445 0%, #39b54a 100%);
}

.oem-package-table-wrap {
    position: relative;
    z-index: 1;
}

.oem-package-table {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(4, 10, 15, 0.82);
}

.oem-package-row {
    display: grid;
    grid-template-columns: 1.5fr 0.85fr 0.95fr 0.85fr;
}

.oem-package-cell {
    min-width: 0;
    padding: 10px 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    line-height: 1.35;
}

.oem-package-row:first-child .oem-package-cell {
    border-top: none;
}

.oem-package-cell:last-child {
    border-right: none;
}

.oem-package-feature-head,
.oem-package-plan-head {
    font-weight: 700;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.02);
}

.oem-package-feature-cell {
    color: rgba(255, 255, 255, 0.82);
}

.oem-package-value-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.82);
    text-align: center;
}

.oem-package-plan-head-highlight,
.oem-package-value-highlight {
    background: rgba(127, 226, 44, 0.08);
    border-left: 1px solid rgba(127, 226, 44, 0.4);
    border-right: 1px solid rgba(127, 226, 44, 0.4);
}

.oem-package-plan-head-highlight {
    position: relative;
}

.oem-package-plan-pill {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 2px 10px;
    border-radius: 999px;
    background: #7fe22c;
    color: #061109;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
    white-space: nowrap;
}

.oem-package-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

.oem-package-icon-yes {
    color: #7fe22c;
    border: 1px solid rgba(127, 226, 44, 0.5);
    background: rgba(127, 226, 44, 0.08);
}

.oem-package-icon-no {
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.4);
    background: rgba(239, 68, 68, 0.08);
    text-transform: uppercase;
}

.oem-package-note {
    position: relative;
    z-index: 1;
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(127, 226, 44, 0.22);
    background: rgba(7, 14, 10, 0.76);
}

.oem-package-note-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8ce445;
    background: rgba(127, 226, 44, 0.06);
    border: 1px solid rgba(127, 226, 44, 0.16);
    flex-shrink: 0;
}

.oem-package-note-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.oem-package-note-copy strong {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: #8ce445;
}

.oem-package-note-copy span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.4;
}

@media (max-width: 991px) {
    .oem-package-row {
        grid-template-columns: 1.4fr 0.9fr 0.95fr 0.9fr;
    }

    .oem-package-title {
        font-size: 21px;
    }

    .oem-package-cell {
        padding: 10px 10px;
        font-size: 11px;
    }
}

@media (max-width: 640px) {
    .oem-package-section {
        padding: 22px 0 28px;
    }

    .oem-package-shell {
        padding: 16px 12px 14px;
    }

    .oem-package-title {
        font-size: 18px;
    }

    .oem-package-table-wrap {
        overflow-x: auto;
    }

    .oem-package-table {
        min-width: 620px;
    }

    .oem-package-note {
        align-items: flex-start;
    }
}

/* Upgraded OEM Process Grid Cards */
.process-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 55px;
}

.process-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.35s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.process-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 230, 118, 0.4);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06), 0 0 25px rgba(0, 230, 118, 0.12);
}

.featured-process-card {
    background: linear-gradient(135deg, #0c1520 0%, #060e18 100%);
    border: 1px solid rgba(0, 230, 118, 0.3);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 0 20px rgba(0, 230, 118, 0.1);
}

.featured-process-card .process-card-title {
    color: #ffffff !important;
}

.featured-process-card .process-card-desc {
    color: #94a3b8 !important;
}

.process-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.process-step-pill {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 4px 12px;
    border-radius: 20px;
    background-color: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.active-pill {
    background-color: rgba(0, 230, 118, 0.2);
    color: #00e676;
    border-color: rgba(0, 230, 118, 0.4);
}

.process-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background-color: #e8fcf1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 230, 118, 0.3);
    transition: all 0.3s ease;
}

.active-icon {
    background-color: #00e676;
    border-color: #00e676;
}

.process-card:hover .process-card-icon {
    background-color: #00e676;
    transform: scale(1.1);
}

.process-card:hover .process-card-icon svg {
    stroke: #0b131f;
}

.process-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
    line-height: 1.35;
}

.process-card-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1100px) {
    .process-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .process-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Knowledge Center Categories Grid Section */
.kc-categories-section {
    padding: 70px 0 90px;
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.kc-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 50px;
}

.kc-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.35s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.kc-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 230, 118, 0.4);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06), 0 0 25px rgba(0, 230, 118, 0.12);
}

.featured-kc-card {
    background: linear-gradient(135deg, #0c1520 0%, #060e18 100%);
    border: 1px solid rgba(0, 230, 118, 0.3);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 0 20px rgba(0, 230, 118, 0.1);
}

.featured-kc-card .kc-card-title {
    color: #ffffff !important;
}

.featured-kc-card .kc-card-desc {
    color: #94a3b8 !important;
}

.kc-card-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: #e8fcf1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 230, 118, 0.3);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.active-kc-icon {
    background-color: #00e676;
    border-color: #00e676;
}

.kc-card:hover .kc-card-icon-box {
    background-color: #00e676;
    transform: scale(1.1);
}

.kc-card:hover .kc-card-icon-box svg {
    stroke: #0b131f;
}

.kc-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
    line-height: 1.35;
}

.kc-card-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .kc-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .kc-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Featured Articles Section */
.featured-articles-section {
    padding: 70px 0 90px;
    background-color: #ffffff;
}

.featured-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.fa-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.35s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.fa-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 230, 118, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08), 0 0 25px rgba(0, 230, 118, 0.12);
}

.fa-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    background-color: #0c1520;
    overflow: hidden;
}

.fa-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.fa-card:hover .fa-img {
    transform: scale(1.07);
}

.fa-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(12, 21, 32, 0.85);
    backdrop-filter: blur(6px);
    color: #00e676;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(0, 230, 118, 0.3);
}

.fa-card-content {
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.fa-title {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    margin-bottom: 12px;
    transition: color 0.25s ease;
}

.fa-card:hover .fa-title {
    color: #00a854;
}

.fa-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 22px;
}

.fa-read-more {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 750;
    color: #00a854;
    text-decoration: none;
    transition: all 0.25s ease;
}

.fa-read-more svg {
    transition: transform 0.25s ease;
}

.fa-card:hover .fa-read-more {
    color: #00e676;
}

.fa-card:hover .fa-read-more svg {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .featured-articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .featured-articles-grid {
        grid-template-columns: 1fr;
    }
}

/* Mission & Vision Section */
.mission-vision-section {
    position: relative;
    padding: 40px 0 40px;
    background:
        radial-gradient(circle at 50% 18%, rgba(57, 181, 74, 0.12), transparent 28%),
        linear-gradient(180deg, #05090d 0%, #071018 100%);
    overflow: hidden;
}

.mission-vision-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.12;
    pointer-events: none;
}

.mv-section-header {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 760px;
    margin: 0 auto 34px;
}

.mv-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: #8cf22a;
}

.mv-section-badge::before,
.mv-section-badge::after {
    content: '';
    width: 26px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(140, 242, 42, 0.9), transparent);
}

.mv-section-title {
    margin: 0 0 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 46px;
    font-weight: 800;
    line-height: 1.1;
    color: #f8fafc;
}

.mv-section-title span {
    color: #8cf22a;
}

.mv-section-subtitle {
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(248, 250, 252, 0.78);
}

.mv-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    align-items: stretch;
}

.mv-card {
    border-radius: 18px;
    padding: 0;
    position: relative;
    transition: all 0.35s ease;
    overflow: hidden;
}

.mission-card {
    background:
        linear-gradient(180deg, rgba(8, 18, 16, 0.98), rgba(8, 18, 16, 0.98)),
        radial-gradient(circle at 70% 50%, rgba(57, 181, 74, 0.15), transparent 36%);
    border: 1px solid rgba(113, 255, 91, 0.18);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.mission-card:hover {
    transform: translateY(-4px);
    border-color: rgba(140, 242, 42, 0.34);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28), 0 0 22px rgba(140, 242, 42, 0.08);
}

.vision-card {
    background:
        linear-gradient(180deg, rgba(8, 18, 16, 0.98), rgba(8, 18, 16, 0.98)),
        radial-gradient(circle at 80% 48%, rgba(57, 181, 74, 0.22), transparent 38%);
    border: 1px solid rgba(113, 255, 91, 0.18);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.vision-card:hover {
    transform: translateY(-4px);
    border-color: rgba(140, 242, 42, 0.34);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28), 0 0 22px rgba(140, 242, 42, 0.08);
}

.mv-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.12;
    pointer-events: none;
}

.mv-card-content {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(220px, 0.95fr);
    align-items: stretch;
    min-height: 100%;
}

.mv-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.mv-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: rgba(140, 242, 42, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(140, 242, 42, 0.22);
    flex-shrink: 0;
    color: #8cf22a;
    box-shadow: 0 0 14px rgba(140, 242, 42, 0.08);
}

.active-mv-icon {
    background-color: #00e676;
    border-color: #00e676;
}

.mv-badge {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.6px;
    color: #8cf22a;
    background: transparent;
    padding: 0;
    border-radius: 20px;
}

.vision-badge {
    color: #8cf22a;
}

.mv-body {
    margin-bottom: 0;
}

.mv-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: rgba(248, 250, 252, 0.74);
    line-height: 1.65;
    margin: 0;
}

.mv-copy-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 26px 24px 24px;
    min-width: 0;
}

.mv-title {
    font-family: 'Outfit', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #f8fafc;
    line-height: 1.18;
    margin-bottom: 14px;
}

.mv-title span {
    color: #8cf22a;
}

.mv-visual-col {
    position: relative;
    min-height: 280px;
}

.mv-mission-visual,
.mv-vision-visual {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 280px;
}

.mv-mission-visual::before,
.mv-vision-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 55% 50%, rgba(57, 181, 74, 0.22), transparent 42%);
    pointer-events: none;
}

.mv-mission-grid {
    position: absolute;
    inset: 16px 12px 16px 0;
    background:
        linear-gradient(90deg, rgba(140, 242, 42, 0.08) 1px, transparent 1px),
        linear-gradient(0deg, rgba(140, 242, 42, 0.08) 1px, transparent 1px);
    background-size: 18px 18px;
    clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 10%);
    opacity: 0.5;
}

.mv-mission-grid::before,
.mv-mission-grid::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    border: 1px solid rgba(140, 242, 42, 0.22);
    box-shadow: 0 0 18px rgba(140, 242, 42, 0.1);
}

.mv-mission-grid::before {
    width: 180px;
    height: 180px;
    top: 28px;
    left: 62px;
}

.mv-mission-grid::after {
    width: 240px;
    height: 240px;
    right: 8px;
    bottom: -30px;
}

.mv-product-visual {
    position: absolute;
    right: 10px;
    bottom: 6px;
    width: min(100%, 300px);
    object-fit: contain;
    filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.36));
}

.mv-vision-visual {
    overflow: hidden;
}

.mv-planet-core {
    position: absolute;
    right: -34px;
    bottom: -68px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(142, 255, 88, 0.92), rgba(44, 118, 34, 0.92) 36%, rgba(8, 40, 15, 0.98) 68%);
    box-shadow:
        0 0 30px rgba(140, 242, 42, 0.24),
        0 0 80px rgba(140, 242, 42, 0.12);
}

.mv-planet-core::before {
    content: '';
    position: absolute;
    inset: 16px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(183, 255, 140, 0.72), transparent 20%),
        linear-gradient(125deg, transparent 10%, rgba(130, 224, 94, 0.28) 30%, transparent 48%, rgba(130, 224, 94, 0.22) 62%, transparent 80%);
    mix-blend-mode: screen;
}

.mv-planet-rings {
    position: absolute;
    inset: 0;
}

.mv-planet-rings::before,
.mv-planet-rings::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(140, 242, 42, 0.32);
}

.mv-planet-rings::before {
    right: 70px;
    bottom: 34px;
    width: 230px;
    height: 230px;
}

.mv-planet-rings::after {
    right: -8px;
    bottom: 18px;
    width: 340px;
    height: 86px;
    border-width: 0 0 2px 0;
    border-radius: 50%;
    box-shadow: 0 0 28px rgba(140, 242, 42, 0.18);
}

@media (max-width: 991px) {
    .mv-section-title {
        font-size: 38px;
    }

    .mv-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mv-card-content {
        grid-template-columns: 1fr;
    }

    .mv-copy-col {
        padding-bottom: 0;
    }

    .mv-visual-col {
        min-height: 250px;
    }

    .mv-product-visual {
        right: 50%;
        transform: translateX(50%);
    }

    .mv-mission-grid {
        inset: 0 14px 0 14px;
    }

    .mv-planet-core {
        right: 50%;
        transform: translateX(50%);
    }

    .mv-planet-rings::before {
        right: 50%;
        transform: translateX(50%);
    }

    .mv-planet-rings::after {
        right: 50%;
        transform: translateX(50%);
    }
}

@media (max-width: 767px) {
    .mission-vision-section {
        padding: 68px 0 76px;
    }

    .mv-section-title {
        font-size: 30px;
    }

    .mv-section-subtitle {
        font-size: 13px;
    }

    .mv-copy-col {
        padding: 24px 18px 0;
    }

    .mv-title {
        font-size: 28px;
    }

    .mv-text {
        font-size: 13px;
    }

    .mv-visual-col,
    .mv-mission-visual,
    .mv-vision-visual {
        min-height: 220px;
    }

    .mv-product-visual {
        width: min(100%, 250px);
        bottom: 10px;
    }

    .mv-planet-core {
        width: 220px;
        height: 220px;
        bottom: -60px;
    }

    .mv-planet-rings::before {
        width: 200px;
        height: 200px;
        bottom: 28px;
    }

    .mv-planet-rings::after {
        width: 280px;
    }
}

@media (max-width: 480px) {
    .mv-section-badge {
        font-size: 11px;
    }

    .mv-section-badge::before,
    .mv-section-badge::after {
        width: 18px;
    }

    .mv-section-title {
        font-size: 26px;
    }

    .mv-card-header {
        gap: 10px;
        margin-bottom: 16px;
    }

    .mv-icon-box {
        width: 40px;
        height: 40px;
    }

    .mv-title {
        font-size: 24px;
    }

    .mv-visual-col,
    .mv-mission-visual,
    .mv-vision-visual {
        min-height: 200px;
    }
}

/* Our Values Section */
.about-values-section {
    padding: 50px 0 50px;
    background: #ffffff;
    border-bottom: 1px solid #eef2f7;
}

.values-section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 34px;
}

.values-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: #71c837;
}

.values-section-badge::before,
.values-section-badge::after {
    content: '';
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #71c837, transparent);
}

.values-section-title {
    margin: 0 0 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    color: #101828;
}

.values-section-subtitle {
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    line-height: 1.65;
    color: #667085;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.value-card {
    --value-accent: #22c55e;
    background: #ffffff;
    border: 1px solid #e8edf3;
    border-top: 4px solid var(--value-accent);
    border-radius: 12px;
    padding: 18px 16px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.35s ease;
    box-shadow: 0 8px 22px rgba(16, 24, 40, 0.06);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(16, 24, 40, 0.1);
}

.value-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid color-mix(in srgb, var(--value-accent) 18%, #e8edf3);
    color: var(--value-accent);
    margin-bottom: 14px;
    transition: all 0.3s ease;
    box-shadow:
        0 10px 20px rgba(16, 24, 40, 0.06),
        0 0 0 8px color-mix(in srgb, var(--value-accent) 8%, transparent);
}

.value-card:hover .value-icon-box {
    transform: translateY(-2px);
}

.value-title {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
    line-height: 1.3;
}

.value-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11.8px;
    color: #667085;
    line-height: 1.55;
    margin: 0;
}

.value-card-green {
    --value-accent: #58c43b;
}

.value-card-blue {
    --value-accent: #2f9cf4;
}

.value-card-purple {
    --value-accent: #9b6ef3;
}

.value-card-orange {
    --value-accent: #f5a623;
}

.value-card-teal {
    --value-accent: #27c6b8;
}

@media (max-width: 1199px) {
    .values-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .about-values-section {
        padding: 62px 0 74px;
    }

    .values-section-title {
        font-size: 28px;
    }

    .values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .values-section-title {
        font-size: 24px;
    }

    .values-section-subtitle {
        font-size: 12px;
    }

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

/* Why Businesses Choose Lithio Section */
.why-choose-lithio-section {
    padding: 80px 0 95px;
    background-color: #ffffff;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 45px;
    align-items: center;
}

.why-choose-title {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin: 12px 0 16px;
    line-height: 1.25;
}

.why-choose-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14.8px;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 28px;
}

.why-choose-img-box {
    background: #0c1520;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 230, 118, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 0 25px rgba(0, 230, 118, 0.08);
}

.why-choose-img {
    max-height: 200px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(0, 230, 118, 0.3));
}

.why-choose-checklist-card {
    background: linear-gradient(135deg, #0c1520 0%, #060e18 100%);
    border: 1px solid rgba(0, 230, 118, 0.3);
    border-radius: 24px;
    padding: 36px 30px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2), 0 0 30px rgba(0, 230, 118, 0.1);
}

.checklist-card-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 26px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.advantage-pills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 14px;
}

.advantage-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 230, 118, 0.2);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #e2e8f0;
    transition: all 0.25s ease;
}

.advantage-pill:hover {
    background: rgba(0, 230, 118, 0.12);
    border-color: #00e676;
    transform: translateX(4px);
    color: #ffffff;
}

.featured-pill {
    grid-column: span 2;
    background: rgba(0, 230, 118, 0.15);
    border-color: #00e676;
    color: #ffffff;
    font-weight: 700;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.2);
}

.advantage-check {
    color: #00e676;
    font-size: 14px;
    font-weight: 800;
}

@media (max-width: 991px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .advantage-pills-grid {
        grid-template-columns: 1fr;
    }

    .featured-pill {
        grid-column: span 1;
    }
}

/* ==========================================================================
   FAQ "View All" Button (Index Page)
   ========================================================================== */
.faq-view-all {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.faq-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    border: 1.5px solid rgba(0, 230, 118, 0.45);
    border-radius: 50px;
    color: #00E676;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.faq-view-all-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 230, 118, 0.08);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-view-all-btn:hover {
    border-color: #00E676;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 230, 118, 0.2);
    color: #00E676;
}

.faq-view-all-btn:hover::before {
    opacity: 1;
}

.faq-view-all-btn svg {
    transition: transform 0.3s ease;
}

.faq-view-all-btn:hover svg {
    transform: translateX(4px);
}

/* ==========================================================================
   FAQ Dedicated Page Styles
   ========================================================================== */

/* Hero Section */
.faq-page-hero {
    position: relative;
    background: var(--bg-dark);
    padding: 160px 0 80px;
    overflow: hidden;
}

.faq-hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 230, 118, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 230, 118, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.faq-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.faq-hero-glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.08) 0%, transparent 70%);
    top: -100px;
    left: -100px;
}

.faq-hero-glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.06) 0%, transparent 70%);
    bottom: -50px;
    right: -50px;
}

.faq-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    font-size: 13px;
    color: var(--text-muted);
}

.faq-hero-breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.faq-hero-breadcrumb a:hover {
    color: #00E676;
}

.faq-hero-breadcrumb span {
    color: #00E676;
    font-weight: 600;
}

.faq-hero-content {
    max-width: 680px;
    margin-bottom: 56px;
}

.faq-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 230, 118, 0.08);
    border: 1px solid rgba(0, 230, 118, 0.25);
    border-radius: 50px;
    color: #00E676;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.faq-hero-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-white);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.faq-hero-highlight {
    background: linear-gradient(135deg, #39B54A, #00E676);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-hero-desc {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 560px;
}

/* Stats Row */
.faq-stats-row {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 28px 36px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    max-width: 720px;
}

.faq-stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    text-align: center;
}

.faq-stat-number {
    font-size: 22px;
    font-weight: 800;
    color: #00E676;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.5px;
}

.faq-stat-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.faq-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-light);
    margin: 0 20px;
    flex-shrink: 0;
}

/* Main FAQ Layout */
.faq-page-main {
    padding: 80px 0 100px;
    background: var(--bg-dark);
}

.faq-page-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
}

/* FAQ Accordion */
.faq-page-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-page-item {
    border: 1px solid var(--border-light);
    border-radius: 16px;
    background: rgba(12, 21, 32, 0.6);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-page-item:hover {
    border-color: rgba(0, 230, 118, 0.2);
}

.faq-page-details[open] .faq-page-item,
.faq-page-item:has(.faq-page-details[open]) {
    border-color: rgba(0, 230, 118, 0.3);
    box-shadow: 0 0 30px rgba(0, 230, 118, 0.06);
}

.faq-page-details {
    width: 100%;
}

.faq-page-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 28px;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: background 0.2s ease;
}

.faq-page-summary::-webkit-details-marker {
    display: none;
}

.faq-page-summary:hover {
    background: rgba(0, 230, 118, 0.03);
}

.faq-summary-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 0;
}

.faq-page-num {
    font-size: 12px;
    font-weight: 800;
    color: #00E676;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1px;
    flex-shrink: 0;
    opacity: 0.7;
}

.faq-page-q {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
    line-height: 1.4;
}

.faq-page-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 230, 118, 0.08);
    border: 1px solid rgba(0, 230, 118, 0.15);
    transition: background 0.3s ease;
}

.faq-page-icon svg {
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: #00E676;
}

.faq-page-details[open] .faq-page-icon {
    background: rgba(0, 230, 118, 0.15);
}

.faq-page-answer {
    padding: 0 28px 28px 28px;
    border-top: 1px solid var(--border-light);
    padding-top: 24px;
    animation: faqAnswerFadeIn 0.3s ease forwards;
}

@keyframes faqAnswerFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

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

.faq-page-answer p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 16px;
}

/* FAQ Tags */
.faq-page-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.faq-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 230, 118, 0.06);
    border: 1px solid rgba(0, 230, 118, 0.15);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: #00E676;
    letter-spacing: 0.4px;
}

/* Voltage Options */
.faq-voltage-options {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.faq-voltage-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 230, 118, 0.3);
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-white);
    font-family: 'Outfit', sans-serif;
}

.faq-voltage-chip svg {
    color: #00E676;
}

/* FAQ Sidebar */
.faq-page-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 100px;
}

.faq-sidebar-card {
    padding: 28px;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    background: rgba(12, 21, 32, 0.6);
    backdrop-filter: blur(10px);
}

.faq-sidebar-icon-wrap {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 230, 118, 0.08);
    border: 1px solid rgba(0, 230, 118, 0.2);
    border-radius: 14px;
    margin-bottom: 16px;
}

.faq-sidebar-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
    line-height: 1.3;
}

.faq-sidebar-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 20px;
}

.faq-sidebar-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: #00E676;
    color: #050b11;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.faq-sidebar-cta:hover {
    background: #00c853;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 230, 118, 0.3);
}

/* Quick Links Card */
.faq-quick-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.faq-quick-links li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.faq-quick-links li a:hover {
    color: #00E676;
    background: rgba(0, 230, 118, 0.06);
    padding-left: 16px;
}

.faq-quick-links li a svg {
    color: #00E676;
    opacity: 0.6;
    flex-shrink: 0;
    transition: opacity 0.2s ease;
}

.faq-quick-links li a:hover svg {
    opacity: 1;
}

/* Partner Card */
.faq-partner-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.1) 0%, rgba(57, 181, 74, 0.05) 100%);
    border-color: rgba(0, 230, 118, 0.25);
}

.faq-partner-glow {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.faq-partner-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 10px;
    line-height: 1.3;
}

.faq-partner-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 20px;
}

.faq-partner-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    background: #00E676;
    color: #050b11;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.faq-partner-btn:hover {
    background: #00c853;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 230, 118, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .faq-page-layout {
        grid-template-columns: 1fr 280px;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .faq-page-hero {
        padding: 130px 0 60px;
    }

    .faq-page-layout {
        grid-template-columns: 1fr;
    }

    .faq-page-sidebar {
        position: static;
    }

    .faq-stats-row {
        flex-wrap: wrap;
        gap: 20px;
        padding: 24px;
    }

    .faq-stat-divider {
        display: none;
    }

    .faq-stat-item {
        flex: none;
        width: calc(50% - 10px);
        text-align: left;
    }

    .faq-page-summary {
        padding: 20px;
    }

    .faq-page-answer {
        padding: 0 20px 20px;
        padding-top: 20px;
    }

    .faq-voltage-options {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .faq-hero-title {
        font-size: 32px;
    }

    .faq-page-q {
        font-size: 14px;
    }

    .faq-stat-item {
        width: 100%;
    }
}

/* ==========================================================================
   Video Showcase Section — Premium Split Layout
   ========================================================================== */
.video-showcase-section {
    background: #f7f9fc;
    padding: 50px 0 30px;
    border-top: 1px solid #e8edf3;
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.video-showcase-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(57, 181, 74, 0.06), transparent 70%);
    pointer-events: none;
}

/* Two-column split */
.video-split-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
}

/* ——— LEFT: VIDEO FRAME ——— */
.video-split-left {
    position: relative;
}

.video-frame-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #000;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.10),
        0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

/* Top-left live badge */
.video-frame-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 5px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.vf-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #00E676;
    box-shadow: 0 0 6px #00E676;
    animation: vfDotBlink 1.4s ease-in-out infinite;
}

@keyframes vfDotBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.showcase-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

/* Play / Pause overlay — shows on hover */
.video-controls-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
}

.video-frame-wrapper:hover .video-controls-overlay {
    opacity: 1;
}

.video-play-pause-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(0, 230, 118, 0.92);
    border: none;
    color: #050b11;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease;
    box-shadow: 0 6px 20px rgba(0, 230, 118, 0.45);
}

.video-play-pause-btn:hover {
    transform: scale(1.12);
    background: #00E676;
}

/* ——— RIGHT: HEADER + TABS ——— */
.video-split-right {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.video-badge {
    color: #39b54a;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.video-badge::before {
    content: '';
    width: 20px;
    height: 2px;
    background: #39b54a;
    border-radius: 2px;
    display: inline-block;
}

.video-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.22;
    color: #0f172a;
    margin-bottom: 12px;
}

.video-desc {
    color: #64748b;
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 28px;
}

/* Vertical tabs */
.video-tabs {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.video-tab-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    border-radius: 12px;
    background: #ffffff;
    border: 1.5px solid #e8edf3;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.video-tab-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #39b54a;
    border-radius: 0 2px 2px 0;
    transform: scaleY(0);
    transition: transform 0.25s ease;
}

.video-tab-btn:hover {
    border-color: #c8e6cc;
    background: #f0faf1;
    transform: translateX(3px);
}

.video-tab-btn:hover::before {
    transform: scaleY(0.6);
}

.video-tab-btn.active {
    background: linear-gradient(135deg, #0f1f2e 0%, #1a2f42 100%);
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(15, 31, 46, 0.18);
    transform: translateX(0);
}

.video-tab-btn.active::before {
    transform: scaleY(1);
}

/* Tab icon box */
.vtab-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(57, 181, 74, 0.1);
    border: 1px solid rgba(57, 181, 74, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #39b54a;
    transition: background 0.25s ease;
}

.video-tab-btn.active .vtab-icon {
    background: rgba(0, 230, 118, 0.15);
    border-color: rgba(0, 230, 118, 0.3);
    color: #00E676;
}

/* Tab text */
.vtab-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    flex: 1;
}

.vtab-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1;
}

.video-tab-btn.active .vtab-label {
    color: #ffffff;
}

.vtab-sub {
    font-size: 11.5px;
    color: #94a3b8;
    font-weight: 500;
}

.video-tab-btn.active .vtab-sub {
    color: rgba(255, 255, 255, 0.55);
}

/* Arrow chevron */
.vtab-arrow {
    color: #cbd5e1;
    flex-shrink: 0;
    transition: color 0.25s ease, transform 0.25s ease;
}

.video-tab-btn:hover .vtab-arrow {
    color: #39b54a;
    transform: translateX(2px);
}

.video-tab-btn.active .vtab-arrow {
    color: #00E676;
    transform: translateX(3px);
}

/* ——— RESPONSIVE ——— */
@media (max-width: 1024px) {
    .video-split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .video-split-right {
        order: -1;
    }

    .video-title {
        font-size: 28px;
    }

    .video-tabs {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .video-showcase-section {
        padding: 60px 0;
    }

    .video-title {
        font-size: 24px;
    }

    .video-tabs {
        grid-template-columns: 1fr;
    }
}

.center_title {
    text-align: center;
}

/* ==========================================================================
   Why EV Brands Choose Lithio — Dark Industrial Section
   ========================================================================== */
/* ==========================================================================
   Restored Why Lithio Section
   ========================================================================== */
.brand-why-section {
    position: relative;
    background: #060d14;
    padding: 40px 0;
    overflow: hidden;
}

.brand-why-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(6, 13, 20, 0.7) 0%, rgba(6, 13, 20, 0.92) 50%, rgba(6, 13, 20, 1) 100%),
        url('../images/img_3.png') center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.brand-why-container {
    position: relative;
    z-index: 1;
}

.brand-why-header {
    text-align: center;
    margin-bottom: 55px;
}

.brand-why-badge {
    display: inline-block;
    color: #00e676;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 14px;
    position: relative;
    padding: 0 20px;
}

.brand-why-badge::before,
.brand-why-badge::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 1.5px;
    background: #00e676;
}

.brand-why-badge::before {
    left: -6px;
}

.brand-why-badge::after {
    right: -6px;
}

.brand-why-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 16px;
}

.brand-why-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto;
}

.brand-why-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 44px;
}

.brand-why-features-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.brand-why-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.brand-why-feature-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 230, 118, 0.2);
    transform: translateY(-3px);
}

.brand-why-feature-card-reverse {
    flex-direction: row-reverse;
}

.brand-why-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 230, 118, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(0, 230, 118, 0.06);
    color: #00e676;
}

.brand-why-feature-body {
    flex: 1;
}

.brand-why-feature-body h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px 0;
    line-height: 1.2;
}

.brand-why-feature-body p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.52);
    line-height: 1.6;
    margin: 0;
}

.brand-why-feature-body-right {
    text-align: right;
}

.brand-why-center-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-why-showcase {
    position: relative;
    width: 360px;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.brand-why-arc {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 4px solid #00e676;
    box-shadow:
        0 0 35px rgba(0, 230, 118, 0.45),
        0 0 70px rgba(0, 230, 118, 0.25),
        inset 0 0 25px rgba(0, 230, 118, 0.2);
}

.brand-why-image {
    position: relative;
    z-index: 2;
    width: 290px;
    height: 290px;
    max-width: 290px;
    border-radius: 50%;
    object-fit: fill;
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.45));
}

.brand-why-stats-bar {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 26px;
    border-radius: 18px;
}

.brand-why-stat {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-why-stat-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(0, 230, 118, 0.08);
    border: 1px solid rgba(0, 230, 118, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00e676;
    flex-shrink: 0;
}

.brand-why-stat-num {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
}

.brand-why-stat-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
    margin-top: 2px;
}

/* ==========================================================================
   Comparison Section
   ========================================================================== */
.why-lithio-section {
    position: relative;
    background: linear-gradient(180deg, #f8fafc 0%, #eef7ef 100%);
    padding: 56px 0;
    overflow: hidden;
}

.wl-bg-overlay {
    display: none;
}

.wl-container {
    position: relative;
    z-index: 1;
}

/* Header */
.why-lithio-header {
    text-align: center;
    margin-bottom: 34px;
}

.why-lithio-badge {
    display: inline-block;
    color: #39b54a;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 14px;
    position: relative;
    padding: 0 20px;
}

.why-lithio-badge::before,
.why-lithio-badge::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 1.5px;
    background: #39b54a;
}

.why-lithio-badge::before {
    left: -6px;
}

.why-lithio-badge::after {
    right: -6px;
}

.why-lithio-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #101828;
    line-height: 1.15;
    margin-bottom: 12px;
}

.why-lithio-subtitle {
    font-size: 14px;
    color: #475467;
    line-height: 1.65;
    max-width: 720px;
    margin: 0 auto;
}

.wl-compare-shell {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.25fr);
    gap: 18px;
    background: #ffffff;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 24px;
    padding: 18px;
    box-shadow: 0 18px 40px rgba(16, 24, 40, 0.08);
    margin-bottom: 18px;
}

.wl-visual-panel {
    background:
        radial-gradient(circle at 40% 30%, rgba(57, 181, 74, 0.18), transparent 45%),
        linear-gradient(180deg, #f3f8f3 0%, #e8f4ea 100%);
    border: 1px solid rgba(57, 181, 74, 0.2);
    border-radius: 18px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.wl-brand-lockup {
    margin-bottom: 18px;
}

.wl-brand-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 3px;
    color: #101828;
    line-height: 1;
    margin: 0 0 8px 0;
}

.wl-brand-copy {
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
    color: #101828;
}

.wl-brand-copy span {
    color: #39b54a;
}

.wl-visual-stage {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 320px;
    padding: 8px 0 0;
}

.wl-shield-glow {
    position: absolute;
    inset: auto 50% 78px auto;
    width: 165px;
    height: 180px;
    transform: translateX(50%);
    background: radial-gradient(circle at center, rgba(57, 181, 74, 0.35) 0%, rgba(57, 181, 74, 0.12) 42%, transparent 70%);
    filter: blur(12px);
}

.wl-shield-glow::before {
    content: '';
    position: absolute;
    inset: 18px 26px 28px;
    border: 3px solid rgba(57, 181, 74, 0.9);
    clip-path: polygon(50% 0%, 100% 18%, 88% 88%, 50% 100%, 12% 88%, 0% 18%);
    box-shadow: 0 0 18px rgba(57, 181, 74, 0.45);
}

.wl-product-image {
    position: relative;
    z-index: 1;
    width: min(100%, 310px);
    object-fit: contain;
    filter: drop-shadow(0 18px 25px rgba(16, 24, 40, 0.2));
}

.wl-comparison-panel {
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
}

.wl-compare-header-row {
    display: grid;
    grid-template-columns: 1.05fr 0.78fr 1.05fr;
}

.wl-compare-head {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-align: center;
    padding: 14px 12px;
    color: #ffffff;
}

.wl-others-head {
    background: #2d3748;
}

.wl-feature-head {
    background: #78be20;
}

.wl-lithio-head {
    background: #5ba51f;
}

.wl-compare-table {
    display: flex;
    flex-direction: column;
}

.wl-compare-row {
    display: grid;
    grid-template-columns: 1.05fr 0.78fr 1.05fr;
    border-top: 1px solid rgba(16, 24, 40, 0.08);
}

.wl-compare-cell {
    min-width: 0;
    padding: 13px 14px;
    font-size: 14px;
    line-height: 1.4;
}

.wl-others-cell,
.wl-lithio-cell {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.wl-others-cell {
    color: #344054;
    background: #f9fafb;
}

.wl-feature-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #344054;
    background: #ffffff;
    text-align: center;
}

.wl-lithio-cell {
    color: #1570ef;
    background: #f6fbf6;
}

.wl-status-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
    flex-shrink: 0;
    color: #ffffff;
}

.wl-bad-icon {
    background: #ef4444;
}

.wl-good-icon {
    background: #39b54a;
}

.wl-benefits-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.wl-benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #ffffff;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 16px;
    padding: 16px 14px;
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.06);
}

.wl-benefit-card-highlight {
    border-color: rgba(57, 181, 74, 0.38);
    box-shadow: 0 12px 28px rgba(57, 181, 74, 0.12);
}

.wl-benefit-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(57, 181, 74, 0.08);
    border: 1px solid rgba(57, 181, 74, 0.2);
    color: #39b54a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wl-benefit-text h4 {
    margin: 0 0 5px 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: #101828;
    line-height: 1.3;
    text-transform: uppercase;
}

.wl-benefit-text p {
    margin: 0;
    font-size: 12px;
    line-height: 1.45;
    color: #475467;
}

.why-lithio-grid,
.wl-features-col,
.wl-feature-card,
.wl-card-right,
.wl-feature-icon-wrap,
.wl-feature-body,
.wl-text-right,
.wl-center-col,
.wl-charger-showcase,
.wl-green-arc,
.wl-charger-img,
.wl-stats-bar,
.wl-stat,
.wl-stat-icon-circle,
.wl-stat-num,
.wl-stat-label,
.wl-cta-banner,
.wl-cta-text,
.wl-cta-btn {
    display: none;
}

@media (max-width: 1200px) {
    .brand-why-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .brand-why-center-col {
        order: -1;
    }

    .brand-why-feature-card-reverse {
        flex-direction: row;
    }

    .brand-why-feature-body-right {
        text-align: left;
    }

    .brand-why-stats-bar {
        grid-template-columns: repeat(3, 1fr);
    }

    .wl-compare-shell {
        grid-template-columns: 1fr;
    }

    .wl-visual-panel {
        min-height: 320px;
    }

    .wl-benefits-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .brand-why-title {
        font-size: 34px;
    }

    .brand-why-stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-lithio-title {
        font-size: 34px;
    }

    .why-lithio-subtitle {
        font-size: 13px;
    }

    .wl-compare-head,
    .wl-compare-cell {
        font-size: 13px;
    }

    .wl-benefits-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .brand-why-title {
        font-size: 28px;
    }

    .brand-why-showcase {
        width: 300px;
        height: 300px;
    }

    .brand-why-arc {
        width: 240px;
        height: 240px;
    }

    .brand-why-stats-bar {
        grid-template-columns: 1fr;
    }

    .why-lithio-title {
        font-size: 28px;
    }

    .wl-compare-shell {
        padding: 14px;
        border-radius: 18px;
    }

    .wl-brand-name {
        font-size: 34px;
    }

    .wl-brand-copy {
        font-size: 15px;
    }

    .wl-compare-header-row,
    .wl-compare-row {
        grid-template-columns: 1fr;
    }

    .wl-compare-head {
        display: none;
    }

    .wl-compare-row {
        padding: 10px 0;
    }

    .wl-compare-cell {
        padding: 8px 12px;
    }

    .wl-feature-cell {
        justify-content: flex-start;
        color: #39b54a;
    }

    .wl-benefits-strip {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Impact Showcase Section
   ========================================================================== */
.impact-showcase-section {
    position: relative;
    padding: 16px 0 56px;
    background:
        radial-gradient(circle at 50% 30%, rgba(57, 181, 74, 0.12), transparent 32%),
        linear-gradient(180deg, #f8fafc 0%, #eef7ef 100%);
    overflow: hidden;
}

.impact-showcase-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 35%, rgba(57, 181, 74, 0.08), transparent 20%),
        radial-gradient(circle at 80% 35%, rgba(57, 181, 74, 0.08), transparent 20%);
    pointer-events: none;
}

.impact-showcase-container {
    position: relative;
    z-index: 1;
}

.impact-showcase-card {
    position: relative;
    padding: 36px 32px 28px;
    border-radius: 28px;
    border: 1px solid rgba(57, 181, 74, 0.14);
    background-color: #000;
    /* background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 251, 246, 0.98)),
        radial-gradient(circle at 50% 58%, rgba(57, 181, 74, 0.12), transparent 34%); */
    box-shadow:
        0 28px 80px rgba(16, 24, 40, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.impact-top-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
    margin-bottom: 10px;
}

.impact-highlight-item {
    position: relative;
    text-align: center;
    padding: 0 20px 8px;
}

.impact-highlight-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 6px;
    right: -12px;
    width: 1px;
    height: 66px;
    background: linear-gradient(180deg, transparent 0%, rgba(16, 24, 40, 0.12) 20%, rgba(16, 24, 40, 0.12) 80%, transparent 100%);
}

.impact-highlight-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8cf22a;
    border: 1px solid rgba(140, 242, 42, 0.32);
    background: rgba(140, 242, 42, 0.06);
    box-shadow: 0 0 14px rgba(140, 242, 42, 0.14);
}

.impact-highlight-item p {
    margin: 0 0 3px;
    font-size: 15px;
    color: #fff;
    line-height: 1.2;
}

.impact-highlight-item h3 {
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.05;
    color: #8cf22a;
}

.impact-product-stage {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 0 10px;
}

.impact-product-ring,
.impact-product-glow {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.impact-product-ring {
    bottom: 80px;
    width: min(100%, 720px);
    height: 190px;
    border-radius: 50%;
    border: 2px solid rgba(155, 255, 62, 0.7);
    box-shadow:
        0 0 20px rgba(140, 242, 42, 0.36),
        0 0 48px rgba(140, 242, 42, 0.18),
        inset 0 0 18px rgba(140, 242, 42, 0.26);
}

.impact-product-ring::before,
.impact-product-ring::after {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 50%;
    border: 1px solid rgba(155, 255, 62, 0.4);
}

.impact-product-ring::after {
    inset: 28px;
    border-color: rgba(155, 255, 62, 0.24);
}

.impact-product-glow {
    bottom: 74px;
    width: 540px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(172, 255, 76, 0.44) 0%, rgba(83, 200, 44, 0.2) 42%, rgba(24, 54, 12, 0) 72%);
    filter: blur(8px);
}

.impact-product-image {
    position: relative;
    z-index: 2;
    width: min(100%, 650px);
    object-fit: contain;
    filter: drop-shadow(0 20px 32px rgba(16, 24, 40, 0.24));
}

.impact-shard {
    position: absolute;
    width: 120px;
    height: 180px;
    top: 34%;
    background: linear-gradient(180deg, rgba(71, 84, 103, 0.12), rgba(120, 140, 150, 0.03));
    clip-path: polygon(28% 0%, 100% 18%, 72% 100%, 0% 80%);
    opacity: 0.45;
    filter: drop-shadow(0 16px 22px rgba(16, 24, 40, 0.15));
}

.impact-shard::before {
    content: '';
    position: absolute;
    inset: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(57, 181, 74, 0.08));
    clip-path: inherit;
}

.impact-shard-left {
    left: -6px;
    transform: rotate(-18deg);
}

.impact-shard-right {
    right: -6px;
    transform: rotate(18deg) scaleX(-1);
}

.impact-feature-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin-top: -8px;
}

.impact-feature-item {
    position: relative;
    text-align: center;
    padding: 12px 10px 4px;
}

.impact-feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 18px;
    right: -6px;
    width: 1px;
    height: 46px;
    background: linear-gradient(180deg, transparent 0%, rgba(16, 24, 40, 0.12) 20%, rgba(16, 24, 40, 0.12) 80%, transparent 100%);
}

.impact-feature-icon {
    width: 34px;
    height: 34px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8cf22a;
}

.impact-feature-item p {
    margin: 0 auto;
    max-width: 120px;
    font-size: 13px;
    line-height: 1.3;
    color: #fff;
}

@media (max-width: 1200px) {
    .impact-product-stage {
        min-height: 420px;
    }

    .impact-product-ring {
        width: min(100%, 620px);
        height: 170px;
    }

    .impact-feature-strip {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 22px 12px;
    }

    .impact-feature-item {
        flex: 0 1 calc(33.333% - 12px);
        max-width: 180px;
    }

    .impact-feature-item::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .impact-showcase-section {
        padding: 10px 0 44px;
    }

    .impact-showcase-card {
        padding: 28px 20px 22px;
        border-radius: 22px;
    }

    .impact-top-highlights {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .impact-highlight-item:not(:last-child)::after {
        top: auto;
        bottom: -9px;
        left: 50%;
        right: auto;
        width: 80px;
        height: 1px;
        transform: translateX(-50%);
    }

    .impact-highlight-item h3 {
        font-size: 26px;
    }

    .impact-product-stage {
        min-height: 320px;
        padding: 12px 0 0;
    }

    .impact-product-ring {
        bottom: 42px;
        width: min(100%, 430px);
        height: 128px;
    }

    .impact-product-glow {
        bottom: 56px;
        width: 340px;
        height: 110px;
    }

    .impact-product-image {
        width: min(100%, 420px);
    }

    .impact-shard {
        width: 84px;
        height: 128px;
        top: 40%;
        opacity: 0.45;
    }

    .impact-feature-item {
        flex-basis: calc(33.333% - 12px);
    }
}

@media (max-width: 480px) {
    .impact-showcase-card {
        padding: 24px 14px 18px;
    }

    .impact-highlight-item {
        padding: 0 8px 8px;
    }

    .impact-highlight-item p {
        font-size: 14px;
    }

    .impact-highlight-item h3 {
        font-size: 24px;
    }

    .impact-product-stage {
        min-height: 260px;
    }

    .impact-product-ring {
        bottom: 28px;
        height: 94px;
    }

    .impact-product-glow {
        bottom: 38px;
        width: 250px;
        height: 82px;
    }

    .impact-shard {
        display: none;
    }

    .impact-feature-strip {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .impact-feature-item {
        max-width: none;
        width: 100%;
        padding: 10px 8px 2px;
    }

    .impact-feature-item::after {
        display: none;
    }
}

@media (min-width: 481px) and (max-width: 620px) {
    .impact-feature-item {
        flex-basis: calc(50% - 12px);
    }
}

/* ==========================================================================
   Our Applications Section — Premium Light/Clean Theme
   ========================================================================== */
.applications-section {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
    padding: 40px 0;
    overflow: hidden;
}

.app-container {
    position: relative;
    z-index: 2;
}

/* Header */
.app-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 55px auto;
}

.app-badge {
    display: inline-block;
    color: #39b54a;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 12px;
    position: relative;
    padding: 0 20px;
}

.app-badge::before,
.app-badge::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 1.5px;
    background: #39b54a;
}

.app-badge::before { left: -6px; }
.app-badge::after { right: -6px; }

.app-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 16px;
}

.app-subtitle {
    font-size: 15px;
    color: #64748b;
    line-height: 1.65;
}

.applications-slider-controls {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.applications-nav-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.applications-nav-btn:hover:not(:disabled) {
    background: #00E676;
    color: #050b11;
    border-color: #00E676;
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(0, 230, 118, 0.35);
}

.applications-nav-btn:disabled {
    cursor: not-allowed;
    opacity: 0.45;
    transform: none;
    box-shadow: none;
}

.applications-carousel {
    overflow: hidden;
    position: relative;
    padding: 10px 0 16px;
}

.applications-track {
    display: flex;
    gap: 20px;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

/* Grid layout — 6 cards in a row on desktop */
.app-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-bottom: 50px;
}

/* Card Styling */
.app-card {
    position: relative;
    flex: 0 0 calc((100% - 60px) / 4);
    min-width: 0;
    height: 380px;
    border-radius: 16px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

/* Background overlay to ensure text readability */
.app-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.8) 75%, #0f172a 100%);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.app-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(15, 23, 42, 0.15);
}

/* Badge Icon at Top */
.app-card-badge {
    position: relative;
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00E676;
}

/* Content block */
.app-card-content {
    position: relative;
    z-index: 2;
    margin-top: auto;
    margin-bottom: 15px; /* Leave space for the charger image */
}

.app-card-content h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px 0;
}

.app-card-content p {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

/* Charger product overlay image at bottom */
.app-card-charger {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 90px;
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
}

.app-card-charger img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.5));
}

/* Hover effect on charger image */
.app-card:hover .app-card-charger {
    bottom: -15px;
    transform: translateX(-50%) scale(1.08);
}

.applications-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.applications-dots .app-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #cbd5e1;
    cursor: pointer;
    transition: var(--transition);
}

.applications-dots .app-dot.active {
    background-color: var(--primary-green);
    width: 20px;
    border-radius: 4px;
}

/* ——— FEATURES BAR ——— */
.app-features-bar {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.app-feature-item {
    display: block;
    gap: 15px;
    align-items: flex-start;
}

.app-feat-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(57, 181, 74, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #39b54a;
    flex-shrink: 0;
}

.app-feat-text h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px 0;
}

.app-feat-text p {
    font-size: 11px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* ——— CTA BANNER ——— */
.app-cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0f172a;
    border-radius: 16px;
    padding: 30px 45px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
}

.app-cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.app-cta-badge-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 230, 118, 0.1);
    border: 1px solid rgba(0, 230, 118, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00E676;
    flex-shrink: 0;
}

.app-cta-left p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.app-cta-left p strong {
    color: #ffffff;
    font-size: 16px;
}

.app-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #39b54a;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(57, 181, 74, 0.25);
}

.app-cta-btn:hover {
    background: #00E676;
    color: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 230, 118, 0.4);
}

/* ——— RESPONSIVE ——— */
@media (max-width: 1200px) {
    .app-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .app-card {
        flex-basis: calc((100% - 40px) / 3);
    }
    .app-features-bar {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .app-title {
        font-size: 30px;
    }
    .applications-section .app-header-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }
    .applications-slider-controls {
        align-self: flex-end;
    }
    .app-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .app-card {
        flex-basis: calc((100% - 20px) / 2);
    }
    .app-features-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    .app-cta-banner {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        padding: 30px 25px;
    }
    .app-cta-left {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .applications-slider-controls {
        align-self: flex-start;
    }
    .app-grid {
        grid-template-columns: 1fr;
    }
    .app-card {
        flex-basis: 100%;
    }
    .app-features-bar {
        grid-template-columns: 1fr;
    }
}

.pdrct_cntr {
    text-align: center;
}
