/* =====================================================
   ENERGY — Сторінка "Енергетика"
   ===================================================== */

/* -------------------------------------------------------
   Загальна обгортка сторінки
   ------------------------------------------------------- */
.energy-page {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  padding-bottom: 80px;

  background: #f5f7fc;

  @media (min-width: 1020px) {
    padding-bottom: 196px;
  }
}

/* -------------------------------------------------------
   Hero
   ------------------------------------------------------- */
.energy-page__hero {
  display: flex;
  flex-direction: column;

  position: relative;
  z-index: 10;

  @media (min-width: 1400px) {
    flex-direction: row;
    padding-bottom: 65px;
  }
}

.energy-page__hero .container {
  padding-top: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 5vw, 45px);

  @media (min-width: 1400px) {
    flex-direction: row;
    min-height: 900px;
  }
}

.energy-page__title span {
  color: var(--color-primary);
}

.energy-page__mob_hero_bg {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);

  @media (min-width: 1400px) {
    display: none;
  }
}

/* -------------------------------------------------------
   Ми пропонуємо
   ------------------------------------------------------- */
.energy-page__proposal {
  margin-top: 80px;
  padding-top: 16px;
  position: relative;
  /* height: 708px; */

  @media (min-width: 1020px) {
    margin-top: 100px;
    min-height: 650px;
  }
}

.energy-page__hero-decor--mob-1 {
  position: absolute;
  top: -190px;
  left: 0;
  z-index: 0;

  @media (min-width: 1400px) {
    display: none;
  }
}

.energy-page__hero-decor--mob-2 {
  width: 100%;
  object-fit: cover;
  position: absolute;
  bottom: -50px;
  left: 0;

  z-index: 0;

  @media (min-width: 1400px) {
    display: none;
  }
}

.energy-page__proposal .container {
  flex-direction: column;
}

.proposal-scroll-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 auto;
}

.proposal-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.energy-page__proposal-list {
  margin-top: 220px;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;

  @media (max-width: 768px) {
    margin-top: 220px;
    width: max-content;
    gap: 16px;
  }

  @media (min-width: 1020px) {
    margin: 220px auto 0;
  }

  @media (min-width: 1920px) {
    margin-top: 285px;
    width: 1518px;
    height: 960px;
  }
}

.energy-page__proposal-card {
  width: 236px;
  height: 380px;
  background: rgba(0, 140, 255, 0.05);
  border-radius: 32px;
  padding: 32px 12px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(20px);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  gap: 8px;

  @media (min-width: 1020px) {
    width: 300px;
    height: clamp(390px, 40vw, 782px);
    border-radius: clamp(32px, 3.5vw, 48px);
    gap: clamp(8px, 1.5vw, 32px);
  }

  @media (min-width: 1400px) {
    width: 400px;
    height: 670px;
  }

  @media (min-width: 1920px) {
    width: 456px;
    height: 782px;
    border-radius: 48px;
    gap: 32px;
  }
}

.energy-page__proposal-card-1 {
  bottom: 42px;
}
.energy-page__proposal-card-2 {
  bottom: 116px;
}
.energy-page__proposal-card-3 {
  bottom: 20px;
}

.energy-page__proposal-card-image {
  position: absolute;
  width: 212px;
  height: 256px;
  object-fit: cover;
  display: block;
  top: -80px;
  left: 12px;

  @media (min-width: 1020px) {
    width: 275px;
    height: 380px;
    top: -121px;
    left: 12px;
  }

  @media (min-width: 1400px) {
    width: 380px;
    height: 520px;
    top: -121px;
    left: 8px;
  }

  @media (min-width: 1920px) {
    width: 419px;
    height: 583px;
    top: -121px;
    left: 19px;
  }
}

