/* ============================================
   Energy Upgrade 2 - Figma-accurate
   ============================================ */

:root {
  --eu-gradient: linear-gradient(90deg, #69eefd 0%, #efc052 54.33%, #f19231 100%);
  --eu-navy: #0d192e;
  --eu-orange: #f19231;
}

/* ===== HERO ===== */
.eu-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  max-height: 1080px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eu-hero-bg {
  position: absolute;
  inset: 0;
}

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

.eu-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1208px;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.eu-hero-title {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
}

.eu-hero-small {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 2.5vw, 40px);
  line-height: 1.17;
  background: var(--eu-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eu-hero-big {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 3.5vw, 60px);
  line-height: 1.17;
  background: var(--eu-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eu-hero-sub {
  font-size: clamp(1rem, 1.8vw, 30px);
  line-height: 1.38;
  color: #fff;
  max-width: 1180px;
}

.eu-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 5px 24px 5px 5px;
  background: #fff;
  border: 2px solid #69eefd;
  border-radius: 73px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #000;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 10px;
}

.eu-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(105, 238, 253, 0.3);
}

.eu-hero-cta-icon {
  width: 47px;
  height: 47px;
  border-radius: 50%;
}

/* ===== SHARED ===== */
.eu-label {
  display: block;
  font-weight: 500;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--eu-orange);
}

.eu-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 60px);
  line-height: 1.17;
  color: rgba(13, 25, 46, 0.8);
}

/* ===== THE EXPORT TRAP ===== */
.eu-trap {
  padding: 80px 0 60px;
}

.eu-trap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 63px;
  align-items: start;
}

.eu-trap-left .eu-heading {
  margin-bottom: 20px;
  line-height: 1.17;
}

.eu-trap-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--eu-navy);
  margin-bottom: 12px;
}

.eu-trap-img {
  width: 100%;
  border-radius: 40px;
  box-shadow: 4px 4px 50px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

/* Day/Night Compare Slider */
.day-night-compare {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  cursor: ew-resize;
}

.day-night-img {
  width: 100%;
}

.day-night-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  pointer-events: none;
}

.day-night-img--night {
  position: relative;
}

.day-night-img--day {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.day-night-img--day img {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--compare-width, 100vw);
  max-width: none;
  height: 100%;
}

.day-night-slider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: #fff;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}

.day-night-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.eu-trap-alert {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fffbed;
  border: 2px solid #ff7171;
  border-radius: 19px;
  padding: 20px 30px;
  margin-top: 24px;
}

.eu-trap-alert-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 36px;
  color: #f22;
  flex-shrink: 0;
}

.eu-trap-alert-text {
  font-weight: 500;
  font-size: 20px;
  color: #f22;
  line-height: 1.3;
}

/* ===== OUR PROCESS ===== */
.eu-process {
  background: #e9e9e9;
  padding: 144px 0 100px;
}

.eu-process-header {
  text-align: center;
  margin-bottom: 80px;
}

.eu-process-header .eu-heading {
  margin-top: 8px;
  margin-bottom: 11px;
}

.eu-process-sub {
  font-size: clamp(1rem, 1.5vw, 26px);
  color: var(--eu-navy);
  max-width: 922px;
  margin: 0 auto;
  line-height: 1.5;
}

.eu-process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1284px;
  margin: 0 auto;
  padding: 50px 0;
}

.eu-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 0 20px;
}

.eu-step-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 104px;
  line-height: 1.04;
  color: var(--eu-orange);
  opacity: 0.4;
  text-transform: uppercase;
}

.eu-step-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(1.2rem, 2vw, 30px);
  line-height: 1.1;
  color: var(--eu-navy);
}

.eu-step p {
  font-size: 16px;
  color: var(--eu-navy);
  line-height: 1.5;
  max-width: 289px;
}

.eu-step-divider {
  width: 1px;
  height: 349px;
  background: rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
  align-self: center;
}

/* ===== THE BENEFIT ===== */
.eu-benefit {
  padding: 100px 0 80px;
}

.eu-benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.eu-benefit-illustration {
  position: relative;
  width: 100%;
  aspect-ratio: 653 / 672;
  border-radius: 40px;
  box-shadow: 4px 4px 50px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eu-benefit-illustration img {
  width: 80%;
  max-width: 500px;
}

.eu-benefit-content .eu-heading {
  margin-bottom: 32px;
}

.eu-benefit-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--eu-navy);
  margin-bottom: 12px;
}

.eu-benefit-stats {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 32px;
}

.eu-bstat {
  text-align: center;
}

.eu-bstat-value {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 70px);
  line-height: 0.97;
  background: var(--eu-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eu-bstat-label {
  display: block;
  font-weight: 500;
  font-size: clamp(12px, 1.2vw, 24px);
  text-transform: uppercase;
  color: var(--eu-navy);
  margin-top: 12px;
}

.eu-bstat-divider {
  width: 2px;
  height: 128px;
  background: rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

/* ===== AFTERCARE ===== */
.eu-aftercare {
  background: #e9e9e9;
  padding: 105px 0 100px;
}

.eu-aftercare-header {
  text-align: center;
  margin-bottom: 50px;
}

.eu-aftercare-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 60px);
  line-height: 1.04;
  color: #000;
  margin-top: 4px;
  white-space: nowrap;
}

