@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #1c1c1c;
    color: #fff;
}


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


/* ================================================================================================================= */

/* ============================= */
/* SECTION */
/* ============================= */
.ev-video-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    margin-top: 80px;
}

/* ============================= */
/* VIDEO */
/* ============================= */
.ev-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

/* ============================= */
/* OVERLAY */
/* ============================= */
.ev-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.675);
    z-index: 1;
}

/* ============================= */
/* CONTENT */
/* ============================= */
.ev-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 20px;
    color: #fff;
}

/* HEADING */
.ev-content h2 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;

    /* Gradient Text */
    background: linear-gradient(90deg, #ffffff, #b8f7e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* Text Shadow */
    text-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

/* Highlight word */
.ev-content h2 span {
    background: linear-gradient(90deg, #a4fad3, #45e5ad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* SUBLINE */
.ev-content p {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.7;
    color: #e5e7eb;

    /* Shadow */
    text-shadow: 0 6px 20px rgba(0,0,0,0.7);
}

/* ============================= */
/* EXTRA PREMIUM EFFECT */
/* ============================= */
.ev-video-section::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74,222,128,0.15), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(60px);
    z-index: 1;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */
@media (max-width: 768px) {

    .ev-content {
        padding: 0 15px;
    }

    .ev-content h2 {
        font-size: 28px;
    }

    .ev-content p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {

    .ev-video-section {
        height: 90vh;
    }

    .ev-content h2 {
        font-size: 24px;
    }

    .ev-content p {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* ================================================================================================================================= */


/* ========================= */
/* EV HERO SECTION */
/* ========================= */

.ev-hero {
  /* --ev-header-offset: 80px; */
  display: flex;
  width: 100%;
  min-height: calc(100vh - var(--ev-header-offset));
  margin-top: var(--ev-header-offset);
  overflow: hidden;
  position: relative;
  font-family: 'Poppins', sans-serif;
  background:
    radial-gradient(circle at 14% 18%, rgba(65, 134, 110, 0.24), transparent 24%),
    radial-gradient(circle at 82% 14%, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(120deg, #020504 0%, #08110d 38%, #0f1f18 100%);
}

.ev-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 5, 4, 0.88) 0%, rgba(4, 8, 7, 0.78) 40%, rgba(4, 8, 7, 0.18) 100%);
  pointer-events: none;
  z-index: 0;
}

.ev-hero-ambient,
.ev-hero-grid {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.ev-hero-ambient {
  border-radius: 50%;
  filter: blur(18px);
}

.ev-hero-ambient--one {
  width: 260px;
  height: 260px;
  top: 10%;
  left: -90px;
  background: rgba(65, 134, 110, 0.22);
  animation: evFloat 10s ease-in-out infinite;
}

.ev-hero-ambient--two {
  width: 220px;
  height: 220px;
  right: 10%;
  bottom: 8%;
  background: rgba(123, 232, 184, 0.12);
  animation: evFloat 12s ease-in-out infinite reverse;
}

.ev-hero-grid {
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.55), transparent 88%);
  opacity: 0.18;
}

/* ========================= */
/* LEFT SIDE */
/* ========================= */

.ev-left {
  width: 50%;
  min-height: calc(100vh - var(--ev-header-offset));
  position: relative;
  z-index: 1;
  color: #fff;
  padding: clamp(18px, 2.2vw, 28px) clamp(26px, 5vw, 78px) clamp(26px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* BREADCRUMB (optional like image) */
.ev-breadcrumb {
  display: inline-flex;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(126, 231, 183, 0.16);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  font-size: 12px;
  color: #d6ece4;
  margin-bottom: 16px;
  opacity: 0.95;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* HEADING */
.ev-left h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.04;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
  max-width: 100%;
}

.ev-left h1 span {
  display: block;
  margin-top: 8px;
  background: linear-gradient(90deg, #76dfb0 0%, #4ec796 45%, #eefcf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 24px rgba(118, 223, 176, 0.18);
}

/* SUB TEXT */
.ev-subtext,
.ev-desc {
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.72;
  color: rgba(231, 242, 237, 0.88);
  max-width: 100%;
  width: 100%;
}

.ev-subtext {
  margin-bottom: 10px;
}

.ev-desc {
  color: rgba(203, 213, 225, 0.84);
  margin-bottom: 12px;
}

.ev-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 12px;
  max-width: 620px;
}

.ev-highlight-card {
  position: relative;
  overflow: hidden;
  padding: 18px 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(126, 231, 183, 0.14);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.ev-highlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.16) 50%, transparent 82%);
  transform: translateX(-130%);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.ev-highlight-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(126, 231, 183, 0.1), rgba(126, 231, 183, 0.9), rgba(126, 231, 183, 0.1));
  opacity: 0.7;
}

.ev-highlight-card strong {
  display: block;
  margin-bottom: 6px;
  color: #f7fcfa;
  font-size: 15px;
}

.ev-highlight-card span {
  color: rgba(220, 234, 227, 0.8);
  font-size: 13px;
  line-height: 1.6;
}

.ev-highlight-card.ev-highlight-card--active {
  transform: translateY(-6px);
  border-color: rgba(126, 231, 183, 0.34);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(126, 231, 183, 0.06));
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
}

.ev-highlight-card.ev-highlight-card--active::before {
  transform: translateX(130%);
}

/* AUTHOR (optional) */
.ev-author {
  margin-top: 25px;
  font-size: 13px;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ========================= */
/* RIGHT IMAGE */
/* ========================= */

.ev-right {
  width: 50%;
  min-height: calc(100vh - var(--ev-header-offset));
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  align-items: flex-start;
}

.ev-visual-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: calc(100vh - var(--ev-header-offset));
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}

/* IMAGE */
.ev-visual-frame img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(100vh - var(--ev-header-offset));
  max-height: none;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: drop-shadow(0 34px 70px rgba(0, 0, 0, 0.42));
}

/* DARK OVERLAY (like reference blending) */
.ev-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.16),
    transparent
  );
  z-index: 1;
}