.energy-page__proposal-card-image-1 {
  clip-path: url(#card-mask-left);
  object-fit: cover;
  display: block;
}

.energy-page__proposal-card-image-2 {
  clip-path: url(#card-mask-right);
  object-fit: cover;
  display: block;
}

.energy-page__proposal-card-image-3 {
  clip-path: url(#card-mask-right);
}

.energy-page__proposal-card-title {
  font-size: 18px;
  font-weight: 600;

  @media (min-width: 1020px) {
    font-weight: 700;
    font-size: 20px;
  }

  @media (min-width: 1400px) {
    font-size: 28px;
  }

  @media (min-width: 1920px) {
    font-size: 32px;
  }
}

.energy-page__proposal-card-text {
  font-size: 14px;
  text-align: center;

  @media (min-width: 1020px) {
    font-size: 15px;
  }

  @media (min-width: 1400px) {
    font-size: 18px;
  }

  @media (min-width: 1920px) {
    font-size: 20px;
  }
}

.energy-page__proposal-card-link {
  font-weight: 600;
  font-size: 13px;
  width: 204px;
  height: 32px;
  padding: 8px 0px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 22px;

  @media (min-width: 768px) {
    margin-top: 12px;
  }

  @media (min-width: 1020px) {
    width: 386px;
    height: 56px;
    padding: 12px 0px;
    border-radius: 16px;
    gap: 10px;
    margin-top: 0;
  }

  @media (min-width: 1020px) {
    font-size: 16px;
  }

  @media (min-width: 1400px) {
    font-size: 20px;
  }

  @media (min-width: 1920px) {
    font-size: 24px;
  }
}

/* Proposal dots */
.proposal-dots {
  display: none;

  @media (max-width: 560px) {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
  }
}

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

.proposal-dot.active {
  width: 32px;
  border-radius: 4px;
  background: var(--color-dark);
}

@media (max-width: 768px) {
  .energy-page__proposal .container {
    padding-left: 0;
    padding-right: 0;
  }

  .energy-page__proposal .section-title {
    padding-left: 16px;
  }

  .proposal-scroll-wrapper {
    padding-left: 16px;
    padding-right: 0;
  }

  .proposal-scroll-wrapper.scrolled-mid {
    padding-left: 0;
    padding-right: 0;
  }

  .proposal-scroll-wrapper.scrolled-end {
    padding-left: 0;
    padding-right: 16px;
  }
}

/* -------------------------------------------------------
   Як ми працюємо
   ------------------------------------------------------- */

.energy-page__hww {
  margin-top: 80px;
  padding: 16px 0px;
  position: relative;

  @media (min-width: 1020px) {
    margin-top: 100px;
    padding-top: 70px;
    padding-bottom: 100px;
  }
}

.blue-hww__decor-logo {
  width: 358px;
  height: auto;
  position: absolute;
  top: 20px;
  left: 10px;
  z-index: 0;
  opacity: 0.8;
}

.blue-hww__decor--desktop {
  position: absolute;
  top: -300px;
  right: 0;
  z-index: 0;
  opacity: 0.4;
}

.blue-choose__decor--desktop {
  position: absolute;
  top: -365px;
  left: 0;
  z-index: 0;
  opacity: 0.3;
}

.blue-proposal__decor--desktop {
  width: 100%;
  height: 100%;

  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 1;
}

.blue-choose__decor--desktop-2 {
  position: absolute;
  bottom: -300px;
  right: 0;
  z-index: 0;
  opacity: 0.3;
}

.blue-products__decor--desktop {
  position: absolute;
  top: 0px;
  right: 0;
  z-index: 0;
  opacity: 0.4;
}

.blue-hww__decor--mob {
  position: absolute;
  top: 335px;
  right: 0;
  z-index: 0;
  opacity: 0.2;
}

.blue-hww__decor--mob-2 {
  position: absolute;
  top: -25px;
  right: 0;
  z-index: 0;
  opacity: 0.5;
}

.blue-choose__decor--mob {
  position: absolute;
  top: -110px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;

  opacity: 0.3;
}

.blue-equipment__decor--mob {
  position: absolute;
  top: -100px;
  right: 0;
  z-index: 0;

  opacity: 0.4;
}

.energy-page__hww-list {
  width: 100%;
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;

  @media (min-width: 1020px) {
    flex-direction: row;
  }
}

.energy-page__hww-item {
  width: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  gap: 12px;

  @media (min-width: 1020px) {
    width: 260px;
    height: auto;
    flex-direction: column;
    gap: 16px;
  }
}

.energy-page__hww-item-image-wrapper {
  width: 120px;
  height: 120px;
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;

  @media (min-width: 1020px) {
    width: 260px;
    height: 260px;
  }
}

.energy-page__hww-image {
  width: 100%;
  height: 100%;
}

.energy-page__hww-image-1 {
  filter: drop-shadow(-40px -40px 80px rgba(20, 164, 254, 0.25))
    drop-shadow(0 4px 16px rgba(0, 0, 0, 0.25));
}

.energy-page__hww-image-2 {
  filter: drop-shadow(-40px -40px 80px rgba(9, 78, 239, 0.1))
    drop-shadow(0 4px 16px rgba(0, 0, 0, 0.25));
}

.energy-page__hww-image-3 {
  filter: drop-shadow(-40px -40px 80px rgba(20, 192, 254, 0.1))
    drop-shadow(0 4px 16px rgba(0, 0, 0, 0.25));
}

.energy-page__hww-image-4 {
  filter: drop-shadow(-40px -40px 80px rgba(94, 254, 20, 0.1))
    drop-shadow(0 4px 16px rgba(0, 0, 0, 0.25));
}

.energy-page__hww-item-icon-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  object-fit: contain;
  z-index: 3;

  @media (min-width: 1020px) {
    width: 72px;
    height: 72px;
  }
}

.energy-page__hww-item:first-child .energy-page__hww-item-icon-wrapper {
  transform: translate(-40%, -50%);
}

.energy-page__hww-item:last-child .energy-page__hww-item-icon-wrapper {
  transform: translate(-45%, -50%);
}

.energy-page__hww-item-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.energy-page__hww-item-step-wrapper {
  min-height: 32px;
  display: flex;
  gap: 24px;
  align-items: start;

  @media (min-width: 1020px) {
    min-height: 78px;
  }
}

.energy-page__hww-item-step {
  width: 32px;
  min-height: 32px;
  border-radius: 9px;
  flex-shrink: 0;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;

  @media (min-width: 1020px) {
    width: 56px;
    min-height: 56px;
    border-radius: 16px;
  }
}

.energy-page__hww-item-step p {
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: clamp(18px, 15.1px + 0.9vw, 32px);
  color: white;
  line-height: 100%;
  text-align: center;
}

.energy-page__hww-item-step-wrapper h4 {
  font-weight: 600;
  font-size: clamp(20px, 17.09px + 0.78vw, 32px);
  line-height: 100%;
  letter-spacing: 0px;
  vertical-align: middle;
}

.energy-page__hww-item-text {
  font-weight: 500;
  font-size: clamp(16px, 15.03px + 0.26vw, 20px);
  line-height: 100%;
  letter-spacing: 0px;
  vertical-align: middle;
}

/* Лінія-конектор */
.energy-page__hww-line {
  display: none;
}

.energy-page__hww-connector {
  flex: 0 0 auto;
  width: 2px;
  height: 40px;
  margin-left: 59px;
  margin-top: 0;
  margin-bottom: 0;
  align-self: auto;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;

  @media (min-width: 1020px) {
    width: 0px;
    height: 2px;
    margin-top: 130px;
    margin-left: -20px;
    margin-right: -20px;
    flex: 1;
    position: relative;
    align-self: flex-start;
  }
}

.energy-page__hww-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;

  @media (min-width: 1020px) {
    width: 32px;
    height: 32px;
  }
}

/* Partners */
.energy-page__hww-partners {
  width: min(100%, 1518px);
  height: clamp(135px, 119.22px + 4.21vw, 200px);
  border-radius: clamp(16px, 10px + 1.5vw, 64px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 32px auto 0;
  background:
    url('../images/partners.png') center/cover no-repeat,
    #094eef0d;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);

  @media (min-width: 1920px) {
    margin: 111px auto 0;
  }
}

.energy-page__hww-partners-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  overflow: hidden;

  @media (min-width: 1020px) {
    gap: 18px;
  }

  @media (min-width: 1400px) {
    gap: 26px;
  }

  @media (min-width: 1920px) {
    gap: 32px;
  }
}

.energy-page__hww-partners-img-wrapper {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;

  @media (min-width: 1920px) {
    width: 175px;
    height: 175px;
  }
}

.energy-page__hww-partners-img {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  border-radius: 16px;

  @media (min-width: 1400px) {
    width: 96px;
    height: 96px;
    border-radius: 36px;
  }

  @media (min-width: 1920px) {
    width: 124px;
    height: 124px;
    border-radius: 40px;
  }
}

.energy-page__hww-partners-icon {
  width: 40px;
  height: 40px;

  @media (min-width: 1400px) {
    width: 56px;
    height: 56px;
  }

  @media (min-width: 1920px) {
    width: 72px;
    height: 72px;
  }
}

.energy-page__hww-partners-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.energy-page__hww-partners-title {
  font-weight: 700;
  font-size: clamp(16px, 12.12px + 1.04vw, 32px);
  line-height: 100%;
  letter-spacing: 0px;
}

.energy-page__hww-partners-subtitle {
  font-size: clamp(14px, 12.12px + 0.39vw, 20px);
  line-height: 100%;
  letter-spacing: 0px;

  @media (min-width: 1020px) {
    font-weight: 500;
  }
}

/* -------------------------------------------------------
   Чому обирають нас
   ------------------------------------------------------- */
.energy-page__choose {
  margin-top: 80px;
  overflow: visible;

  position: relative;

  @media (min-width: 1020px) {
    margin-top: 100px;
  }
}

.energy-page__choose .section-subtitle {
  @media (min-width: 1020px) {
    display: none;
  }
}

.energy-page__choose_img-container {
  width: 1900px;
  max-width: 100%;
  margin: 218px auto 0;
  height: 279px;
  position: relative;

  @media (max-width: 1020px) {
    width: 100%;
    height: auto;
    margin-top: 24px;
    border-radius: 24px;
    overflow: hidden;
  }
}

.energy-page__choose_mobile-img-wrapper {
  width: 348px;
  height: 395px;
  margin: 0 auto;

  border-radius: 64px;
  overflow: hidden;

  position: relative;

  @media (min-width: 1020px) {
    display: none;
  }
}

.energy-page__choose_img-mobile {
  width: 100%;
  height: 100%;

  /* object-fit: cover; */
}

.energy-page__choose_mobile-img-decor {
  position: absolute;
  inset: 0;
  background: #00000066;

  width: 100%;
  height: 100%;

  z-index: 0;
}

.energy-page__choose_img-desktop {
  display: none;

  @media (min-width: 1020px) {
    display: block;

    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.energy-page__choose_img-container .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 88px;

  position: relative;
  z-index: 2;
  height: 100%;
}

.energy-page__choose_item {
  width: 282px;
  height: 296px;

  border-radius: 46px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;

  margin: 0 auto;

  padding: 24px 0;

  border-top: 1px solid rgb(170, 170, 170);
  border-right: 1px solid rgba(217, 217, 217, 1);
  border-bottom: 1px solid rgba(217, 217, 217, 1);
  border-left: 1px solid rgb(170, 170, 170);
  background: #bacfff0d;
  box-shadow: 0px 0px 8px 0px #eaeaea4d;
  backdrop-filter: blur(2px);

  @media (max-width: 1020px) {
    display: none;
  }

  @media (min-width: 1020px) {
    width: 372px;
    height: 100%;
    padding: 0;
    padding-top: 157px;

    border-radius: 0;
    border: none;
    background: transparent;

    box-shadow: none;
    backdrop-filter: none;
  }
}

.energy-page__choose_item.active {
  @media (max-width: 1020px) {
    display: flex;
  }
}

.energy-page__choose_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;

  @media (min-width: 1020px) {
    color: #182340;
  }
}

.energy-page__choose_icon svg {
  width: 56px;
  height: 56px;

  @media (min-width: 1020px) {
    width: 96px;
    height: 96px;
  }
}

.energy-page__choose_text {
  width: min(319px, 100%);
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0px;
  font-size: clamp(24px, 22.06px + 0.52vw, 32px);
  color: white;
  text-align: center;
  position: relative;
  z-index: 1;
}

.energy-page__choose_img-wrapper {
  width: 60px;
  height: 60px;

  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;

  @media (max-width: 1020px) {
    top: auto;
    position: relative;
    left: auto;
    transform: none;
  }

  @media (min-width: 1020px) {
    width: 180px;
    height: 180px;
    border-radius: 50%;

    top: -73px;

    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    border-left: 1px solid #e6e6e6;
    border-top: 1px solid #e6e6e6;
    border-right: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
  }
}

.energy-page__choose_img-wrapper img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.energy-page__choose_step {
  position: absolute;
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 128px;
  line-height: 100%;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
  opacity: 0.15;
  color: #fee114;
  top: 103px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;

  @media (max-width: 767px) {
    top: 85px;
    background: linear-gradient(180deg, #000000 0%, #bacfff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;

    opacity: 0.3;
  }
}

.choose-dots {
  display: none;

  @media (max-width: 1020px) {
    display: flex;
    gap: 8px;
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }
}

.choose-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.choose-dot.active {
  width: 32px;
  border-radius: 4px;
  background: white;
}

@media (max-width: 1020px) {
  .energy-page__choose_img {
    position: relative;
    width: 100%;
    height: 526px;
    object-fit: cover;
  }

  .energy-page__choose_img-container .container {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
}

/* -------------------------------------------------------
   Обладнання
   ------------------------------------------------------- */
.energy-page__equipment {
  margin-top: 80px;

  position: relative;

  @media (min-width: 1020px) {
    margin-top: 100px;
  }
}

.energy-page__equipment_list {
  padding: 64px 0;
  margin-top: 32px;
  display: flex;

  @media (max-width: 1020px) {
    width: max-content;
    gap: 80px;
    padding: 0 0 16px;
  }

  @media (min-width: 1020px) {
    justify-content: space-between;
  }
}

.energy-page__equipment_item {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: center;
  position: relative;
}

.energy-page__equipment_item-img-wrapper {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  background: #ffffff;
  border: 0.92px solid #d9d9d9;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;

  @media (min-width: 1920px) {
    width: 260px;
    height: 260px;

    border: 2px solid #d9d9d9;
  }
}

.energy-page__equipment_item-title {
  font-weight: 600;
  font-size: clamp(24px, 22.06px + 0.52vw, 32px);
  line-height: 100%;
  letter-spacing: 0px;
  text-align: center;
}

.energy-page__equipment_item-img-wrapper-1 {
  box-shadow:
    -40px -40px 80px 0px #fe14180a,
    0px 4px 16px 0px #00000040;
}

.energy-page__equipment_item-img-wrapper-2 {
  box-shadow:
    -40px -40px 80px 0px #72c0f114,
    0px 4px 16px 0px #00000040;
}

.energy-page__equipment_item-img-wrapper-3 {
  box-shadow:
    -40px -40px 80px 0px #5efe140a,
    0px 4px 16px 0px #00000040;
}

.energy-page__equipment_item-img-wrapper-4 {
  box-shadow:
    -40px -40px 80px 0px #fe14180a,
    0px 4px 16px 0px #00000040;
}

.energy-page__equipment_item-img-wrapper-5 {
  box-shadow:
    -40px -40px 80px 0px #14c0fe14,
    0px 4px 16px 0px #00000040;
}

.energy-page__equipment_item-img-wrapper-2 img,
.energy-page__equipment_item-img-wrapper-3 img,
.energy-page__equipment_item-img-wrapper-4 img {
  width: 60px;
  height: 60px;
  object-fit: contain;

  @media (min-width: 1920px) {
    width: 130px;
    height: 130px;
  }
}

.energy-page__equipment_item-img-wrapper-5 img {
  object-fit: contain;

  @media (min-width: 1920px) {
    width: 203px;
    height: auto;
  }
}

/* Equipment dots */
.equipment-dots {
  display: none;

  @media (max-width: 1020px) {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
  }
}

.equipment-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-dark);
  transition: all 0.3s ease;
}

.equipment-dot.active {
  width: 32px;
  border-radius: 4px;
  background: var(--color-dark);
}

@media (max-width: 1020px) {
  .energy-page__equipment .container {
    padding-left: 0;
    padding-right: 0;
  }

  .energy-page__equipment .section-title,
  .energy-page__equipment .section-subtitle {
    padding-left: 40px;
  }

  .equipment-scroll-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-left: 16px;
    padding-right: 0;
  }

  .equipment-scroll-wrapper.scrolled-mid {
    padding-left: 0;
    padding-right: 0;
  }

  .equipment-scroll-wrapper.scrolled-end {
    padding-left: 0;
    padding-right: 16px;
  }

  .equipment-scroll-wrapper::-webkit-scrollbar {
    display: none;
  }
}