.eu-aftercare-sub {
  font-size: clamp(1rem, 1.5vw, 26px);
  color: #000;
  margin-top: 4px;
}

.eu-aftercare-icons {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1284px;
  margin: 0 auto;
  padding: 50px 0;
}

.eu-after-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 0 20px;
}

.eu-after-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eu-after-icon img {
  max-width: 100%;
  max-height: 100%;
}

.eu-after-col h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(1.2rem, 2vw, 30px);
  line-height: 1.1;
  color: var(--eu-navy);
}

.eu-after-col p {
  font-size: 16px;
  color: var(--eu-navy);
  line-height: 1.5;
  max-width: 289px;
}

.eu-after-divider {
  width: 1px;
  height: 279px;
  background: rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
  align-self: center;
}

/* ===== CTA ===== */
.eu-cta {
  background: var(--eu-navy);
  padding: 143px 0 100px;
  text-align: center;
}

.eu-cta-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 60px);
  line-height: 1.04;
  color: #fff;
  max-width: 1320px;
  margin: 0 auto 8px;
  white-space: nowrap;
}

.eu-cta-sub {
  font-size: clamp(1rem, 1.5vw, 26px);
  color: #fff;
  margin-bottom: 48px;
}

.eu-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 400px;
  height: 82px;
  padding: 0 60px;
  background: var(--eu-gradient);
  border-radius: 73px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #000;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eu-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(241, 146, 49, 0.4);
}

/* ===== FOOTER IMAGE ===== */
.eu-footer-img {
  width: 100%;
  height: 410px;
  overflow: hidden;
}

.eu-footer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .eu-hero {
    height: auto;
    min-height: 80vh;
    padding: 140px 0 80px;
  }

  .eu-trap-grid,
  .eu-benefit-grid {
    gap: 32px;
  }

  .eu-process-steps {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }

  .eu-step-divider {
    display: none;
  }

  .eu-step-num {
    font-size: 72px;
  }

  .eu-after-divider {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .eu-hero {
    min-height: 80vh;
    padding: 120px 0 60px;
  }

  .eu-hero-content {
    padding: 0 16px;
  }

  .eu-trap {
    padding: 50px 0 40px;
  }

  .eu-trap-grid,
  .eu-benefit-grid {
    grid-template-columns: 1fr;
  }

  .eu-heading {
    font-size: 1.6rem;
  }

  .eu-trap-text p,
  .eu-benefit-content p,
  .eu-step p,
  .eu-after-col p {
    font-size: 14px;
  }

  .eu-process {
    padding: 60px 0;
  }

  .eu-process-header {
    margin-bottom: 40px;
  }

  .eu-process-steps {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 20px 0;
  }

  .eu-step-divider {
    display: none;
  }

  .eu-benefit {
    padding: 50px 0 40px;
  }

  .eu-benefit-illustration {
    border-radius: 20px;
  }

  .eu-aftercare {
    padding: 60px 0;
  }

  .eu-aftercare-icons {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 20px 0;
  }

  .eu-after-divider {
    width: 200px;
    height: 1px;
  }

  .eu-aftercare-title {
    white-space: normal;
    font-size: 1.6rem;
  }

  .eu-benefit-stats {
    flex-direction: column;
    gap: 24px;
  }

  .eu-bstat-divider {
    width: 128px;
    height: 2px;
  }

  .eu-cta {
    padding: 60px 0;
  }

  .eu-cta-heading {
    white-space: normal;
  }

  .eu-cta-btn {
    min-width: auto;
    width: 100%;
    max-width: 400px;
    height: 56px;
    font-size: 16px;
    padding: 0 24px;
  }

  .eu-footer-img {
    height: 200px;
  }

  .eu-trap-alert {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 16px;
  }

  .eu-trap-alert-num {
    font-size: 28px;
  }

  .eu-trap-alert-text {
    font-size: 16px;
  }

  .day-night-compare {
    border-radius: 16px;
  }

  .day-night-handle {
    width: 36px;
    height: 36px;
  }

  .day-night-handle svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .eu-hero {
    padding: 100px 0 50px;
    min-height: 70vh;
  }

  .eu-hero-small {
    font-size: 1rem;
  }

  .eu-hero-big {
    font-size: 1.3rem;
  }

  .eu-hero-sub {
    font-size: 0.9rem;
  }

  .eu-hero-cta {
    padding: 4px 16px 4px 4px;
    gap: 10px;
  }

  .eu-hero-cta-icon {
    width: 38px;
    height: 38px;
  }

  .eu-hero-cta span {
    font-size: 14px;
  }

  .eu-label {
    font-size: 14px;
  }

  .eu-heading {
    font-size: 1.4rem;
  }

  .eu-trap {
    padding: 40px 0 30px;
  }

  .eu-step-num {
    font-size: 48px;
  }

  .eu-process {
    padding: 40px 0;
  }

  .eu-aftercare {
    padding: 40px 0;
  }

  .eu-cta {
    padding: 40px 0;
  }

  .eu-cta-heading {
    font-size: 1.3rem;
  }

  .eu-cta-sub {
    font-size: 0.9rem;
    margin-bottom: 24px;
  }

  .eu-cta-btn {
    height: 50px;
    font-size: 14px;
  }

  .eu-footer-img {
    height: 150px;
  }

  .eu-after-icon {
    width: 70px;
    height: 70px;
  }
}