.ev-energy-ring {
  position: absolute;
  width: clamp(240px, 34vw, 460px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(126, 231, 183, 0.22);
  box-shadow:
    0 0 0 18px rgba(126, 231, 183, 0.04),
    0 0 0 42px rgba(126, 231, 183, 0.03);
  background: radial-gradient(circle, rgba(126, 231, 183, 0.18) 0%, rgba(126, 231, 183, 0.02) 56%, transparent 74%);
  animation: evPulse 4.8s ease-in-out infinite;
}

.ev-floating-badge {
  position: absolute;
  z-index: 3;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(7, 17, 13, 0.72);
  border: 1px solid rgba(126, 231, 183, 0.16);
  color: #f5fcf8;
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ev-floating-badge--top {
  top: 14%;
  right: 8%;
  animation: evBadgeFloat 5.5s ease-in-out infinite;
}

.ev-floating-badge--bottom {
  left: 8%;
  bottom: 14%;
  animation: evBadgeFloat 6s ease-in-out infinite reverse;
}

@keyframes evPulse {
  0%,
  100% {
    transform: scale(0.98);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@keyframes evFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

@keyframes evBadgeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

/* TABLET */
@media (max-width: 992px) {
  .ev-hero {
    --ev-header-offset: 80px;
    flex-direction: column;
    height: auto;
    min-height: auto;
    margin-top: 80px;
  }

  .ev-left {
    width: 100%;
    min-height: auto;
    padding: 24px 30px 28px;
    text-align: center;
    align-items: center;
  }

  .ev-breadcrumb {
    margin-inline: auto;
  }

  .ev-left h1 {
    max-width: 100%;
  }

  .ev-subtext,
  .ev-desc {
    max-width: 100%;
  }

  .ev-right {
    width: 100%;
    min-height: 340px;
  }

  .ev-visual-frame {
    align-items: center;
  }

  .ev-visual-frame img {
    width: min(100%, 900px);
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .ev-highlights {
    max-width: 100%;
  }

  .ev-floating-badge--top {
    top: 10%;
    right: 6%;
  }

  .ev-floating-badge--bottom {
    left: 6%;
    bottom: 10%;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .ev-hero {
    --ev-header-offset: 80px;
    margin-top: 80px;
  }

  .ev-left {
    padding: 18px 20px 22px;
  }

  .ev-breadcrumb {
    font-size: 11px;
    padding: 9px 12px;
    margin-bottom: 12px;
  }

  .ev-left h1 {
    max-width: 100%;
    margin-bottom: 12px;
  }

  .ev-subtext {
    margin-bottom: 8px;
  }

  .ev-desc {
    margin-bottom: 10px;
  }

  .ev-highlights {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 10px;
  }

  .ev-highlight-card {
    padding: 14px 14px;
  }

  .ev-right {
    min-height: 260px;
  }

  .ev-floating-badge {
    font-size: 10px;
    padding: 10px 12px;
  }

  .ev-floating-badge--top {
    top: 10px;
    right: 10px;
  }

  .ev-floating-badge--bottom {
    left: 10px;
    bottom: 10px;
  }

  .ev-energy-ring {
    width: 220px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .ev-highlight-card:hover {
    transform: translateY(-6px);
    border-color: rgba(126, 231, 183, 0.28);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(126, 231, 183, 0.05));
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
  }

  .ev-highlight-card:hover::before {
    transform: translateX(130%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ev-hero-ambient,
  .ev-energy-ring,
  .ev-floating-badge {
    animation: none !important;
  }

  .ev-highlight-card,
  .ev-visual-frame img {
    transition: none !important;
  }
}

/* ================================================================================================================================= */
/* Premium EV video section - keeps the original page layout */

.ev-video-section {
    --ev-mouse-x: 50%;
    --ev-mouse-y: 50%;
    isolation: isolate;
    background: #030806;
}

.ev-bg-video {
    filter: saturate(1.12) contrast(1.08);
    transform: translate(-50%, -50%) scale(1.025);
}

.ev-overlay {
    background:
        radial-gradient(circle at var(--ev-mouse-x) var(--ev-mouse-y), rgba(126, 231, 183, 0.12), transparent 28%),
        linear-gradient(90deg, rgba(2, 5, 4, 0.54), rgba(2, 5, 4, 0.28) 48%, rgba(2, 5, 4, 0.44)),
        rgba(0, 0, 0, 0.08);
}

.ev-video-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 36%, rgba(2, 5, 4, 0.75)),
        linear-gradient(90deg, rgba(126, 231, 183, 0.08), transparent 24%, transparent 76%, rgba(126, 231, 183, 0.07));
}

.ev-video-section::after {
    width: clamp(280px, 42vw, 640px);
    height: clamp(280px, 42vw, 640px);
    background: radial-gradient(circle, rgba(126, 231, 183, 0.22), rgba(44, 170, 80, 0.08) 42%, transparent 68%);
    top: var(--ev-mouse-y);
    left: var(--ev-mouse-x);
    opacity: 0.85;
    animation: evVideoGlow 7s ease-in-out infinite;
}

.ev-video-grid,
.ev-video-glow {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.ev-video-grid {
    background-image:
        linear-gradient(rgba(126, 231, 183, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(126, 231, 183, 0.08) 1px, transparent 1px);
    background-size: 76px 76px;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.72), transparent 72%);
    opacity: 0.24;
}

.ev-video-glow {
    background:
        linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.1) 48%, transparent 64%);
    transform: translateX(-120%);
    animation: evVideoShine 6s ease-in-out infinite;
}

.ev-content {
    max-width: min(900px, calc(100% - 40px));
    padding: clamp(18px, 3vw, 30px);
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    transform: translateY(clamp(-56px, -5vw, -28px));
}

.ev-video-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: #c8ffe4;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ev-video-kicker::before,
.ev-video-kicker::after {
    content: "";
    width: clamp(24px, 5vw, 52px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(126, 231, 183, 0.86));
}

.ev-video-kicker::after {
    background: linear-gradient(90deg, rgba(126, 231, 183, 0.86), transparent);
}

.ev-content h2 {
    font-size: clamp(34px, 5.8vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.03em;
    background: linear-gradient(92deg, #ffffff 0%, #edfdf5 36%, #76dfb0 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.ev-content p {
    max-width: 780px;
    margin-inline: auto;
    color: rgba(232, 246, 239, 0.88);
}

.ev-hero {
  --ev-header-offset: 0px;
  min-height: 100vh;
  margin-top: 0;
}

.ev-left,
.ev-right,
.ev-visual-frame {
  min-height: 100vh;
}

.ev-left {
  justify-content: center;
  padding-top: clamp(34px, 4vw, 62px);
  padding-bottom: clamp(34px, 4vw, 62px);
}

.ev-hero::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 90px;
  background: linear-gradient(180deg, rgba(3, 8, 6, 0.96), transparent);
  pointer-events: none;
  z-index: 0;
}

@keyframes evVideoGlow {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(0.95);
        opacity: 0.68;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.08);
        opacity: 0.95;
    }
}

@keyframes evVideoShine {
    0%,
    46% {
        transform: translateX(-120%);
    }
    72%,
    100% {
        transform: translateX(120%);
    }
}

@media (max-width: 992px) {
    .ev-video-section {
        min-height: 100vh;
        height: auto;
        padding: 88px 20px 32px;
        align-items: center;
    }

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

    .ev-hero {
        margin-top: 0;
    }
}

@media (max-width: 576px) {
    .ev-video-section {
        min-height: auto;
        padding: 82px 16px 28px;
    }

    .ev-content {
        max-width: 100%;
        padding: 20px 16px;
        transform: translateY(-18px);
    }

    .ev-content h2 {
        font-size: clamp(30px, 11vw, 42px);
    }

    .ev-content p {
        font-size: 14px;
    }

    .ev-hero {
        margin-top: 0;
    }

    .ev-left,
    .ev-right,
    .ev-visual-frame {
        min-height: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ev-video-section::after,
    .ev-video-glow {
        animation: none !important;
    }

}


/* ================================================================================================================= */

/* ============================= */
/* SECTION */
/* ============================= */
.ev-battery-section {
    padding: 100px 6%;
    background: #0a0f0d;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

/* subtle glow background */
.ev-battery-section::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(74,222,128,0.15), transparent);
    top: 10%;
    left: 10%;
    filter: blur(80px);
}

/* ============================= */
/* CONTAINER */
/* ============================= */
.ev-battery-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* ============================= */
/* LEFT IMAGE */
/* ============================= */
.ev-battery-left {
    flex: 1;
    display: flex;
    justify-content: center;
}

.battery-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    transition: 0.4s;
}

.battery-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* glow effect */
.battery-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(74,222,128,0.25), transparent);
    opacity: 0;
    transition: 0.4s;
}

.battery-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.battery-card:hover .battery-glow {
    opacity: 1;
}

/* ============================= */
/* RIGHT CONTENT */
/* ============================= */
.ev-battery-right {
    flex: 1;
}

.ev-battery-right h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.ev-battery-right h2 span {
    background: linear-gradient(90deg, #4ade80, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ev-desc {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* ============================= */
/* FEATURE CARDS */
/* ============================= */
.ev-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ev-feature-card {
    padding: 18px;
    border-radius: 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s;
    cursor: pointer;
}

/* hover effect */
.ev-feature-card:hover {
    transform: translateX(10px);
    border-color: rgba(74,222,128,0.6);
    box-shadow: 0 10px 25px rgba(74,222,128,0.2);
}

/* active highlight */
.ev-feature-card.active {
    border-color: #4ade80;
    background: rgba(74,222,128,0.1);
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */
@media (max-width: 992px) {
    .ev-battery-container {
        flex-direction: column;
        text-align: center;
    }

    .ev-features {
        align-items: center;
    }

    .ev-feature-card {
        max-width: 400px;
    }
}

@media (max-width: 576px) {
    .ev-battery-right h2 {
        font-size: 28px;
    }

    .ev-desc {
        font-size: 14px;
    }
}

/* ================================================================================================================= */
/* Premium EV battery section */

.ev-battery-section {
    padding: 0;
    background:
        radial-gradient(circle at 14% 18%, rgba(126, 231, 183, 0.16), transparent 28%),
        radial-gradient(circle at 88% 20%, rgba(255, 255, 255, 0.07), transparent 18%),
        linear-gradient(135deg, #030806 0%, #07110d 48%, #0c1b14 100%);
    isolation: isolate;
}

.ev-battery-section::before {
    width: clamp(260px, 34vw, 520px);
    height: clamp(260px, 34vw, 520px);
    top: 8%;
    left: 4%;
    background: radial-gradient(circle, rgba(126, 231, 183, 0.2), transparent 66%);
    opacity: 0.86;
    animation: batteryAura 8s ease-in-out infinite;
}

.ev-battery-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(126, 231, 183, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(126, 231, 183, 0.055) 1px, transparent 1px);
    background-size: 78px 78px;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.72), transparent 78%);
    opacity: 0.36;
    pointer-events: none;
}

.ev-battery-container {
    position: relative;
    z-index: 1;
    max-width: none;
    width: 100%;
    margin: 0;
    display: flex;
    align-items: stretch;
    gap: 0;
}

.ev-battery-left,
.ev-battery-right {
    flex: 0 0 50%;
    min-width: 0;
    width: 50%;
}

.ev-battery-left {
    align-items: stretch;
    justify-content: stretch;
}

.battery-card {
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    transform: none;
    transition: none;
}

.battery-card::before {
    content: none;
}

.battery-card-grid {
    display: none;
}

.battery-card img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    min-height: 100%;
    padding: 0;
    box-sizing: border-box;
    object-fit: cover;
    object-position: center;
    filter: none;
    transition: none;
}