/* -------------------------------------------------------
   Популярні товари
   ------------------------------------------------------- */
.energy-page__products {
  margin-top: 104px;

  position: relative;

  @media (min-width: 1020px) {
    margin-top: 143px;
  }
}
.blue-products__decor--mob {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0.3;
}

.blue-products__decor--mob-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
  opacity: 0.4;
}

.energy-page .section-subtitle {
  margin-top: 16px;
  font-weight: 500;
}

/* Таби */
.products-tabs {
  width: 100%;
  padding: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 64px;

  background: var(--color-bg);

  border: 1px solid rgba(217, 217, 217, 1);
  border-radius: 64px;

  @media (max-width: 1020px) {
    width: max-content;
    gap: 12px;
    padding: 32px 16px;
    margin-top: 16px;
  }
}

.products-tab {
  width: 186px;
  height: 186px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 19px;
  padding-bottom: 19px;
  gap: 4px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  border-radius: 42px;
  border: 1px solid transparent;

  @media (min-width: 1020px) {
    width: 264px;
    height: 225px;

    gap: 16px;
  }
}

.products-tab:hover {
  @media (min-width: 1020px) {
    box-shadow: 0px 0px 20px 0px rgba(69, 80, 109, 0.5);
  }
}

.products-tab.is-active {
  border: 1px solid rgba(69, 80, 109, 0.302);

  @media (min-width: 1020px) {
    border: 1px solid rgba(69, 80, 109, 1);
  }
}

