.ev-text-strip {
  width: 100%;
  overflow: hidden;
  background: #b6f426;
  padding: 5px 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.ev-text-strip__wrap {
  overflow: hidden;
  white-space: nowrap;
}

.ev-text-strip__track {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  animation: evTextStripMove 40s linear infinite;
}

.ev-text-strip__track span {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  flex-shrink: 0;
  animation: textBlinkColor 1.8s infinite linear;
  opacity: 1;
}

/* optional: different timing for second line to make it more dynamic */
.ev-text-strip:nth-of-type(2) .ev-text-strip__track span {
  animation: textBlinkColor 1.4s infinite linear;
}

.ev-text-strip__icon {
  font-size: clamp(26px, 4vw, 60px);
  line-height: 1;
  animation: iconBlinkColor 1.8s infinite linear;
}

@keyframes evTextStripMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* 4-color blinking text */
@keyframes textBlinkColor {
  0% {
    color: #ff1e1e;
    text-shadow: 0 0 6px rgba(255, 30, 30, 0.35);
  }
  25% {
    color: #ff00ff;
    text-shadow: 0 0 8px rgba(255, 0, 255, 0.35);
  }
  50% {
    color: #005eff;
    text-shadow: 0 0 8px rgba(0, 94, 255, 0.35);
  }
  75% {
    color: #ff7a00;
    text-shadow: 0 0 8px rgba(255, 122, 0, 0.35);
  }
  100% {
    color: #ff1e1e;
    text-shadow: 0 0 6px rgba(255, 30, 30, 0.35);
  }
}

/* icon color animation */
@keyframes iconBlinkColor {
  0% {
    color: #111111;
  }
  25% {
    color: #ff00ff;
  }
  50% {
    color: #005eff;
  }
  75% {
    color: #ff7a00;
  }
  100% {
    color: #111111;
  }
}

:root {
  --primary-color: #becb0a;
  --secondary-color: #161515;
}
.image-row-ev-charger-ac-station{
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: clamp(12px, 2vw, 18px);
  margin: clamp(14px, 2vw, 18px) 0 clamp(18px, 2.4vw, 24px);
  flex-wrap: wrap;
}

.imgcard-ev-charger-ac-station{
  width: min(520px, 100%);
  min-height: 300px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line-ev-charger-ac-station);
  background: var(--soft-ev-charger-ac-station);
  box-shadow: var(--shadow-ev-charger-ac-station);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px;
}

.img-ev-charger-ac-station{
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  object-position: center;
}

/* Mobile */
@media (max-width: 640px){
  .imgcard-ev-charger-ac-station{
    flex-basis: 200px;
    max-width: 200px;
  }
}
/* ===================== DC CHARGER HERO (RESPONSIVE) ===================== */

html, body {
  margin: 0;               /* remove default 8px margin that causes scroll with full-bleed rows */
  padding: 0;
  width: 100%;
  overflow-x: hidden;      /* belt-and-suspenders: stop any stray overflow */
}
.ac-charger-hero-dc{
  position: relative;
  min-height: clamp(360px, 90vh, 640px);
  width: 100%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #0b0b0b;
  margin-top: 40px;
  padding-top: 40px;
}

/* Set your background image here */
.ac-charger-hero-bg-dc{
  position: absolute;
  inset: 0;

  background-image: url("../images/acback.avif");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

/* Dark overlay for contrast */
.ac-charger-hero-overlay-dc{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.55) 0%,
    rgba(0,0,0,.35) 45%,
    rgba(0,0,0,.55) 100%
  );
}

/* Container to keep content centered and readable */
.ac-charger-hero-inner-dc{
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(36px, 6vw, 72px) 0;
  padding-top: 75px;
}

.ac-charger-hero-content-dc{
  max-width: 980px;
}

/* Kicker */
.ac-charger-hero-kicker-dc{
  font-size: 12px;
  letter-spacing: .22em;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  margin-bottom: 10px;
}

/* Title */
.ac-charger-hero-title-dc{
  margin: 0;
  font-weight: 900;
  line-height: 1.03;
  color: #fff;
  font-size: clamp(28px, 4.6vw, 64px);
  text-wrap: balance;
}

/* Subtitle */
.ac-charger-hero-subtitle-dc{
  margin: 14px 0 0;
  font-size: clamp(14px, 1.6vw, 18px);
  color: rgba(255,255,255,.82);
  line-height: 1.55;
}

/* ===== Reveal animation (replays on scroll up/down) ===== */
[data-reveal-dc]{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}

[data-reveal-dc].is-inview-dc{
  opacity: 1;
  transform: translateY(0);
}

/* Mobile tweaks */
@media (max-width: 640px){
  .ac-charger-hero-inner-dc{
    width: min(1180px, calc(100% - 26px));
  }
  .ac-charger-hero-title-dc{
    font-size: clamp(26px, 7vw, 44px);
  }
}
/* ===================== DC CHARGER CONTENT (MATCHES #becb0a THEME) ===================== */
/* Use with a wrapper like:
<section class="ac-charger-copy-all-products">
  <div class="ac-charger-copy__container-all-products">
    ...your text...
  </div>
</section>
*/

:root{
  --ac-accent-all-products:#becb0a;     /* your brand lime */
  --ac-ink-all-products:#111214;        /* main text */
  --ac-muted-all-products:#5d6167;      /* secondary text */
  --ac-line-all-products:rgba(17,18,20,.12);
  --ac-bg-all-products:#ffffff;
  --ac-soft-all-products:#f6f7f7;
}

/* Section shell */
.ac-charger-copy-all-products{
  background: var(--ac-bg-all-products);
  padding: clamp(36px, 2vw, 72px) 0;
}