.battery-glow {
    display: none;
}

.battery-energy-ring {
    display: none;
}

.battery-status {
    position: absolute;
    z-index: 4;
    min-width: 142px;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid rgba(126, 231, 183, 0.18);
    background: rgba(4, 12, 9, 0.7);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(14px);
}

.battery-status span,
.battery-status strong {
    display: block;
}

.battery-status span {
    color: rgba(232, 246, 239, 0.68);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.battery-status strong {
    margin-top: 4px;
    color: #ffffff;
    font-size: 20px;
}

.battery-status--top {
    top: 22px;
    right: 22px;
}

.battery-status--bottom {
    left: 22px;
    bottom: 22px;
}

.battery-card:hover {
    transform: none;
    box-shadow: none;
}

.battery-card:hover img {
    transform: none;
    filter: none;
}

.ev-battery-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(42px, 5vw, 78px);
    border-radius: 8px;
    border: 0;
    background: transparent;
}

.ev-battery-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 10px;
    margin-bottom: 14px;
    color: #c8ffe4;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ev-battery-kicker::before {
    content: "";
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, #76dfb0, transparent);
}

.ev-battery-right h2 {
    font-size: clamp(32px, 4.4vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
}

.ev-battery-right h2 span {
    background: linear-gradient(90deg, #76dfb0 0%, #45e5ad 48%, #eefcf6 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.ev-battery-right .ev-desc {
    margin-bottom: 24px;
    color: rgba(232, 246, 239, 0.82);
    font-size: clamp(14px, 1.08vw, 16px);
}

.ev-features {
    gap: 12px;
}

.ev-feature-card {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    gap: 13px;
    padding: 16px;
    border-radius: 8px;
    border-color: rgba(126, 231, 183, 0.14);
    background: rgba(255, 255, 255, 0.045);
    overflow: hidden;
    isolation: isolate;
}

.ev-feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(120deg, transparent 16%, rgba(255, 255, 255, 0.12) 48%, transparent 82%);
    transform: translateX(-130%);
    transition: transform 0.5s ease;
}

.ev-feature-card::after {
    content: "";
    width: 42px;
    height: 42px;
    grid-row: 1 / span 2;
    border-radius: 8px;
    background:
        radial-gradient(circle, rgba(143, 240, 194, 0.28), transparent 62%),
        rgba(126, 231, 183, 0.1);
    border: 1px solid rgba(126, 231, 183, 0.18);
    order: -1;
}

.ev-feature-card h4 {
    color: #f7fffb;
    font-size: 16px;
    margin-bottom: 6px;
}

.ev-feature-card p {
    color: rgba(220, 234, 227, 0.78);
    font-size: 13px;
    line-height: 1.58;
}

.ev-feature-card:hover,
.ev-feature-card:focus-visible,
.ev-feature-card.active {
    transform: translateX(8px);
    border-color: rgba(126, 231, 183, 0.5);
    background: rgba(126, 231, 183, 0.1);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
    outline: none;
}

.ev-feature-card:hover::before,
.ev-feature-card:focus-visible::before,
.ev-feature-card.active::before {
    transform: translateX(130%);
}

.ev-features {
    gap: 14px;
    perspective: 900px;
}

.ev-feature-card {
    --card-x: 50%;
    --card-y: 50%;
    --feature-progress: 78%;
    grid-template-columns: 54px 1fr;
    gap: 16px;
    min-height: 112px;
    padding: 18px 18px 24px;
    border: 1px solid rgba(126, 231, 183, 0.16);
    background:
        radial-gradient(circle at var(--card-x) var(--card-y), rgba(126, 231, 183, 0.18), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    transform: translateX(0) translateY(0) rotateX(0);
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        background 0.28s ease,
        box-shadow 0.28s ease;
}

.ev-feature-card:nth-child(1) {
    --feature-progress: 92%;
}

.ev-feature-card:nth-child(2) {
    --feature-progress: 86%;
}

.ev-feature-card:nth-child(3) {
    --feature-progress: 96%;
}

.ev-feature-card::before {
    z-index: 0;
    background:
        linear-gradient(120deg, transparent 12%, rgba(255, 255, 255, 0.16) 46%, transparent 78%),
        linear-gradient(90deg, rgba(126, 231, 183, 0.14), transparent 40%);
    opacity: 0.78;
}

.ev-feature-card::after {
    content: "01";
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    color: #dcfff0;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.02em;
    border-radius: 8px;
    background:
        radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.34), transparent 30%),
        linear-gradient(145deg, rgba(126, 231, 183, 0.32), rgba(20, 184, 126, 0.08));
    border: 1px solid rgba(126, 231, 183, 0.32);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 14px 28px rgba(20, 184, 126, 0.12);
}

.ev-feature-card:nth-child(2)::after {
    content: "02";
}

.ev-feature-card:nth-child(3)::after {
    content: "03";
}

.ev-feature-card h4,
.ev-feature-card p {
    position: relative;
    z-index: 1;
}

.ev-feature-card h4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #f8fffb;
    font-size: 17px;
    line-height: 1.25;
}

.ev-feature-card h4::after {
    content: "";
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: rgba(126, 231, 183, 0.48);
    box-shadow: 0 0 0 6px rgba(126, 231, 183, 0.06);
}

.ev-feature-card p {
    max-width: 460px;
    color: rgba(220, 234, 227, 0.8);
}

.ev-feature-card > h4,
.ev-feature-card > p {
    grid-column: 2;
}

.ev-feature-card > p {
    margin-top: -2px;
}

.ev-feature-card::selection {
    background: rgba(126, 231, 183, 0.28);
}

.ev-feature-card:hover,
.ev-feature-card:focus-visible,
.ev-feature-card.active {
    transform: translateX(10px) translateY(-4px);
    border-color: rgba(126, 231, 183, 0.58);
    background:
        radial-gradient(circle at var(--card-x) var(--card-y), rgba(126, 231, 183, 0.28), transparent 36%),
        linear-gradient(145deg, rgba(126, 231, 183, 0.14), rgba(255, 255, 255, 0.04));
    box-shadow:
        0 24px 52px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(126, 231, 183, 0.08);
}

.ev-feature-card:hover::after,
.ev-feature-card:focus-visible::after,
.ev-feature-card.active::after {
    color: #06110c;
    background:
        radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.58), transparent 32%),
        linear-gradient(145deg, #a8ffd3, #3ce29b);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.34),
        0 18px 34px rgba(60, 226, 155, 0.24);
}

.ev-feature-card.active h4::after {
    background: #8cffc7;
    box-shadow:
        0 0 0 6px rgba(126, 231, 183, 0.1),
        0 0 18px rgba(126, 231, 183, 0.7);
}

.ev-feature-card p::after {
    content: "";
    position: absolute;
    left: -70px;
    right: 0;
    bottom: -15px;
    height: 3px;
    border-radius: 999px;
    background:
        linear-gradient(90deg, #77f5b6, #42d997) 0 0 / var(--feature-progress) 100% no-repeat,
        rgba(255, 255, 255, 0.08);
}

@keyframes batteryAura {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(0.95);
        opacity: 0.62;
    }
    50% {
        transform: translate3d(30px, 18px, 0) scale(1.08);
        opacity: 0.9;
    }
}

@keyframes batteryRing {
    0%,
    100% {
        transform: scale(0.96);
        opacity: 0.62;
    }
    50% {
        transform: scale(1.06);
        opacity: 1;
    }
}