.products-tab__icon {
  width: auto;
  min-width: 104px;
  height: 104px;
  object-fit: contain;
  margin: 0 auto;
}

.products-tab__name {
  font-style: normal;
  font-weight: 700;

  font-size: clamp(16px, 14.06px + 0.52vw, 24px);

  line-height: 100%;
  letter-spacing: 0px;
  text-align: center;

  @media (min-width: 1020px) {
    font-weight: 500;
  }
}

.products-tab__description {
  font-size: clamp(12px, 11.03px + 0.26vw, 16px);

  line-height: 100%;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
}

/* Tabs dots */
.tabs-dots {
  display: none;

  @media (max-width: 1020px) {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
  }
}

.tabs-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d0d0d0;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.tabs-dot.active {
  width: 32px;
  border-radius: 4px;
  background: var(--color-dark);
}

@media (max-width: 1020px) {
  .energy-page__products .container {
    padding-left: 0;
    padding-right: 0;
  }

  .energy-page__products .section-title,
  .energy-page__products .section-subtitle {
    padding-left: 40px;
  }

  .tabs-scroll-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-left: 16px;
    padding-right: 0;

    position: relative;
    z-index: 1;
  }

  .tabs-scroll-wrapper.scrolled-mid {
    padding-left: 0;
    padding-right: 0;
  }

  .tabs-scroll-wrapper.scrolled-end {
    padding-left: 0;
    padding-right: 16px;
  }

  .tabs-scroll-wrapper::-webkit-scrollbar {
    display: none;
  }
}