.ac-charger-copy__container-all-products{
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

/* Top label + title */
.ac-charger-kicker-all-products{
  display: inline-block;
  font-size: 12px;
  letter-spacing: .22em;
  font-weight: 800;
  color: var(--ac-ink-all-products);
  text-transform: uppercase;
  margin-bottom: 14px;
  position: relative;
  padding-left: 14px;
}
.ac-charger-kicker-all-products::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  width:8px;
  height:8px;
  border-radius:999px;
  background: var(--ac-accent-all-products);
  transform: translateY(-50%);
}

.ac-charger-title-all-products{
  margin: 0 0 10px;
  font-size: clamp(28px, 3.8vw, 54px);
  font-weight: 900;
  line-height: 1.06;
  color: var(--ac-ink-all-products);
  text-wrap: balance;
}

.ac-charger-lead-all-products{
  margin: 0;
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 1.7;
  color: var(--ac-muted-all-products);
  max-width: 92ch;
}

/* Layout: left copy + right highlights */
.ac-charger-grid-all-products{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
  margin-top: clamp(22px, 3.2vw, 34px);
}

/* Main rich text (your paragraphs) */
.ac-charger-richtext-all-products{
  color: var(--ac-ink-all-products);
  font-size: 16px;
  line-height: 1.85;
}
.ac-charger-richtext-all-products p{
  margin: 0 0 14px;
  color: var(--ac-muted-all-products);
}
.ac-charger-richtext-all-products p strong{
  color: var(--ac-ink-all-products);
}
.ac-charger-richtext-all-products .ac-divider-all-products{
  height: 1px;
  background: var(--ac-line-all-products);
  margin: 18px 0;
}

/* Callouts / highlights (right column) */
.ac-charger-side-all-products{
  position: sticky;
  top: 18px;
}

.ac-charger-card-all-products{
  background: var(--ac-soft-all-products);
  border: 1px solid var(--ac-line-all-products);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 48px rgba(2, 8, 23, .06);
}

.ac-charger-card-all-products + .ac-charger-card-all-products{
  margin-top: 14px;
}

/* Accent header inside cards */
.ac-charger-card__title-all-products{
  display:flex;
  align-items:center;
  gap:10px;
  margin: 0 0 10px;
  color: var(--ac-ink-all-products);
  font-weight: 900;
  font-size: 16px;
}
.ac-charger-card__title-all-products::before{
  content:"";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--ac-accent-all-products);
  box-shadow: 0 0 0 4px rgba(190,203,10,.22);
}

.ac-charger-card__text-all-products{
  margin: 0;
  color: var(--ac-muted-all-products);
  line-height: 1.7;
  font-size: 14px;
}

/* Power chips list */
.ac-charger-chips-all-products{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.ac-charger-chip-all-products{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(17,18,20,.12);
  background: #fff;
  font-weight: 800;
  font-size: 13px;
  color: var(--ac-ink-all-products);
}
.ac-charger-chip-all-products::before{
  content:"";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--ac-accent-all-products);
}

/* “Key points” list */
.ac-charger-points-all-products{
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.ac-charger-points-all-products li{
  position: relative;
  padding-left: 24px;
  color: var(--ac-muted-all-products);
  line-height: 1.65;
  font-size: 14px;
}
.ac-charger-points-all-products li::before{
  content:"✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
  color: var(--ac-accent-all-products);
}

/* Inline “definition” highlight */
.ac-inline-highlight-all-products{
  color: var(--ac-ink-all-products);
  font-weight: 900;
  background: linear-gradient(180deg, transparent 55%, rgba(190,203,10,.35) 55%);
  padding: 0 2px;
}

/* Optional: subtle reveal animation hook (if you already use IO elsewhere) */
.ac-reveal-all-products{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
  will-change: opacity, transform;
}
.ac-reveal-all-products.is-inview-all-products{
  opacity: 1;
  transform: translateY(0);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px){
  .ac-charger-grid-all-products{
    grid-template-columns: 1fr;
  }
  .ac-charger-side-all-products{
    position: relative;
    top: auto;
  }
}

@media (max-width: 640px){
  .ac-charger-copy__container-all-products{
    width: min(1180px, calc(100% - 26px));
  }
  .ac-charger-card-all-products{
    padding: 16px;
    border-radius: 16px;
  }
  .ac-charger-chip-all-products{
    font-size: 12.5px;
    padding: 9px 11px;
  }
}
/* ===== OUR WORK SECTION (Responsive) ===== */
.our-work-all-products{
  background:#fff;
  padding: clamp(28px, 2vw, 80px) 0;
}

.our-work__container-all-products{
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.our-work__grid-all-products{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 3.2vw, 54px);
  align-items: center;
}

/* LEFT IMAGE */
.our-work__imgwrap-all-products{
  width:100%;
  aspect-ratio: 1 / 1;
  overflow:hidden;
  background:#f2f2f2;
}
.our-work__img-all-products{
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1.02);
}

/* RIGHT CONTENT */
.our-work__kicker-all-products{
  font-size: 12px;
  letter-spacing: .18em;
  font-weight: 800;
  color:#111;
  margin-bottom: 10px;
}
.our-work__title-all-products{
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.06;
  margin: 0 0 14px;
  font-weight: 800;
  color:#111;
}
.our-work__lead-all-products{
  margin: 0 0 22px;
  color:#6b6b6b;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.7;
  max-width: 62ch;
}

/* GREEN PANEL */
.our-work__panel-all-products{
  background:#becb0a;
  padding: clamp(18px, 2.6vw, 34px);
}
.our-work__panel-title-all-products{
  margin: 0 0 10px;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 800;
  color:#101010;
}
.our-work__panel-text-all-products{
  margin: 0;
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 1.75;
  color: rgba(16,16,16,.72);
  max-width: 64ch;
}
.our-work__panel-divider-all-products{
  height:1px;
  background: rgba(16,16,16,.18);
  margin: clamp(14px, 2vw, 22px) 0;
}