@media (max-width: 992px) {
    .ev-battery-section {
        padding: 0;
    }

    .ev-battery-container {
        flex-direction: column;
        gap: 0;
        text-align: left;
    }

    .ev-battery-left,
    .ev-battery-right {
        flex: 0 0 auto;
        width: 100%;
    }

    .ev-battery-left {
        order: 1;
    }

    .ev-battery-right {
        order: 2;
    }

    .battery-card {
        min-height: clamp(360px, 58vw, 520px);
    }

    .battery-card img {
        object-fit: contain;
        padding: clamp(18px, 3vw, 28px);
    }

    .ev-battery-kicker {
        margin-inline: auto;
    }

    .ev-battery-right {
        padding: 34px 24px 58px;
        text-align: center;
        align-items: center;
    }

    .ev-features {
        width: 100%;
        align-items: stretch;
    }

    .ev-feature-card {
        max-width: none;
        text-align: left;
    }
}

@media (max-width: 576px) {
    .ev-battery-section {
        padding: 0;
    }

    .ev-battery-container {
        gap: 0;
    }

    .battery-card {
        min-height: 320px;
        max-height: 420px;
    }

    .battery-card::before {
        inset: 10px;
    }

    .battery-card img {
        object-fit: contain;
        padding: 16px;
    }

    .battery-energy-ring {
        inset: 20%;
    }

    .battery-status {
        min-width: 118px;
        padding: 9px 10px;
    }

    .battery-status span {
        font-size: 9px;
    }

    .battery-status strong {
        font-size: 16px;
    }

    .battery-status--top {
        top: 12px;
        right: 12px;
    }

    .battery-status--bottom {
        left: 12px;
        bottom: 12px;
    }

    .ev-battery-right {
        padding: 28px 16px 48px;
    }

    .ev-battery-kicker {
        justify-content: center;
        font-size: 10px;
        letter-spacing: 0.1em;
    }

    .ev-battery-kicker::before {
        width: 24px;
    }

    .ev-battery-right h2 {
        font-size: clamp(28px, 9vw, 36px);
    }

    .ev-battery-right .ev-desc {
        font-size: 14px;
        line-height: 1.62;
    }

    .ev-feature-card {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 15px;
        text-align: center;
    }

    .ev-feature-card::after {
        margin-inline: auto;
    }

    .ev-feature-card > h4,
    .ev-feature-card > p {
        grid-column: 1;
    }

    .ev-feature-card h4 {
        justify-content: center;
    }

    .ev-feature-card p::after {
        left: 0;
    }

    .ev-feature-card:hover,
    .ev-feature-card:focus-visible,
    .ev-feature-card.active {
        transform: translateY(-4px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ev-battery-section::before,
    .battery-energy-ring {
        animation: none !important;
    }

    .battery-card,
    .battery-card img,
    .ev-feature-card,
    .ev-feature-card::before {
        transition: none !important;
    }
}


/* ============================================================================================================ */

/* ============================= */
/* SECTION */
/* ============================= */
.ev-charging-section {
    padding: 100px 6%;
    background: linear-gradient(135deg, #020617, #04130d);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* background glow */
.ev-charging-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74,222,128,0.15), transparent);
    top: -100px;
    right: -100px;
    filter: blur(100px);
}

/* ============================= */
/* HEADER */
/* ============================= */
.ev-charging-header h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.ev-charging-header span {
    background: linear-gradient(90deg, #4ade80, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ev-charging-header p {
    max-width: 600px;
    margin: auto;
    color: #cbd5e1;
    line-height: 1.6;
}

/* ============================= */
/* GRID */
/* ============================= */
.ev-charging-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ============================= */
/* CARD */
/* ============================= */
.ev-charge-card {
    padding: 30px 25px;
    border-radius: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    transition: 0.4s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* shine effect */
.ev-charge-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}

.ev-charge-card:hover::before {
    transform: translateX(100%);
}

/* hover */
.ev-charge-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: rgba(74,222,128,0.6);
    box-shadow: 0 15px 35px rgba(74,222,128,0.25);
}

/* active */
.ev-charge-card.active {
    border-color: #4ade80;
    background: rgba(74,222,128,0.1);
    box-shadow: 0 0 30px rgba(74,222,128,0.2);
}

/* icon */
.ev-charge-card .icon {
    font-size: 40px;
    margin-bottom: 15px;
}

/* text */
.ev-charge-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.ev-charge-card p {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.6;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */
@media (max-width: 992px) {
    .ev-charging-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .ev-charging-grid {
        grid-template-columns: 1fr;
    }

    .ev-charging-header h2 {
        font-size: 28px;
    }
}

/* Premium EV charging station cards */
.ev-charging-section {
    isolation: isolate;
    padding: clamp(70px, 8vw, 118px) clamp(18px, 6vw, 82px);
    background:
        radial-gradient(circle at 12% 18%, rgba(126, 231, 183, 0.16), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.07), transparent 20%),
        linear-gradient(135deg, #030806 0%, #07110d 48%, #0c1b14 100%);
}

.ev-charging-section::before {
    width: clamp(260px, 38vw, 560px);
    height: clamp(260px, 38vw, 560px);
    top: -12%;
    right: -10%;
    background: radial-gradient(circle, rgba(126, 231, 183, 0.24), transparent 66%);
    opacity: 0.78;
}

.ev-charging-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(126, 231, 183, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(126, 231, 183, 0.055) 1px, transparent 1px);
    background-size: 76px 76px;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.68), transparent 78%);
    opacity: 0.36;
}

.ev-charging-header {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
}

.ev-charging-header h2 {
    font-size: clamp(32px, 4.8vw, 58px);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.ev-charging-header h2 span {
    background: linear-gradient(90deg, #76dfb0 0%, #45e5ad 48%, #eefcf6 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.ev-charging-header p {
    max-width: 760px;
    margin: 18px auto 0;
    color: rgba(232, 246, 239, 0.82);
    font-size: clamp(14px, 1.2vw, 17px);
    line-height: 1.75;
}

.ev-charging-grid {
    position: relative;
    z-index: 1;
    width: min(1180px, 100%);
    margin: clamp(34px, 5vw, 62px) auto 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2.4vw, 28px);
}

.ev-charge-card {
    --charge-x: 50%;
    --charge-y: 50%;
    min-height: 310px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: clamp(22px, 2.6vw, 32px);
    border-radius: 8px;
    border: 1px solid rgba(126, 231, 183, 0.16);
    background:
        radial-gradient(circle at var(--charge-x) var(--charge-y), rgba(126, 231, 183, 0.2), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
    overflow: hidden;
    transform: translateY(0);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.ev-charge-card::before {
    z-index: 0;
    background:
        linear-gradient(120deg, transparent 12%, rgba(255, 255, 255, 0.16) 46%, transparent 78%),
        linear-gradient(90deg, rgba(126, 231, 183, 0.13), transparent 42%);
    transform: translateX(-130%);
    opacity: 0.82;
}

.ev-charge-card::after {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    height: 3px;
    border-radius: 999px;
    background:
        linear-gradient(90deg, #77f5b6, #42d997) 0 0 / 32% 100% no-repeat,
        rgba(255, 255, 255, 0.08);
    transition: background-size 0.35s ease;
}

.ev-charge-card .icon,
.ev-charge-card h3,
.ev-charge-card p {
    position: relative;
    z-index: 1;
}

.ev-charge-card .icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    border-radius: 8px;
    color: #dffff0;
    font-size: 26px;
    background:
        radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.32), transparent 32%),
        linear-gradient(145deg, rgba(126, 231, 183, 0.28), rgba(20, 184, 126, 0.08));
    border: 1px solid rgba(126, 231, 183, 0.28);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        0 18px 36px rgba(20, 184, 126, 0.12);
}

.ev-charge-card h3 {
    color: #f8fffb;
    font-size: clamp(19px, 1.7vw, 23px);
    line-height: 1.25;
    margin-bottom: 12px;
}

.ev-charge-card p {
    color: rgba(220, 234, 227, 0.8);
    font-size: 14px;
    line-height: 1.72;
}

.ev-charge-card:hover,
.ev-charge-card:focus-visible,
.ev-charge-card.active {
    transform: translateY(-10px);
    border-color: rgba(126, 231, 183, 0.58);
    background:
        radial-gradient(circle at var(--charge-x) var(--charge-y), rgba(126, 231, 183, 0.28), transparent 36%),
        linear-gradient(145deg, rgba(126, 231, 183, 0.14), rgba(255, 255, 255, 0.04));
    box-shadow:
        0 30px 62px rgba(0, 0, 0, 0.32),
        0 0 0 1px rgba(126, 231, 183, 0.08);
    outline: none;
}

.ev-charge-card:hover::before,
.ev-charge-card:focus-visible::before,
.ev-charge-card.active::before {
    transform: translateX(130%);
}

.ev-charge-card:hover::after,
.ev-charge-card:focus-visible::after,
.ev-charge-card.active::after {
    background-size: 100% 100%, 100% 100%;
}

.ev-charge-card:hover .icon,
.ev-charge-card:focus-visible .icon,
.ev-charge-card.active .icon {
    color: #06110c;
    background:
        radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.58), transparent 32%),
        linear-gradient(145deg, #a8ffd3, #3ce29b);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.32),
        0 22px 42px rgba(60, 226, 155, 0.24);
}