.tabs-scroll-wrapper {
  position: relative;
  z-index: 1;
  @media (min-width: 1020px) {
    margin-top: 16px;
  }
}

/* Списки товарів */
.products-list {
  display: none;
  margin-top: 28px;
  overflow: visible;
  position: relative;

  @media (min-width: 1020px) {
    margin-top: 197px;
  }
}

.products-list.is-active {
  min-height: 460px;
  width: 100%;
  display: flex !important;
  align-items: center;
  flex-direction: column;

  @media (min-width: 1020px) {
    flex-direction: row;
  }
}

.products-list__empty {
  font-weight: 600;
  font-size: clamp(16px, 15.03px + 0.26vw, 20px);
  line-height: 100%;
  letter-spacing: 0px;
  margin: 0 auto;
  text-align: center;
}

/* Swiper (десктоп) */
.products-swiper {
  flex: 1;
  padding-top: 170px !important;
  margin-top: -170px !important;
  padding-left: 32px;
  padding-right: 32px;
}

.products-swiper .swiper-slide {
  height: 540px !important;
  display: flex;
  align-items: center;
  justify-content: end;

  @media (min-width: 1400px) {
    height: 480px !important;
  }

  @media (min-width: 1920px) {
    height: 540px !important;
  }
}

.products-arrow {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  cursor: pointer;
  transition:
    opacity 0.3s ease-in-out,
    scale 0.3s ease-in-out;
}