/* ===== Reveal on scroll (re-triggers on up/down via JS) ===== */
.our-reveal-all-products{
  opacity:0;
  transform: translateY(26px);
  transition: opacity .55s ease, transform .55s ease;
  will-change: opacity, transform;
}
.our-reveal-all-products.is-inview-all-products{
  opacity:1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 980px){
  .our-work__grid-all-products{
    grid-template-columns: 1fr;
    align-items: start;
  }
  .our-work__imgwrap-all-products{
    aspect-ratio: 16 / 11;
  }
}

@media (max-width: 520px){
  .our-work__container-all-products{
    width: calc(100% - 26px);
  }
  .our-work__panel-all-products{
    padding: 18px;
  }
}

/* reduce motion */
@media (prefers-reduced-motion: reduce){
  .our-reveal-all-products{
    opacity:1 !important;
    transform:none !important;
    transition:none !important;
  }
}
/* ===== GREEN FIRST, THEN IMAGE REVEAL (bottom -> top) ===== */
/* Put this BELOW your existing OUR WORK CSS */

/* wrapper */
.our-work__media-all-products{
  position: relative;
  overflow: hidden;
}

/* GREEN layer sits ABOVE the image initially */
.our-work__media-all-products::after{
  content:"";
  position:absolute;
  inset:0;
  background:#becb0a;
  opacity:.9;
  transform: translateY(0%);         /* GREEN visible first */
  transition: transform .9s ease;    /* wipe UP to remove green */
  pointer-events:none;
  z-index: 3;
}

/* IMAGE starts hidden under green (moved down a bit) */
.our-work__imgwrap-all-products{
  position: relative;
  z-index: 1;
}

.our-work__img-all-products{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;

  transform: translateY(18%);        /* hidden-ish */
  filter: saturate(.95) contrast(.98);
  opacity: .15;                      /* faint under green */
  transition: transform .9s ease, opacity .9s ease, filter .9s ease;
}

/* When in view: green wipes UP and image comes in from bottom */
.our-work__media-all-products.is-inview-all-products::after{
  transform: translateY(-100%);      /* remove green (bottom->top) */
}

.our-work__media-all-products.is-inview-all-products .our-work__img-all-products{
  transform: translateY(0%);
  opacity: 1;
  filter: none;
}

/* Optional: replay nicely if you remove/add class on scroll */
.our-work__media-all-products.is-outview-all-products::after{
  transform: translateY(0%);
}
.our-work__media-all-products.is-outview-all-products .our-work__img-all-products{
  transform: translateY(18%);
  opacity: .15;
  filter: saturate(.95) contrast(.98);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .our-work__media-all-products::after,
  .our-work__img-all-products{
    transition: none !important;
  }
  .our-work__media-all-products::after{
    transform: translateY(-100%) !important; /* no green wipe */
    opacity: 0 !important;
  }
  .our-work__img-all-products{
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }
}

/* ================================
   iPower Suite Section (All Products)
   Accent: #becb0a
================================ */

.ipower-suite-all-products{
  --accent-all-products: #becb0a;
  --bg-all-products: #ffffff;
  --text-all-products: #0f172a;
  --muted-all-products: rgba(15, 23, 42, .70);
  --line-all-products: rgba(15, 23, 42, .14);
  --shadow-all-products: 0 22px 70px rgba(2, 8, 23, .14);

  background: var(--bg-all-products);
  padding: clamp(44px, 2vw, 78px) 0;
  overflow: clip;
}