@media (max-width: 992px) {
    .ev-charging-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ev-charge-card {
        min-height: 280px;
    }

    .ev-charge-card:nth-child(3) {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .ev-charging-section {
        padding: 58px 16px;
    }

    .ev-charging-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .ev-charge-card,
    .ev-charge-card:nth-child(3) {
        grid-column: auto;
    }

    .ev-charge-card {
        min-height: auto;
        padding: 22px 18px 30px;
    }

    .ev-charge-card .icon {
        width: 54px;
        height: 54px;
        font-size: 22px;
        margin-bottom: 18px;
    }
}



/* ========================================================================================================== */


/* ============================= */
/* SECTION */
/* ============================= */
.sustainable-section {
    background: #fff;
    font-family: 'Poppins', sans-serif;
}

/* CONTAINER */
.sustainable-container {
    display: flex;
    overflow: hidden;
}

/* ============================= */
/* LEFT SIDE */
/* ============================= */
.s-left {
    flex: 2;
    position: relative;
    background: url('/assets/images/banners/energy-goal-banner.jpg') center/cover no-repeat;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

/* DARK OVERLAY */
.s-left::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.1)
    );
}

/* TEXT OVER IMAGE */
.s-overlay {
    position: relative;
    color: #fff;
    padding: 30px;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.s-overlay h2 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.s-overlay p {
    font-size: 15px;
    line-height: 1.6;
    color: #e5e7eb;
}

/* ============================= */
/* RIGHT SIDE */
/* ============================= */
.s-right {
    flex: 1;
    background: #ffffff;
    padding: 50px 40px;
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.s-right h2 {
    font-size: 30px;
    color: #0a412e;
    margin-bottom: 15px;
    font-weight: 700;
}

.s-right p {
    color: #4b5563;
    font-size: 15px;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* ICON */
.s-right img {
    width: 180px;
    margin: auto;
}


/* ============================= */
/* RESPONSIVE */
/* ============================= */
@media (max-width: 992px) {
    .sustainable-container {
        flex-direction: column;
    }

    .s-left {
        min-height: 300px;
    }

    .s-overlay {
        padding: 20px;
    }

    .s-overlay h2 {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .s-right {
        padding: 30px 20px;
    }

    .s-right h2 {
        font-size: 20px;
    }

    .s-overlay p,
    .s-right p {
        font-size: 14px;
    }

    .s-right img {
        width: 110px;
    }
}


/* ============================================================================================================ */

/* EV smart section timeline layout */
.ev-smart-section {
    background:
        /* radial-gradient(ellipse 72% 48% at 50% -8%, rgba(65, 134, 110, 0.14), transparent 66%),
        radial-gradient(circle at 12% 22%, rgba(74, 222, 128, 0.08), transparent 38%),
        radial-gradient(circle at 86% 76%, rgba(12, 27, 20, 0.06), transparent 42%), */
        #ffffff;
    color: #07110d;
    padding: clamp(80px, 9vw, 120px) clamp(16px, 6vw, 72px);
    position: relative;
    overflow: hidden;
}

.ev-smart-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
    z-index: 0;
}

.ev-smart-header {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.ev-smart-header h2 {
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.08;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
    color: #07110d;
}

.ev-smart-header span {
    background: linear-gradient(120deg, #108766, #58b191, #91debf);
    background-size: 220% 220%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ev-smart-header p {
    max-width: 700px;
    margin: 0 auto;
    color: rgba(15, 23, 42, 0.72);
    line-height: 1.72;
}

.ev-smart-timeline {
    position: relative;
    max-width: 1100px;
    margin: 76px auto 0;
    z-index: 1;
}

.ev-smart-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, rgba(7, 17, 13, 0.9), #135f43, rgba(98, 238, 191, 0.74));
    box-shadow: 0 0 18px rgba(34, 197, 94, 0.2);
    transform: translateX(-50%);
    z-index: 1;
    transition: height 0.4s ease-out;
}

.ev-smart-item {
    position: relative;
    width: 50%;
    padding: 56px 30px;
    margin-bottom: 18px;
    opacity: 0;
    transform: translateY(80px);
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s ease;
    z-index: 2;
    display: flex;
    align-items: center;
}

.ev-smart-item.left {
    left: 0;
    justify-content: flex-end;
}

.ev-smart-item.right {
    left: 50%;
    justify-content: flex-start;
}

.ev-smart-dot {
    position: absolute;
    top: 50%;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #07110d;
    z-index: 5;
    transform: translate(-50%, -50%);
    animation: evSmartPulse 2.4s infinite;
    background: radial-gradient(circle at 30% 30%, #f6fff9, #d8f7e7 72%);
    border: 2px solid rgba(34, 197, 94, 0.9);
    box-shadow: 0 0 0 7px rgba(34, 197, 94, 0.08), 0 10px 24px rgba(15, 23, 42, 0.12);
}

.ev-smart-item.left .ev-smart-dot {
    left: 100%;
}

.ev-smart-item.right .ev-smart-dot {
    left: 0%;
}

.ev-smart-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(34, 197, 94, 0.18);
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(240, 253, 244, 0.78));
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(14px);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    max-width: 380px;
    padding: 34px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ev-smart-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 0%, rgba(139, 235, 193, 0.2) 48%, transparent 75%);
    transform: translateX(-130%);
    transition: transform 0.65s ease;
    pointer-events: none;
}

.ev-smart-card:hover {
    transform: translateY(-12px);
    border-color: rgba(34, 197, 94, 0.42);
    box-shadow: 0 26px 54px rgba(15, 23, 42, 0.18), 0 0 40px rgba(34, 197, 94, 0.12);
}

.ev-smart-card:hover::before {
    transform: translateX(130%);
}

.ev-smart-icon {
    font-size: 30px;
    margin-bottom: 14px;
    background: linear-gradient(140deg, #0d5f3a, #22c55e, #7ad3af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.35s ease;
}

.ev-smart-card h3 {
    color: #07110d;
    letter-spacing: 0.01em;
    font-size: 20px;
    margin-bottom: 10px;
}

.ev-smart-card p {
    color: rgba(15, 23, 42, 0.72);
    line-height: 1.62;
    font-size: 14px;
}

.ev-smart-item.left .ev-smart-card {
    margin-right: 80px;
}

.ev-smart-item.right .ev-smart-card {
    margin-left: 80px;
}

.ev-smart-item.show {
    opacity: 1;
    transform: translateY(0);
}

.ev-smart-item.active .ev-smart-card {
    transform: translateY(-8px) scale(1.035);
    border-color: rgba(34, 197, 94, 0.54);
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.2), 0 0 48px rgba(34, 197, 94, 0.14);
}

.ev-smart-item.active .ev-smart-icon {
    transform: scale(1.12);
}

.ev-smart-item.active .ev-smart-dot {
    border-color: #22c55e;
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.14), 0 10px 24px rgba(15, 23, 42, 0.16);
}

@keyframes evSmartPulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.35); }
    70% { box-shadow: 0 0 0 15px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@media (max-width: 992px) {
    .ev-smart-section {
        padding: 80px 20px 100px;
    }

    .ev-smart-header h2 {
        font-size: clamp(26px, 4vw, 36px);
    }
}

@media (max-width: 768px) {
    .ev-smart-card {
        max-width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 32px;
        padding: 24px 18px;
    }

    .ev-smart-item {
        width: 100%;
        left: 0 !important;
        padding: 40px 16px 40px 56px;
        justify-content: flex-start;
    }

    .ev-smart-line {
        left: 24px;
        transform: none;
    }

    .ev-smart-dot {
        width: 48px;
        height: 48px;
        font-size: 14px;
        left: 24px !important;
    }
}

@media (max-width: 576px) {
    .ev-smart-section {
        padding: 64px 16px 72px;
    }

    .ev-smart-header h2 {
        font-size: 28px;
    }

    .ev-smart-timeline {
        margin-top: 48px;
    }

    .ev-smart-item {
        padding: 28px 8px 28px 52px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ev-smart-header span,
    .ev-smart-dot {
        animation: none !important;
    }
}

/* ========================================================================================================= */

/* ============================= */
/* SECTION */
/* ============================= */
.ev-benefits-section {
    padding: 100px 6%;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

/* ============================= */
/* HEADER */
/* ============================= */
.ev-benefits-header h2 {
    font-size: 40px;
    color: #111827;
    margin-bottom: 15px;
}

.ev-benefits-header span {
     background: linear-gradient(90deg, #0e7353, #78cda7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ev-benefits-header p {
    max-width: 600px;
    margin: auto;
    color: #6b7280;
    line-height: 1.7;
}

/* ============================= */
/* GRID */
/* ============================= */
.ev-benefits-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* ============================= */
/* CARD */
/* ============================= */
.ev-benefit-card {
    background: #f9fafb;
    border-radius: 18px;
    padding: 30px 20px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: 0.5s;
    cursor: pointer;
    perspective: 1000px;
    position: relative;
}

/* hover lift */
.ev-benefit-card:hover {
    transform: translateY(-12px) rotateX(6deg);
    box-shadow: 0 20px 40px rgba(34,197,94,0.2);
    border-color: rgba(34,197,94,0.4);
}

/* glow effect */
.ev-benefit-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: radial-gradient(circle, rgba(34,197,94,0.15), transparent);
    opacity: 0;
    transition: 0.4s;
}

.ev-benefit-card:hover::after {
    opacity: 1;
}

/* icon */
.ev-benefit-card .icon {
    font-size: 36px;
    margin-bottom: 15px;
}

/* text */
.ev-benefit-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #111827;
}

.ev-benefit-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */
@media (max-width: 992px) {
    .ev-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .ev-benefits-grid {
        grid-template-columns: 1fr;
    }

    .ev-benefits-header h2 {
        font-size: 28px;
    }
}

/* Premium EV benefits section */
.ev-benefits-section {
    position: relative;
    isolation: isolate;
    padding: clamp(72px, 8vw, 118px) clamp(16px, 6vw, 72px);
    background:#ffffff;
    overflow: hidden;
}

.ev-benefits-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
    background-size: 74px 74px;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.62), transparent 78%);
    opacity: 0.34;
}