.products-arrow:hover {
  scale: 1.1;
}

.products-arrow.swiper-button-disabled {
  opacity: 0.4 !important;
  pointer-events: none !important;
}

.products-arrow--next {
  transform: rotate(180deg);
}

/* Мобільний скрол (замість swiper) */
.products-mobile-scroll {
  display: none;

  @media (max-width: 768px) {
    min-height: 460px;
    width: 100%;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-left: 16px;
    padding-right: 0;
  }
}

.products-mobile-scroll.scrolled-mid {
  @media (max-width: 768px) {
    padding-left: 0;
    padding-right: 0;
  }
}

.products-mobile-scroll.scrolled-end {
  @media (max-width: 768px) {
    padding-left: 0;
    padding-right: 16px;
  }
}

.products-mobile-scroll::-webkit-scrollbar {
  display: none;
}

.products-mobile-list {
  @media (max-width: 768px) {
    min-height: 460px;
    display: flex;
    width: max-content;
    gap: 16px;
    padding: 120px 0 24px;
    margin-top: auto;
    position: relative;
    z-index: 1;
  }
}

.products-dots {
  display: none;

  @media (max-width: 768px) {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
  }
}

.products-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d0d0d0;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.products-dot.active {
  width: 32px;
  border-radius: 4px;
  background: var(--color-dark);
}