.ipower-suite__container-all-products{
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.ipower-suite__head-all-products{
  text-align: center;
  margin-bottom: clamp(22px, 3vw, 34px);
}

.ipower-suite__kicker-all-products{
  display: inline-block;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(15,23,42,.75);
  font-weight: 800;
  margin-bottom: 12px;
}

.ipower-suite__title-all-products{
  font-size: clamp(26px, 4vw, 46px);
  line-height: 1.06;
  margin: 0 0 10px;
  font-weight: 900;
  color: var(--text-all-products);
}

.ipower-suite__subtitle-all-products{
  margin: 0 auto;
  max-width: 70ch;
  color: var(--muted-all-products);
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.6;
}

/* layout */
.ipower-suite__grid-all-products{
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(16px, 2.4vw, 26px);
  align-items: start;
}

/* benefits card */
.ipower-suite__card-all-products{
  border: 1px solid var(--line-all-products);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(2, 8, 23, .06);
  padding: clamp(18px, 2.3vw, 26px);
  background: #fff;
}

.ipower-suite__card-top-all-products{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.ipower-suite__chip-all-products{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(190,203,10,.16);
  border: 1px solid rgba(190,203,10,.35);
  color: #111827;
  font-weight: 900;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 999px;
}

.ipower-suite__list-all-products{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.ipower-suite__li-all-products{
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, .10);
  transition: transform .25s ease, border-color .25s ease, background-color .25s ease;
}

.ipower-suite__li-all-products:hover{
  transform: translateY(-2px);
  border-color: rgba(190,203,10,.55);
  background: rgba(190,203,10,.08);
}

.ipower-suite__tick-all-products{
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(190,203,10,.18);
  border: 1px solid rgba(190,203,10,.55);
  position: relative;
  margin-top: 2px;
}

.ipower-suite__tick-all-products::after{
  content:"";
  position:absolute;
  left: 5px;
  top: 3px;
  width: 6px;
  height: 10px;
  border-right: 2px solid #111827;
  border-bottom: 2px solid #111827;
  transform: rotate(40deg);
}

.ipower-suite__li-title-all-products{
  font-weight: 900;
  color: var(--text-all-products);
  font-size: 16px;
  line-height: 1.25;
}

.ipower-suite__ctaRow-all-products{
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line-all-products);
}

.ipower-suite__cta-all-products{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  color: #111827;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,.14);
  background: linear-gradient(180deg, rgba(190,203,10,.26), rgba(190,203,10,.12));
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.ipower-suite__cta-all-products:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(2, 8, 23, .10);
  background: rgba(190,203,10,.30);
}

.ipower-suite__arrow-all-products{
  font-size: 18px;
}

/* right stack */
.ipower-suite__stack-all-products{
  display: grid;
  gap: clamp(14px, 2vw, 18px);
}

.ipower-suite__mediaCard-all-products{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: #0b0f14;
  color: #e5e7eb;
  box-shadow: var(--shadow-all-products);
  padding: clamp(16px, 2.2vw, 22px);
  position: relative;
  overflow: hidden;
}

.ipower-suite__mediaCard-all-products::before{
  content:"";
  position:absolute;
  inset:-1px;
  background:
    radial-gradient(900px 400px at 30% 0%, rgba(190,203,10,.14), transparent 60%),
    radial-gradient(700px 420px at 100% 0%, rgba(190,203,10,.10), transparent 60%);
  pointer-events:none;
  z-index: 0;
}

.ipower-suite__mediaTop-all-products{
  position: relative;
  z-index: 1;
  display:flex;
  justify-content: space-between;
  align-items:flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.ipower-suite__mediaKicker-all-products{
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 900;
  color: rgba(255,255,255,.75);
  margin-bottom: 6px;
}

.ipower-suite__mediaTitle-all-products{
  margin: 0;
  font-weight: 950;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.15;
}

.ipower-suite__pill-all-products{
  flex: 0 0 auto;
  display:inline-flex;
  align-items:center;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  color: #111827;
  background: rgba(190,203,10,.92);
}

.ipower-suite__mediaText-all-products{
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  color: rgba(255,255,255,.78);
  line-height: 1.65;
  font-size: 14px;
}

/* image grid (2 images) */
.ipower-suite__images-all-products{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ipower-suite__imgWrap-all-products,
.ipower-suite__imgWrapWide-all-products{
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  text-decoration: none;
  transform: translateZ(0);
}

.ipower-suite__img-all-products{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.ipower-suite__imgWide-all-products{
  width: 100%;
  height: clamp(220px, 26vw, 320px);
  object-fit: cover;
  display: block;
  transition: transform .55s ease;
}

.ipower-suite__imgOverlay-all-products{
  position:absolute;
  inset:0;
  background: rgba(190,203,10,.0);
  transition: background .35s ease;
  pointer-events:none;
}

.ipower-suite__imgWrap-all-products:hover .ipower-suite__img-all-products,
.ipower-suite__imgWrapWide-all-products:hover .ipower-suite__imgWide-all-products{
  transform: scale(1.06);
}

.ipower-suite__imgWrap-all-products:hover .ipower-suite__imgOverlay-all-products,
.ipower-suite__imgWrapWide-all-products:hover .ipower-suite__imgOverlay-all-products{
  background: rgba(190,203,10,.18);
}

/* Wide image card */
.ipower-suite__imgWrapWide-all-products{
  margin-top: 8px;
}

/* ================================
   Reveal on every scroll up/down
================================ */
.js-revealwrap-all-products .js-reveal-all-products{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s ease, transform .65s ease;
  will-change: opacity, transform;
}

.js-revealwrap-all-products.is-inview-all-products .js-reveal-all-products{
  opacity: 1;
  transform: translateY(0);
}

/* stagger */
.js-reveal-all-products[data-stagger]{
  transition-delay: calc(var(--stagger-step, 70ms) * attr(data-stagger number));
}

/* fallback for browsers not supporting attr() in calc: we also set delays in JS */

/* ================================
   Responsive
================================ */
@media (max-width: 980px){
  .ipower-suite__grid-all-products{
    grid-template-columns: 1fr;
  }
  .ipower-suite__container-all-products{
    width: min(1180px, calc(100% - 28px));
  }
}

@media (max-width: 640px){
  .ipower-suite__images-all-products{
    grid-template-columns: 1fr;
  }
  .ipower-suite__img-all-products{
    height: 200px;
  }
}

@media (prefers-reduced-motion: reduce){
  .js-revealwrap-all-products .js-reveal-all-products{
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  .ipower-suite__img-all-products,
  .ipower-suite__imgWide-all-products{
    transition: none !important;
  }
}
/* ===== NEW LAYOUT (Benefits on top, 2 cards below) ===== */

.ipower-suite__top-all-products{
  margin-bottom: clamp(14px, 2.2vw, 20px);
}

/* Benefits card: make list 2 columns on desktop to reduce height */
.ipower-suite__card-all-products .ipower-suite__list-all-products{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Bottom grid: 2 cards side-by-side */
.ipower-suite__bottomGrid-all-products{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 2.2vw, 20px);
  align-items: stretch;
}

/* Make both cards same height nicer */
.ipower-suite__mediaCard-all-products{
  height: 100%;
}

/* Images inside CCMS card: keep them balanced */
.ipower-suite__images-all-products{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* App image fills nicely */
.ipower-suite__imgWide-all-products{
  height: clamp(220px, 22vw, 320px);
}

/* ===== Responsive ===== */
@media (max-width: 980px){
  .ipower-suite__bottomGrid-all-products{
    grid-template-columns: 1fr; /* stack cards */
  }

  .ipower-suite__card-all-products .ipower-suite__list-all-products{
    grid-template-columns: 1fr; /* benefits list single column */
  }
}

@media (max-width: 640px){
  .ipower-suite__images-all-products{
    grid-template-columns: 1fr; /* stack the 2 CCMS images */
  }

  .ipower-suite__img-all-products{
    height: 200px;
  }
}

/* ===================== EV CHARGER AC STATION SECTIONS (THEME ALIGNED) ===================== */
:root{
  --accent-ev-charger-ac-station:#becb0a;
  --ink-ev-charger-ac-station:#111214;
  --muted-ev-charger-ac-station:#5d6167;
  --line-ev-charger-ac-station:rgba(17,18,20,.12);
  --soft-ev-charger-ac-station:#f6f7f7;
  --shadow-ev-charger-ac-station: 0 18px 48px rgba(2, 8, 23, .06);
}

/* container */
.container-ev-charger-ac-station{
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

/* shared header */
.head-ev-charger-ac-station{
  text-align: center;
  margin-bottom: clamp(16px, 2.2vw, 26px);
}

.kicker-ev-charger-ac-station{
  display:inline-block;
  font-size: 12px;
  letter-spacing: .18em;
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(17,18,20,.78);
  margin: 0 0 10px;
  position: relative;
  padding-left: 14px;
}
.kicker-ev-charger-ac-station::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  width:8px;
  height:8px;
  border-radius:999px;
  background: var(--accent-ev-charger-ac-station);
  transform: translateY(-50%);
}

.title-ev-charger-ac-station{
  margin: 0 0 10px;
  font-size: clamp(26px, 3.6vw, 48px);
  font-weight: 950;
  line-height: 1.06;
  color: var(--ink-ev-charger-ac-station);
  text-wrap: balance;
}

.lead-ev-charger-ac-station{
  margin: 0 auto;
  max-width: 78ch;
  color: var(--muted-ev-charger-ac-station);
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.7;
}

/* ===================== Reveal on scroll up and down ===================== */
.reveal-wrap-ev-charger-ac-station .reveal-ev-charger-ac-station{
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}
.reveal-wrap-ev-charger-ac-station.is-inview-ev-charger-ac-station .reveal-ev-charger-ac-station{
  opacity: 1;
  transform: translateY(0);
}

/* ===================== SECTION 1: SPECS + IMAGES + TABLE ===================== */
.specs-ac-ev-charger-ac-station{
  background: #fff;
  padding: clamp(36px, 2.2vw, 76px) 0;
}
.image-row-ev-charger-ac-station{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 2vw, 18px);
  margin: clamp(14px, 2vw, 18px) 0 clamp(18px, 2.4vw, 24px);
  flex-wrap: wrap; /* if you later add 2nd image, it still behaves nicely */
}

.imgcard-ev-charger-ac-station{
  width: min(450px, 100%);
  /* height: clamp(320px, 70vw, 550px);  */
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line-ev-charger-ac-station);
  background: var(--soft-ev-charger-ac-station);
  box-shadow: var(--shadow-ev-charger-ac-station);
}

.img-ev-charger-ac-station{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover; /* keeps it neat; use "contain" if you want no cropping */
}

/* table wrapper */
.table-wrap-ev-charger-ac-station{
  border-radius: 18px;
  border: 1px solid var(--line-ev-charger-ac-station);
  background: #fff;
  box-shadow: var(--shadow-ev-charger-ac-station);
  overflow: hidden;
}

/* desktop table */
.spec-table-ev-charger-ac-station{
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.spec-table-ev-charger-ac-station thead th{
  background: #737b00;              /* similar to your screenshot header bar */
  color: #fff;
  padding: 14px 12px;
  text-align: left;
  font-weight: 900;
  letter-spacing: .02em;
}

.spec-table-ev-charger-ac-station tbody td{
  padding: 12px 12px;
  border-top: 1px solid var(--line-ev-charger-ac-station);
  vertical-align: top;
  color: var(--muted-ev-charger-ac-station);
}

.spec-table-ev-charger-ac-station tbody tr:hover td{
  background: rgba(190,203,10,.08);
}

.spec-table-ev-charger-ac-station tbody td:nth-child(1){
  width: 56px;
  color: var(--ink-ev-charger-ac-station);
  font-weight: 900;
}

.spec-table-ev-charger-ac-station tbody td:nth-child(2){
  color: var(--ink-ev-charger-ac-station);
  font-weight: 800;
}

/* make table scrollable if needed on medium screens */
@media (max-width: 980px){
  .table-wrap-ev-charger-ac-station{
    overflow-x: auto;
  }
  .spec-table-ev-charger-ac-station{
    min-width: 860px;
  }
}

/* mobile: transform table rows into stacked cards */
@media (max-width: 720px){
  .image-row-ev-charger-ac-station{
    grid-template-columns: 1fr;
  }

  .spec-table-ev-charger-ac-station{
    min-width: 0;
  }

  .spec-table-ev-charger-ac-station thead{
    display: none;
  }

  .spec-table-ev-charger-ac-station,
  .spec-table-ev-charger-ac-station tbody,
  .spec-table-ev-charger-ac-station tr,
  .spec-table-ev-charger-ac-station td{
    display: block;
    width: 100%;
  }

  .spec-table-ev-charger-ac-station tr{
    border-top: 1px solid var(--line-ev-charger-ac-station);
    padding: 10px 12px;
  }

  .spec-table-ev-charger-ac-station td{
    border: 0;
    padding: 8px 0;
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 10px;
    align-items: start;
  }

  .spec-table-ev-charger-ac-station td::before{
    content: attr(data-label);
    font-weight: 950;
    color: var(--ink-ev-charger-ac-station);
  }

  .spec-table-ev-charger-ac-station tbody td:nth-child(2){
    font-weight: 900;
  }

  .spec-table-ev-charger-ac-station tbody td:nth-child(1){
    width: auto;
  }
}
@media (max-width: 420px){
  .imgcard-ev-charger-ac-station{
    height: auto;
    min-height: auto;
  }
}
/* ===================== SECTION 2: FEATURES ===================== */
.features-ac-ev-charger-ac-station{
  background: #fff;
  padding: clamp(36px, 2.2vw, 76px) 0;
}

.feature-grid-ev-charger-ac-station{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(12px, 2.4vw, 22px);
  align-items: stretch;
}

.feature-card-ev-charger-ac-station{
  background: var(--soft-ev-charger-ac-station);
  border: 1px solid var(--line-ev-charger-ac-station);
  border-radius: 18px;
  padding: clamp(16px, 2.2vw, 22px);
  box-shadow: var(--shadow-ev-charger-ac-station);
}

.feature-list-ev-charger-ac-station{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.feature-list-ev-charger-ac-station li{
  position: relative;
  padding-left: 24px;
  color: var(--muted-ev-charger-ac-station);
  line-height: 1.6;
  font-size: 14px;
}

.feature-list-ev-charger-ac-station li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  font-weight: 950;
  color: var(--accent-ev-charger-ac-station);
}

.subhead-ev-charger-ac-station{
  margin: 0 0 10px;
  font-weight: 950;
  color: var(--ink-ev-charger-ac-station);
  font-size: 18px;
  line-height: 1.25;
}

.text-ev-charger-ac-station{
  margin: 0;
  color: var(--muted-ev-charger-ac-station);
  line-height: 1.7;
  font-size: 14px;
}

.chip-row-ev-charger-ac-station{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.chip-ev-charger-ac-station{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(17,18,20,.12);
  background: #fff;
  font-weight: 900;
  font-size: 13px;
  color: var(--ink-ev-charger-ac-station);
}

.chip-ev-charger-ac-station::before{
  content:"";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent-ev-charger-ac-station);
}

/* ===================== SECTION 3: DLB ===================== */
.dlb-ac-ev-charger-ac-station{
  background: #fff;
  padding: clamp(36px, 2.2vw, 76px) 0;
}

.dlb-grid-ev-charger-ac-station{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(14px, 2.6vw, 26px);
  align-items: center;
}

.dlb-copy-ev-charger-ac-station{
  text-align: left;
}

.dlb-media-ev-charger-ac-station{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line-ev-charger-ac-station);
  background: var(--soft-ev-charger-ac-station);
  box-shadow: var(--shadow-ev-charger-ac-station);
}

/* CTA */
.cta-ev-charger-ac-station{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-top: 14px;
  text-decoration:none;
  font-weight: 950;
  color: #111827;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,.14);
  background: linear-gradient(180deg, rgba(190,203,10,.26), rgba(190,203,10,.12));
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.cta-ev-charger-ac-station:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(2, 8, 23, .10);
  background: rgba(190,203,10,.30);
}
.cta-arrow-ev-charger-ac-station{ font-size: 18px; }

/* responsive */
@media (max-width: 980px){
  .container-ev-charger-ac-station{ width: min(1180px, calc(100% - 28px)); }
  .feature-grid-ev-charger-ac-station{ grid-template-columns: 1fr; }
  .dlb-grid-ev-charger-ac-station{ grid-template-columns: 1fr; }
  .dlb-copy-ev-charger-ac-station{ text-align: center; }
}
@media (max-width: 640px){
  .container-ev-charger-ac-station{
    width: min(1180px, calc(100% - 26px));
  }

  .imgcard-ev-charger-ac-station{
    width: 100%;
    min-height: auto;
    padding: 10px;
  }

  .img-ev-charger-ac-station{
    height: auto;
    max-height: 220px;
    object-fit: contain;
  }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce){
  .reveal-wrap-ev-charger-ac-station .reveal-ev-charger-ac-station{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* accessibility helper */
.sr-only-ev-charger-ac-station{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* ===== AC HERO SLIDER ===== */
#ac-charger-hero-dc{
  position: relative;
  width: 100%;
  min-height: clamp(620px, 88vh, 980px);
  overflow: hidden;
  background: #000;
}

/* slides wrapper */
.ac-hero-slides{
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* each slide fills full area */
.ac-hero-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 700ms ease;
  background-image: var(--ac-hero-bg);
  background-size: cover;          /* IMPORTANT: removes empty space */
  background-position: center;
  background-repeat: no-repeat;
}

/* visible slide */
.ac-hero-slide.is-active{
  opacity: 1;
  pointer-events: auto;
}

/* keep your overlay above slides */
.ac-charger-hero-overlay-dc{
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* your content above overlay */
.ac-charger-hero-inner-dc{
  position: relative;
  z-index: 2;
}

/* dots */
.ac-hero-dots{
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.ac-hero-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.85);
  background: transparent;
  cursor: pointer;
  opacity: 0.75;
}

.ac-hero-dot.is-active{
  background: rgba(255,255,255,0.98);
  opacity: 1;
}

/* =========================
   PROD HERO (Slider) CSS
   Paste this into your dc-charging-station.css (or reuse product.css)
   ========================= */

:root{
  --prod-nav-h: 72px;
  --prod-accent: #becb0a;
  --prod-text: #fff;

  /* overlay strength */
  --prod-overlay-1: rgba(0,0,0,0.90);
  --prod-overlay-2: rgba(0,0,0,0.62);
  --prod-overlay-3: rgba(0,0,0,0.00);

  --prod-max: 1180px;
}

.prod-hero{
  font-family: inherit;
  position: relative;
}

/* Slider wrapper */
.prod-hero__slider{
  position: relative;
  overflow: hidden;
  background: #000;

  /* Hero height */
  min-height: clamp(520px, calc(100vh - var(--prod-nav-h)), 760px);
}

/* Each slide fills full hero */
.prod-hero__slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 700ms ease;
  overflow: hidden;

  /* Overlay (layer 1) + image (layer 2) */
  background-image:
    linear-gradient(
      90deg,
      var(--prod-overlay-1) 0%,
      var(--prod-overlay-2) 44%,
      rgba(0,0,0,0.15) 62%,
      var(--prod-overlay-3) 74%
    ),
    var(--prod-bg);

  background-repeat: no-repeat, no-repeat;

  /* IMPORTANT:
     If you want the image to occupy ALL area (no side empty space), use cover.
     This may crop a little depending on screen ratio.
  */
  background-size: 100% 100%, cover;
  background-position: 0 0, center center;
}

.prod-hero__slide.is-active{
  opacity: 1;
  pointer-events: auto;
}
.prod-hero__container{
  height: 100%;
  max-width: var(--prod-max);
  margin: 0 auto;
  padding: clamp(20px, 3.2vw, 52px);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.prod-hero__content{
  max-width: 540px;
}

.prod-hero__title{
  margin: 0 0 14px;
  font-weight: 850;
  line-height: 1.02;
  color: var(--prod-text);
  font-size: clamp(34px, 4.6vw, 64px);
}

.prod-hero__subtitle{
  margin: 0 0 20px;
  color: rgba(255,255,255,0.82);
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.6;
  max-width: 46ch;
}

/* Button */
.prod-hero__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  background: var(--prod-accent);
  color: #111;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
}

/* Dots */
.prod-hero__dots{
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.prod-hero__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.85);
  background: transparent;
  cursor: pointer;
  opacity: 0.75;
}

.prod-hero__dot.is-active{
  background: rgba(255,255,255,0.98);
  opacity: 1;
}

/* Reveal animation */
.prod-hero__reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
  will-change: transform, opacity;
}

.prod-hero__reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* Mobile tuning */
@media (max-width: 768px){
  .prod-hero__slide{
    background-size: 100% 100%, cover;
    background-position: 0 0, center top;
  }

  .prod-hero__title{
    font-size: clamp(34px, 8vw, 54px);
    line-height: 1.02;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .prod-hero__slide,
  .prod-hero__reveal{
    transition: none !important;
  }
}



/* =========================================================
   MOBILE FIX OVERRIDES
   Paste this at the VERY END of your CSS file
========================================================= */

/* safer sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

/* prevent images from overflowing */
img {
  max-width: 100%;
  display: block;
}

/* ================= HERO FIX ================= */
.prod-hero__slider {
  min-height: clamp(520px, 88svh, 760px);
}

.prod-hero__slide {
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
  background-position: center center, center center;
}

.prod-hero__container {
  min-height: inherit;
  width: min(1180px, calc(100% - 32px));
  padding: 24px 16px 70px;
  align-items: center;
}

.prod-hero__content {
  width: 100%;
  max-width: 560px;
}

.prod-hero__title {
  margin: 0 0 14px;
  font-size: clamp(34px, 8vw, 78px);
  line-height: 1.02;
}

.prod-hero__subtitle {
  margin: 0 0 18px;
  font-size: clamp(14px, 3.8vw, 18px);
  line-height: 1.6;
}

.prod-hero__btn {
  padding: 12px 18px;
  font-size: 13px;
}

.prod-hero__dots {
  bottom: 12px;
}

/* ================= TEXT STRIP FIX ================= */
.ev-text-strip {
  width: 100%;
  overflow: hidden;
}

.ev-text-strip__wrap {
  width: 100%;
  overflow: hidden;
}

.ev-text-strip__track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  min-width: max-content;
}

.ev-text-strip__track span {
  font-size: 15px;
  letter-spacing: 1px;
}

/* ================= SECTION CONTAINERS ================= */
.ac-charger-copy__container-all-products,
.our-work__container-all-products,
.container-ev-charger-ac-station,
.ipower-suite__container-all-products {
  width: min(1180px, calc(100% - 24px));
  margin: 0 auto;
}

/* ================= IMAGE CARD FIX ================= */
.image-row-ev-charger-ac-station {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
  flex-wrap: wrap;
  margin: 18px 0 24px;
}

.imgcard-ev-charger-ac-station {
  width: min(520px, 100%);
  min-height: 300px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(17,18,20,.12);
  background: #f6f7f7;
  box-shadow: 0 18px 48px rgba(2, 8, 23, .06);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px;
}

.img-ev-charger-ac-station {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
}

/* DLB image box */
.dlb-media-ev-charger-ac-station .img-ev-charger-ac-station {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ================= COPY SECTIONS ================= */
.ac-charger-grid-all-products,
.feature-grid-ev-charger-ac-station,
.dlb-grid-ev-charger-ac-station,
.our-work__grid-all-products,
.ipower-suite__grid-all-products,
.ipower-suite__bottomGrid-all-products {
  gap: 18px;
}

/* ================= MOBILE LAYOUT ================= */
@media (max-width: 768px) {
  .prod-hero__slider {
    min-height: 78svh;
  }

  .prod-hero__slide {
    background-size: cover, cover;
    background-position: 68% center, 68% center;
  }

  .prod-hero__container {
    width: calc(100% - 24px);
    padding: 18px 12px 64px;
    align-items: center;
  }

  .prod-hero__content {
    max-width: 92%;
  }

  .prod-hero__kicker {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .prod-hero__title {
    font-size: clamp(28px, 9vw, 42px);
    line-height: 1.04;
  }

  .prod-hero__subtitle {
    font-size: 14px;
    line-height: 1.55;
    max-width: 100%;
  }

  .prod-hero__btn {
    font-size: 12px;
    padding: 11px 16px;
  }

  .ev-text-strip__track span {
    font-size: 13px;
    letter-spacing: .6px;
  }

  .ac-charger-grid-all-products,
  .our-work__grid-all-products,
  .feature-grid-ev-charger-ac-station,
  .dlb-grid-ev-charger-ac-station,
  .ipower-suite__grid-all-products,
  .ipower-suite__bottomGrid-all-products {
    grid-template-columns: 1fr !important;
  }

  .ac-charger-side-all-products {
    position: static;
  }

  .head-ev-charger-ac-station,
  .dlb-copy-ev-charger-ac-station {
    text-align: center;
  }

  .imgcard-ev-charger-ac-station {
    width: 100%;
    min-height: 240px;
    padding: 14px;
  }

  .img-ev-charger-ac-station {
    max-height: 320px;
  }

  .our-work__imgwrap-all-products {
    aspect-ratio: 16 / 10;
  }

  .spec-table-ev-charger-ac-station td {
    grid-template-columns: 110px 1fr;
    gap: 8px;
    word-break: break-word;
  }
}

@media (max-width: 480px) {
  .prod-hero__slider {
    min-height: 72svh;
  }

  .prod-hero__slide {
    background-position: 72% center, 72% center;
  }

  .prod-hero__content {
    max-width: 100%;
  }

  .prod-hero__title {
    font-size: clamp(24px, 8.6vw, 34px);
  }

  .prod-hero__subtitle {
    font-size: 13px;
  }

  .prod-hero__btn {
    width: auto;
    min-width: 160px;
    text-align: center;
  }

  .imgcard-ev-charger-ac-station {
    min-height: 220px;
  }

  .img-ev-charger-ac-station {
    max-height: 260px;
  }

  .title-ev-charger-ac-station,
  .ac-charger-title-all-products,
  .our-work__title-all-products,
  .ipower-suite__title-all-products {
    font-size: clamp(24px, 7vw, 32px);
    line-height: 1.12;
  }

  .lead-ev-charger-ac-station,
  .ac-charger-lead-all-products,
  .our-work__lead-all-products,
  .text-ev-charger-ac-station,
  .ac-charger-card__text-all-products {
    font-size: 14px;
    line-height: 1.65;
  }

  .spec-table-ev-charger-ac-station td {
    grid-template-columns: 1fr;
  }

  .spec-table-ev-charger-ac-station td::before {
    margin-bottom: 4px;
  }
}

/* ================= REVEAL SAFETY FALLBACK ================= */
/* so content never stays invisible on mobile if JS delays */
@media (max-width: 768px) {
  .ac-reveal-all-products,
  .reveal-wrap-ev-charger-ac-station .reveal-ev-charger-ac-station,
  .our-reveal-all-products,
  [data-reveal-dc],
  .prod-hero__reveal {
    opacity: 1;
    transform: none;
  }
}

/* ===== FINAL HERO FIX ===== */
.prod-hero__slider{
  min-height: clamp(520px, 82svh, 760px);
  overflow: hidden;
}

.prod-hero__slide{
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.prod-hero__container{
  min-height: inherit;
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: 24px 14px 70px;
  display: flex;
  align-items: center;
}

.prod-hero__content{
  width: 100%;
  max-width: 560px;
}

.prod-hero__title{
  margin: 0 0 12px;
  font-size: clamp(30px, 7vw, 64px);
  line-height: 1.05;
  font-weight: 850;
  word-break: normal;
  overflow-wrap: break-word;
}

.prod-hero__subtitle{
  font-size: clamp(14px, 2.8vw, 18px);
  line-height: 1.55;
  max-width: 42ch;
}

.prod-hero__btn{
  padding: 12px 18px;
  font-size: 13px;
}

@media (max-width: 768px){
  .prod-hero__slider{
    min-height: 70svh;
  }

  .prod-hero__slide{
    background-size: cover;
    background-position: center center;
  }

  .prod-hero__content{
    max-width: 100%;
  }

  .prod-hero__title{
    font-size: clamp(24px, 8vw, 40px);
    line-height: 1.08;
  }

  .prod-hero__subtitle{
    font-size: 14px;
    line-height: 1.5;
  }
}

@media (max-width: 480px){
  .prod-hero__slider{
    min-height: 64svh;
  }

  .prod-hero__container{
    width: calc(100% - 20px);
    padding: 16px 10px 60px;
  }

  .prod-hero__title{
    font-size: clamp(22px, 8.5vw, 34px);
    line-height: 1.08;
  }

  .prod-hero__subtitle{
    font-size: 13px;
  }
}

/* ===================== DC CHARGER HERO (RESPONSIVE) ===================== */

html, body {
  margin: 0;               /* remove default 8px margin that causes scroll with full-bleed rows */
  padding: 0;
  width: 100%;
  overflow-x: hidden;      /* belt-and-suspenders: stop any stray overflow */
}
.portable-charger-hero-dc{
  position: relative;
  min-height: clamp(360px, 90vh, 640px);
  width: 100%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #0b0b0b;
  margin-top: 40px;
  padding-top: 40px;
}

/* Set your background image here */
.portable-charger-hero-bg-dc{
  position: absolute;
  inset: 0;
  background-image: url("../images/banner/slide1.avif");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

/* Dark overlay for contrast */
.portable-charger-hero-overlay-dc{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.55) 0%,
    rgba(0,0,0,.35) 45%,
    rgba(0,0,0,.55) 100%
  );
}

/* Container to keep content centered and readable */
.portable-charger-hero-inner-dc{
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(36px, 6vw, 72px) 0;
  padding-top: 75px;
}

.portable-charger-hero-content-dc{
  max-width: 980px;
}

/* Kicker */
.portable-charger-hero-kicker-dc{
  font-size: 12px;
  letter-spacing: .22em;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  margin-bottom: 10px;
}

/* Title */
.portable-charger-hero-title-dc{
  margin: 0;
  font-weight: 900;
  line-height: 1.03;
  color: #fff;
  font-size: clamp(28px, 4.6vw, 64px);
  text-wrap: balance;
}

/* Subtitle */
.portable-charger-hero-subtitle-dc{
  margin: 14px 0 0;
  font-size: clamp(14px, 1.6vw, 18px);
  color: rgba(255,255,255,.82);
  line-height: 1.55;
}

/* ===== Reveal animation (replays on scroll up/down) ===== */
[data-reveal-dc]{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}

[data-reveal-dc].is-inview-dc{
  opacity: 1;
  transform: translateY(0);
}

/* Mobile tweaks */
@media (max-width: 640px){
  .portable-charger-hero-inner-dc{
    width: min(1180px, calc(100% - 26px));
  }
  .portable-charger-hero-title-dc{
    font-size: clamp(26px, 7vw, 44px);
  }
}