.ev-benefits-header {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.ev-benefits-header h2 {
    font-size: clamp(32px, 4.6vw, 56px);
    line-height: 1.06;
    letter-spacing: -0.03em;
    color: #07110d;
}

.ev-benefits-header span {
     background: linear-gradient(90deg, #0e7353, #78cda7);
    background-size: 220% 220%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: evBenefitsGradientMove 4.5s linear infinite;
}

.ev-benefits-header p {
    max-width: 700px;
    margin: 16px auto 0;
    color: rgba(15, 23, 42, 0.7);
    font-size: clamp(14px, 1.12vw, 17px);
    line-height: 1.75;
}

.ev-benefits-grid {
    position: relative;
    z-index: 1;
    width: min(1180px, 100%);
    margin: clamp(34px, 5vw, 62px) auto 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 22px);
}

.ev-benefit-card {
    --benefit-x: 50%;
    --benefit-y: 50%;
    min-height: 238px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: clamp(22px, 2.2vw, 30px);
    border-radius: 8px;
    border: 1px solid rgba(34, 197, 94, 0.14);
    background:
        radial-gradient(circle at var(--benefit-x) var(--benefit-y), rgba(34, 197, 94, 0.14), transparent 34%),
        linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(240, 253, 244, 0.78));
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    isolation: isolate;
    transform: translateY(0);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.ev-benefit-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(120deg, transparent 12%, rgba(255, 255, 255, 0.44) 46%, transparent 78%),
        linear-gradient(90deg, rgba(34, 197, 94, 0.14), transparent 42%);
    transform: translateX(-130%);
    transition: transform 0.6s ease;
}