@media (max-width: 768px) {
  .products-swiper,
  .products-arrow {
    display: none !important;
  }
}

/* Картки товарів */
.product-card {
  width: 232px;
  height: 372px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  padding: 20px 12px 20px;
  border-radius: 32px;
  border: 1px solid rgba(217, 217, 217, 1);

  background: var(--color-bg);

  @media (min-width: 768px) {
    width: 334px;
    height: 540px;
  }
}

.swiper-slide .product-card {
  margin: 0 auto;
}

.product-card__image-wrapper {
  position: absolute;
  width: 200px;
  height: 208px;
  top: -50%;
  left: 50%;
  transform: translate(-50%, 50%);
  border-radius: 32px;
  border: 1px solid rgba(217, 217, 217, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  @media (min-width: 768px) {
    width: 304px;
    height: 318px;
  }

  @media (min-width: 1400px) {
    width: 230px;
    height: 270px;
  }

  @media (min-width: 1920px) {
    width: 304px;
    height: 318px;
  }
}

.product-card__image {
  width: auto;
  height: 100%;
  object-fit: contain;
}

.product-card__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.product-card__title {
  font-weight: 600;
  font-size: clamp(16px, 15.03px + 0.26vw, 20px);
  line-height: 100%;
  letter-spacing: 0px;
  text-align: center;
}

.product-card__subtitle {
  font-weight: 400;
  font-size: clamp(12px, 11.03px + 0.26vw, 16px);
  line-height: 100%;
  letter-spacing: 0px;
  text-align: center;

  @media (min-width: 768px) {
    font-weight: 500;
  }
}

.product-card__guarantee {
  width: 165px;
  height: 48px;
  gap: 4px;
  border-radius: 8px;
  padding: 4px;
  background: rgba(24, 35, 64, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  @media (min-width: 768px) {
    width: 177px;
    height: 58px;
  }
}

.product-card__guarantee-title {
  font-weight: 400;
  font-size: clamp(12px, 11.51px + 0.13vw, 14px);
  line-height: 100%;
  letter-spacing: 0px;
  text-align: center;
}

.product-card__guarantee-text {
  font-weight: 600;
  font-size: clamp(16px, 14.06px + 0.52vw, 24px);
  line-height: 100%;
  letter-spacing: 0px;
  text-align: center;
  color: var(--color-primary);
}

.product-card__btn {
  width: 200px;
  height: 32px;
  border-radius: 8px;
  font-size: clamp(13px, 11.3px + 0.45vw, 20px);
  font-family: var(--font-inter);
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -1.28px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;

  @media (min-width: 768px) {
    width: 264px;
    height: 52px;
    border-radius: 16px;
    font-weight: 500;
    letter-spacing: 0px;
  }
}

/* -------------------------------------------------------
   Форма
   ------------------------------------------------------- */
.energy-page__form {
  margin-top: 80px;

  @media (min-width: 1020px) {
    margin-top: 100px;
  }
}

.energy-page .wpcf7-form input[type='submit'],
.energy-page .wpcf7-submit {
  margin-top: 18px;
  width: 100%;
  height: 64px;
  padding: 16px 48px;
  border-radius: 16px;
  background: var(--color-primary);
  color: var(--color-white);

  @media (min-width: 1020px) {
    width: 352px;
  }
}

.energy-page .wpcf7-form {
  gap: 16px;
}

.energy-page__choose_img-wrapper-1 {
  @media (min-width: 1020px) {
    background: #094eef0d;
    box-shadow:
      0px 4px 16px 0px #00000040,
      -40px -40px 80px 0px #094eef0a;
  }
}

.energy-page__choose_img-wrapper-2 {
  @media (min-width: 1020px) {
    background: #14c0fe1a;
    box-shadow:
      -40px -40px 80px 0px #14c0fe14,
      0px 4px 16px 0px #00000040;
  }
}

.energy-page__choose_img-wrapper-3 {
  @media (min-width: 1020px) {
    background: #5efe141a;
    box-shadow:
      -40px -40px 80px 0px #5efe140a,
      0px 4px 16px 0px #00000040;
  }
}

.energy-page__choose_img-wrapper-4 {
  @media (min-width: 1020px) {
    background: #14a4fe1a;
    box-shadow:
      0px 4px 16px 0px #00000040,
      -40px -40px 80px 0px #14a4fe14;
  }
}

/* =====================================================
   RESPONSIVE — Проміжні розміри 1020px → 1920px
   ===================================================== */

/* ── Ми пропонуємо ─────────────────────────────────── */
@media (min-width: 1020px) {
  .energy-page__proposal-card-link {
    width: clamp(180px, 26vw, 386px);
    height: clamp(32px, 3.8vw, 56px);
    border-radius: clamp(8px, 1.2vw, 16px);
    font-size: clamp(13px, 1.1vw, 20px);
  }

  .energy-page__proposal-list {
    margin-top: clamp(190px, 18vw, 285px);
  }
}

/* ── Як ми працюємо ────────────────────────────────── */
@media (min-width: 1020px) and (max-width: 1280px) {
  .energy-page__hww-item {
    width: clamp(160px, 18vw, 260px);
  }

  .energy-page__hww-item-image-wrapper {
    width: clamp(160px, 18vw, 260px);
    height: clamp(160px, 18vw, 260px);
  }

  .energy-page__hww-item-icon-wrapper {
    width: clamp(44px, 5vw, 72px);
    height: clamp(44px, 5vw, 72px);
  }

  .energy-page__hww-item-step {
    width: clamp(36px, 4vw, 56px);
    min-height: clamp(36px, 4vw, 56px);
    border-radius: clamp(9px, 1.2vw, 16px);
  }

  .energy-page__hww-item-step-wrapper {
    min-height: clamp(40px, 6vw, 78px);
    gap: clamp(12px, 2vw, 24px);
  }

  .energy-page__hww-connector {
    margin-top: clamp(80px, 11vw, 130px);
    margin-left: -10px;
    margin-right: -10px;
  }

  .energy-page__hww-dot {
    width: clamp(18px, 2.5vw, 32px);
    height: clamp(18px, 2.5vw, 32px);
  }
}

/* ── Чому обирають ─────────────────────────────────── */
@media (min-width: 1020px) {
  .energy-page__choose_img-container {
    margin-top: clamp(100px, 14vw, 218px);
    height: clamp(200px, 20vw, 279px);
  }

  .energy-page__choose_item {
    width: clamp(140px, 20vw, 372px);
    padding-top: clamp(80px, 10vw, 157px);
  }

  .energy-page__choose_img-container .container {
    gap: clamp(16px, 4vw, 88px);
  }

  .energy-page__choose_img-wrapper {
    width: clamp(90px, 12vw, 180px);
    height: clamp(90px, 12vw, 180px);
    top: clamp(-73px, -6vw, -45px);
  }

  .energy-page__choose_icon svg {
    width: clamp(40px, 5vw, 96px);
    height: clamp(40px, 5vw, 96px);
  }

  .energy-page__choose_step {
    font-size: clamp(64px, 9vw, 128px);
    top: clamp(50px, 7vw, 103px);
  }
}

/* ── Обладнання ────────────────────────────────────── */
@media (min-width: 1020px) {
  .energy-page__equipment_item-img-wrapper {
    width: clamp(120px, 12vw, 260px);
    height: clamp(120px, 12vw, 260px);
  }
}
