.parallax-features {
  padding: 96px 0 48px;
  background: #fff;
}

.parallax-comp {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
  margin: 0 auto;
}

/* Left column: text items, each ~75vh, scroll normally */

.parallax-left {
  width: 43.1%;
  margin-left: auto;
  display: flex;
  flex-direction: column;
}

.parallax-text-box {
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.parallax-text-box__mobile-image {
  display: none;
}

/* Right column: sticky image panel */

.parallax-right {
  width: 47.5%;
  position: sticky;
  top: 15vh;
  min-height: 75vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

/* Image boxes: all stacked absolutely, opacity 0 by default */

.parallax-object-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 75vh;
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
}

.parallax-object-box.is-active {
  opacity: 1;
}

.parallax-image-box {
  background: #f5f6fa;
  border-radius: 1.5rem;
  overflow: hidden;
  width: 100%;
  padding: 0;
  box-shadow: 0 18px 50px rgba(17, 38, 146, 0.08);
}

/* Content typography */

.parallax-feature__title {
  margin: 0;
  color: #000;
  font-feature-settings: "liga" off;
  font-family: Rubik, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 34px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}

.parallax-feature__subtitle {
  margin: 12px 0 0;
  color: #000;
  font-feature-settings: "liga" off;
  font-family: Rubik, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

.parallax-feature__body,
.parallax-feature__footer {
  margin: 18px 0 0;
  color: #000;
  font-feature-settings: "liga" off;
  font-family: Rubik, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

.parallax-feature__list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.parallax-feature__list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.parallax-feature__list-icon {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.parallax-feature__list-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.parallax-feature__list-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #1252fa;
  display: block;
}

.parallax-feature__list-text {
  color: #000;
  font-family: Rubik, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

.parallax-feature__media {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Elementor editor: show all images normally */

.parallax-features--editor .parallax-object-box {
  position: relative;
  opacity: 1;
  margin-bottom: 24px;
}

.parallax-features--editor .parallax-right {
  position: static;
  display: flex;
  flex-direction: column;
}

/* Responsive: 1400px */

@media (max-width: 1400px) {
  .parallax-comp {
    width: min(1280px, calc(100% - 48px));
  }
}

/* Mobile: <= 1024px — single column, no sticky */

@media (max-width: 1024px) {
  .parallax-features {
    padding: 40px 0 60px;
  }

  .parallax-comp {
    flex-direction: column;
    width: min(100%, calc(100% - 32px));
    gap: 0;
  }

  .parallax-left {
    width: 100%;
    margin-left: 0;
  }

  .parallax-right {
    display: none;
  }

  .parallax-text-box {
    min-height: auto;
    padding-right: 0;
    padding-bottom: 60px;
  }

  .parallax-text-box__mobile-image {
    display: block;
    margin-bottom: 24px;
    border-radius: 1.5rem;
    overflow: hidden;
    background: #f5f6fa;
    padding: 0;
    box-shadow: 0 18px 50px rgba(17, 38, 146, 0.08);
  }

  .parallax-text-box__mobile-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  .parallax-feature__body,
  .parallax-feature__footer {
    margin-top: 16px;
  }

  .parallax-feature__list {
    margin-top: 20px;
  }
}