.ev-benefit-card::after {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 18px;
    height: 3px;
    border-radius: 999px;
    background:
        linear-gradient(90deg, #158f54, #38e894) 0 0 / 30% 100% no-repeat,
        rgba(15, 23, 42, 0.08);
    transition: background-size 0.35s ease;
}

.ev-benefit-card:nth-child(1)::after { background: linear-gradient(90deg, #158f54, #38e894) 0 0 / 72% 100% no-repeat, rgba(15, 23, 42, 0.08); }
.ev-benefit-card:nth-child(2)::after { background: linear-gradient(90deg, #158f54, #38e894) 0 0 / 68% 100% no-repeat, rgba(15, 23, 42, 0.08); }
.ev-benefit-card:nth-child(3)::after { background: linear-gradient(90deg, #158f54, #38e894) 0 0 / 84% 100% no-repeat, rgba(15, 23, 42, 0.08); }
.ev-benefit-card:nth-child(4)::after { background: linear-gradient(90deg, #158f54, #38e894) 0 0 / 76% 100% no-repeat, rgba(15, 23, 42, 0.08); }
.ev-benefit-card:nth-child(5)::after { background: linear-gradient(90deg, #158f54, #38e894) 0 0 / 88% 100% no-repeat, rgba(15, 23, 42, 0.08); }
.ev-benefit-card:nth-child(6)::after { background: linear-gradient(90deg, #158f54, #38e894) 0 0 / 80% 100% no-repeat, rgba(15, 23, 42, 0.08); }
.ev-benefit-card:nth-child(7)::after { background: linear-gradient(90deg, #158f54, #38e894) 0 0 / 66% 100% no-repeat, rgba(15, 23, 42, 0.08); }
.ev-benefit-card:nth-child(8)::after { background: linear-gradient(90deg, #158f54, #38e894) 0 0 / 74% 100% no-repeat, rgba(15, 23, 42, 0.08); }

.ev-benefit-card .icon,
.ev-benefit-card h3,
.ev-benefit-card p {
    position: relative;
    z-index: 1;
}

.ev-benefit-card .icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 8px;
    color: #0d5f3a;
    font-size: 24px;
    background:
        radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.88), transparent 34%),
        linear-gradient(145deg, rgba(34, 197, 94, 0.18), rgba(34, 197, 94, 0.04));
    border: 1px solid rgba(34, 197, 94, 0.18);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.ev-benefit-card h3 {
    font-size: clamp(18px, 1.5vw, 22px);
    line-height: 1.28;
    color: #07110d;
    margin-bottom: 10px;
}

.ev-benefit-card p {
    color: rgba(15, 23, 42, 0.7);
    font-size: 14px;
    line-height: 1.7;
}

.ev-benefit-card:hover,
.ev-benefit-card:focus-visible,
.ev-benefit-card.is-active {
    transform: translateY(-10px);
    border-color: rgba(34, 197, 94, 0.44);
    background:
        radial-gradient(circle at var(--benefit-x) var(--benefit-y), rgba(34, 197, 94, 0.22), transparent 36%),
        linear-gradient(150deg, rgba(240, 253, 244, 0.98), rgba(255, 255, 255, 0.9));
    box-shadow:
        0 28px 58px rgba(15, 23, 42, 0.14),
        0 0 0 1px rgba(34, 197, 94, 0.08);
    outline: none;
}

.ev-benefit-card:hover::before,
.ev-benefit-card:focus-visible::before,
.ev-benefit-card.is-active::before {
    transform: translateX(130%);
}

.ev-benefit-card:hover::after,
.ev-benefit-card:focus-visible::after,
.ev-benefit-card.is-active::after {
    background-size: 100% 100%, 100% 100%;
}

.ev-benefit-card:hover .icon,
.ev-benefit-card:focus-visible .icon,
.ev-benefit-card.is-active .icon {
    color: #07110d;
    background:
        radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.72), transparent 34%),
        linear-gradient(145deg, #b6ffd9, #43e79d);
    box-shadow: 0 22px 40px rgba(34, 197, 94, 0.18);
}

.ev-benefit-card:nth-child(3n + 2) {
    transform: translateY(18px);
}

.ev-benefit-card:nth-child(3n + 2):hover,
.ev-benefit-card:nth-child(3n + 2):focus-visible,
.ev-benefit-card:nth-child(3n + 2).is-active {
    transform: translateY(8px);
}

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

@media (max-width: 992px) {
    .ev-benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ev-benefit-card:nth-child(3n + 2) {
        transform: none;
    }
}

@media (max-width: 640px) {
    .ev-benefits-section {
        padding: 58px 16px;
    }

    .ev-benefits-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .ev-benefit-card {
        min-height: auto;
        padding: 22px 18px 28px;
    }

    .ev-benefit-card .icon {
        width: 52px;
        height: 52px;
        font-size: 21px;
        margin-bottom: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ev-benefits-header span {
        animation: none !important;
    }
}

/* ============================================================================================================= */

/* ============================= */
/* SECTION */
/* ============================= */
.ev-steps-section {
    padding: 100px 6%;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

/* HEADER */
.ev-steps-header h2 {
    font-size: 40px;
    color: #000000;
    margin-bottom: 10px;
}

.ev-steps-header span {
    background: linear-gradient(90deg, #0e7353, #78cda7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ev-steps-header p {
    max-width: 600px;
    margin: auto;
    color: #6b7280;
    line-height: 1.6;
}

/* ============================= */
/* STEPS CONTAINER */
/* ============================= */
.ev-steps-container {
    position: relative;
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

/* LINE */
.ev-steps-line {
    position: absolute;
    top: 35px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #e5e7eb;
    z-index: 0;
}

/* ACTIVE PROGRESS LINE */
.ev-steps-line::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #22c55e, #4ade80);
    transition: width 1s ease;
}

/* STEP */
.ev-step {
    position: relative;
    width: 100%;
    text-align: center;
    z-index: 1;
    cursor: pointer;
    transition: 0.3s;
}

/* CIRCLE */
.step-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #f3f4f6;
    border: 2px solid #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: auto;
    transition: 0.3s;
}

/* TEXT */
.ev-step h4 {
    margin-top: 15px;
    color: #111827;
}

.ev-step p {
    font-size: 14px;
    color: #6b7280;
}

/* HOVER */
.ev-step:hover .step-circle {
    background: #22c55e;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(34,197,94,0.3);
}

/* ACTIVE STEP */
.ev-step.active .step-circle {
    background: #22c55e;
    color: #fff;
    border-color: #22c55e;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */
@media (max-width: 768px) {
    .ev-steps-container {
        flex-direction: column;
        align-items: center;
    }

    .ev-steps-line {
        display: none;
    }

    .ev-step {
        margin-bottom: 40px;
    }
}

/* Premium EV steps section */
.ev-steps-section {
    position: relative;
    isolation: isolate;
    padding: clamp(72px, 8vw, 118px) clamp(16px, 6vw, 72px);
    background:
        radial-gradient(circle at 10% 18%, rgba(34, 197, 94, 0.1), transparent 28%),
        radial-gradient(circle at 92% 14%, rgba(12, 27, 20, 0.06), transparent 22%),
        #ffffff;
    overflow: hidden;
}

.ev-steps-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
    background-size: 74px 74px;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.62), transparent 78%);
    opacity: 0.34;
}

.ev-steps-header {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.ev-steps-header h2 {
    font-size: clamp(32px, 4.6vw, 56px);
    line-height: 1.06;
    letter-spacing: -0.03em;
    color: #07110d;
    margin-bottom: 14px;
}

.ev-steps-header span {
    background: linear-gradient(90deg, #0e7353, #78cda7);
    background-size: 220% 220%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: evStepsGradientMove 4.5s linear infinite;
}

.ev-steps-header p {
    max-width: 700px;
    margin: 0 auto;
    color: rgba(15, 23, 42, 0.7);
    font-size: clamp(14px, 1.12vw, 17px);
    line-height: 1.75;
}

.ev-steps-container {
    position: relative;
    z-index: 1;
    width: min(1080px, 100%);
    margin: clamp(40px, 5vw, 68px) auto 0;
    left: clamp(-8px, -0.8vw, -16px);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(18px, 2vw, 26px);
    align-items: start;
    padding-top: 26px;
    overflow: visible;
    justify-content: center;
}

.ev-steps-line {
    --steps-progress: 25%;
    position: absolute;
    left: clamp(24px, 2vw, 42px);
    right: clamp(54px, 8vw, 92px);
    top: 70px;
    height: 4px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.08);
    z-index: 0;
    overflow: hidden;
    transform: translateX(clamp(-6px, -0.6vw, -12px));
}

.ev-steps-line::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: var(--steps-progress);
    border-radius: inherit;
    background: linear-gradient(90deg, #14654a, #44d2a7, #98f5d8);
    box-shadow: 0 0 22px rgba(34, 197, 94, 0.18);
    transition: width 0.45s ease;
}

.ev-step {
    --step-x: 50%;
    --step-y: 50%;
    position: relative;
    min-height: 250px;
    padding: 122px 14px 20px;
    text-align: center;
    overflow: visible;
    z-index: 1;
    cursor: pointer;
    opacity: 0.88;
    transform: translateY(0);
    transition:
        transform 0.3s ease,
        opacity 0.3s ease,
        filter 0.3s ease;
}

.ev-step::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 8px;
    width: 176px;
    height: 176px;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: -1;
    background:
        radial-gradient(circle at var(--step-x) var(--step-y), rgba(34, 197, 94, 0.22), transparent 58%),
        radial-gradient(circle, rgba(142, 243, 211, 0.14), transparent 68%);
    opacity: 0.78;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.ev-step::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 88px;
    height: 3px;
    border-radius: 999px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, rgba(21, 143, 84, 0.18), rgba(56, 232, 148, 0.92), rgba(21, 143, 84, 0.18));
    opacity: 0.42;
    transition: width 0.35s ease, opacity 0.35s ease;
}

.step-circle {
    position: absolute;
    top: 6px;
    left: 50%;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #0d5f3a;
    font-size: 30px;
    background:
        radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.88), transparent 34%),
        linear-gradient(145deg, rgba(34, 197, 94, 0.18), rgba(34, 197, 94, 0.04));
    border: 1px solid rgba(34, 197, 94, 0.22);
    box-shadow:
        0 24px 44px rgba(15, 23, 42, 0.12),
        0 0 0 12px rgba(34, 197, 94, 0.07);
    transform: translate(-50%, 0);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.step-index {
    display: inline-flex;
    margin-bottom: 12px;
    color: rgba(13, 95, 58, 0.72);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ev-step h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #07110d;
    font-size: clamp(19px, 1.6vw, 23px);
    line-height: 1.26;
}

.ev-step p {
    font-size: 14px;
    color: rgba(15, 23, 42, 0.7);
    line-height: 1.72;
    max-width: 280px;
    margin: 0 auto;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ev-step:hover,
.ev-step:focus-visible,
.ev-step.active {
    transform: translateY(-10px);
    opacity: 1;
    filter: saturate(1.04);
    outline: none;
}

.ev-step:hover::before,
.ev-step:focus-visible::before,
.ev-step.active::before {
    transform: translateX(-50%) scale(1.08);
    opacity: 1;
}

.ev-step:hover::after,
.ev-step:focus-visible::after,
.ev-step.active::after {
    width: 122px;
    opacity: 1;
}

.ev-step:hover .step-circle,
.ev-step:focus-visible .step-circle,
.ev-step.active .step-circle {
    color: #07110d;
    background:
        radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.72), transparent 34%),
        linear-gradient(145deg, #b6ffd9, #43e79d);
    box-shadow:
        0 30px 48px rgba(34, 197, 94, 0.22),
        0 0 0 14px rgba(34, 197, 94, 0.1);
    transform: translate(-50%, -4px) scale(1.08);
}

.ev-step:nth-of-type(3),
.ev-step:nth-of-type(5) {
    transform: translateY(18px);
}

.ev-step:nth-of-type(3):hover,
.ev-step:nth-of-type(3):focus-visible,
.ev-step:nth-of-type(3).active,
.ev-step:nth-of-type(5):hover,
.ev-step:nth-of-type(5):focus-visible,
.ev-step:nth-of-type(5).active {
    transform: translateY(8px);
}

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

@media (max-width: 992px) {
    .ev-steps-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 30px;
    }

    .ev-step:nth-of-type(3),
    .ev-step:nth-of-type(5) {
        transform: none;
    }

    .ev-steps-line {
        left: 72px;
        right: 72px;
        top: 74px;
    }
}

@media (max-width: 640px) {
    .ev-steps-section {
        padding: 58px 16px;
    }

    .ev-steps-container {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .ev-steps-line {
        display: none;
    }

    .ev-step {
        min-height: auto;
        padding: 98px 18px 20px;
        margin-bottom: 0;
    }

    .step-circle {
        width: 72px;
        height: 72px;
        font-size: 24px;
    }

    .ev-step::before {
        width: 150px;
        height: 150px;
    }

    .ev-step p {
        max-width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ev-steps-header span {
        animation: none !important;
    }
}

/* ========================================================================================================== */



/* ============================= */
/* SECTION */
/* ============================= */
.sk-ev-subscribe {
    width: 100%;
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
}

/* WRAPPER */
.sk-ev-subscribe__wrapper {
    display: flex;
    min-height: 100vh;
}

/* ============================= */
/* LEFT IMAGE */
/* ============================= */
.sk-ev-subscribe__media {
    width: 50%;
    background: url('/assets/images/banners/forest-banner.jpg') center/cover no-repeat;
}

/* ============================= */
/* RIGHT CONTENT */
/* ============================= */
.sk-ev-subscribe__content {
    width: 50%;
    background: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* INNER */
.sk-ev-subscribe__inner {
    max-width: 520px;
    width: 100%;
    text-align: center;
}

/* TITLE */
.sk-ev-subscribe__title {
    font-size: 42px;
    color: #0a4e30;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.sk-ev-subscribe__title span {
    color: #ecbe35;
}

/* DESC */
.sk-ev-subscribe__desc {
    color: #42454a;
    font-size: 15px;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* ============================= */
/* FORM */
/* ============================= */
.sk-ev-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sk-ev-form__row {
    display: flex;
    gap: 15px;
}

.sk-ev-form__input {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    outline: none;
    font-size: 14px;
    background: #fff;
    transition: 0.3s;
}

.sk-ev-form__input:focus {
    border-color: #22c55e;
    box-shadow: 0 0 0 2px rgba(34,197,94,0.2);
}

.sk-ev-form__btn {
    margin-top: 10px;
    padding: 14px;
    border-radius: 30px;
    border: 2px solid #166534;
    background: transparent;
    color: #166534;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.sk-ev-form__btn:hover {
    background: #0e6641;
    color: #fff;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */
@media (max-width: 992px) {

    .sk-ev-subscribe__wrapper {
        flex-direction: column;
    }

    .sk-ev-subscribe__media {
        width: 100%;
        height: 300px;
    }

    .sk-ev-subscribe__content {
        width: 100%;
        padding: 50px 20px;
    }

    .sk-ev-subscribe__title {
        font-size: 26px;
    }
}

@media (max-width: 576px) {

    .sk-ev-form__row {
        flex-direction: column;
    }

    .sk-ev-subscribe__inner {
        max-width: 100%;
    }
}

/* Subscribe modal feedback */
.sk-ev-form__errors {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: -6px;
}

.sk-ev-form__error {
    min-height: 18px;
    font-size: 12px;
    line-height: 1.4;
    color: #b91c1c;
    text-align: left;
}

.sk-ev-form__error--single {
    display: block;
    margin-top: -6px;
}

.sk-ev-form__input.sk-ev-form__input--error {
    border-color: #dc2626;
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.12);
}

.sk-ev-form.sk-ev-form--shake {
    animation: sk-ev-form-shake 0.45s ease;
}

@keyframes sk-ev-form-shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-6px); }
    40% { transform: translateX(6px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
}

.sk-ev-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(4, 24, 18, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.sk-ev-modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.sk-ev-modal {
    position: relative;
    width: 100%;
    max-width: 420px;
    padding: 40px 36px 36px;
    border-radius: 28px;
    background: linear-gradient(165deg, #ffffff 0%, #f4fff8 45%, #eefcf3 100%);
    border: 1px solid rgba(11, 93, 66, 0.12);
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    text-align: center;
    transform: scale(0.94) translateY(16px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

.sk-ev-modal-overlay.is-open .sk-ev-modal {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.sk-ev-modal-glow {
    position: absolute;
    top: -40%;
    left: 50%;
    width: 120%;
    height: 60%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(202, 255, 99, 0.35) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0.9;
}

.sk-ev-modal-sparkles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    border-radius: 28px;
}

.sk-ev-modal-sparkles span {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(202, 255, 99, 0.9);
    box-shadow: 0 0 10px rgba(202, 255, 99, 0.6);
    opacity: 0;
    animation: sk-ev-sparkle 2.2s ease-in-out infinite;
}

.sk-ev-modal-sparkles span:nth-child(1) { top: 18%; left: 12%; animation-delay: 0s; }
.sk-ev-modal-sparkles span:nth-child(2) { top: 22%; right: 16%; animation-delay: 0.35s; }
.sk-ev-modal-sparkles span:nth-child(3) { bottom: 28%; left: 20%; animation-delay: 0.7s; }
.sk-ev-modal-sparkles span:nth-child(4) { bottom: 20%; right: 14%; animation-delay: 1s; }
.sk-ev-modal-sparkles span:nth-child(5) { top: 45%; right: 10%; animation-delay: 1.4s; }

.sk-ev-modal-overlay:not(.is-open) .sk-ev-modal-sparkles span {
    animation: none;
    opacity: 0;
}

@keyframes sk-ev-sparkle {
    0%, 100% { transform: translate(0, 0) scale(0.4); opacity: 0; }
    30% { opacity: 1; transform: translate(4px, -6px) scale(1); }
    70% { opacity: 0.8; transform: translate(-3px, 4px) scale(0.85); }
}

.sk-ev-modal--enter .sk-ev-modal-sub,
.sk-ev-modal--enter .sk-ev-modal-title,
.sk-ev-modal--enter .sk-ev-modal-desc {
    animation: sk-ev-modal-fade-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.sk-ev-modal--enter .sk-ev-modal-sub { animation-delay: 0.05s; }
.sk-ev-modal--enter .sk-ev-modal-title { animation-delay: 0.12s; }
.sk-ev-modal--enter .sk-ev-modal-desc { animation-delay: 0.2s; }

@keyframes sk-ev-modal-fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sk-ev-modal-sub {
    position: relative;
    z-index: 1;
    font-size: 15px;
    font-weight: 600;
    color: #0b5d42;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.sk-ev-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(4, 61, 45, 0.06);
    color: #043d2d;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 2;
}

.sk-ev-modal-close:hover {
    background: rgba(4, 61, 45, 0.12);
    transform: rotate(90deg);
}

.sk-ev-modal-icon {
    position: relative;
    z-index: 1;
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: linear-gradient(145deg, #0b5d42, #065a3a);
    color: #caff63;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 12px 32px rgba(11, 93, 66, 0.35);
    animation: sk-ev-modal-pop 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.sk-ev-modal-icon::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(202, 255, 99, 0.45);
    animation: sk-ev-modal-ring 1.6s ease-out infinite;
    pointer-events: none;
}

@keyframes sk-ev-modal-ring {
    0% { transform: scale(0.92); opacity: 0.9; }
    100% { transform: scale(1.35); opacity: 0; }
}

@keyframes sk-ev-modal-pop {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.sk-ev-modal-title {
    position: relative;
    z-index: 1;
    font-size: 24px;
    font-weight: 700;
    color: #022d1f;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.sk-ev-modal-desc {
    position: relative;
    z-index: 1;
    font-size: 15px;
    line-height: 1.65;
    color: #334155;
    margin-bottom: 26px;
}

.sk-ev-modal-cta {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(180deg, #0b5d42, #043d2d);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, gap 0.2s ease;
    box-shadow: 0 8px 24px rgba(11, 93, 66, 0.35);
}

.sk-ev-modal-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(11, 93, 66, 0.4);
    gap: 14px;
}

.sk-ev-modal-cta i {
    font-size: 13px;
    opacity: 0.95;
}

.sk-ev-modal-icon.sk-ev-modal-icon--error {
    background: linear-gradient(145deg, #b91c1c, #7f1d1d);
    color: #fecaca;
    box-shadow: 0 12px 32px rgba(185, 28, 28, 0.35);
}

.sk-ev-modal-icon--error::after {
    display: none;
}

@media (max-width: 576px) {
    .sk-ev-form__errors {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .sk-ev-modal-overlay {
        padding: 16px;
    }

    .sk-ev-modal {
        padding: 34px 22px 26px;
        border-radius: 24px;
    }

    .sk-ev-modal-sparkles {
        border-radius: 24px;
    }
}
