/* MOX Slider Section */
.mox-slider-section {
  height: 70vh;
  min-height: 760px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  overflow: hidden;
}

.mox-slider-section.flash-transition img {
  animation: smoothZoomOut 0.75s cubic-bezier(0.22, 0.61, 0.36, 1);
}

@keyframes smoothZoomOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.006);
  }
  100% {
    transform: scale(1);
  }
}

.mox-slider-container {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}

.mox-slide {
  width: 100%;
  height: 100%;
  display: none;
  flex-direction: row;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.mox-slide.active {
  display: flex;
  opacity: 1;
}

/* Left side - Image */
.mox-slide-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  height: 100%;
  position: relative;
  background-color: #1f2a1c;
}

.mox-img {
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: center center;
  backface-visibility: hidden;
  will-change: transform;
}

.mox-slide.active .mox-img {
  animation: moxSlowZoom 15s ease-in-out infinite;
}

.mox-slide.active .mox-slide-image:hover .mox-img {
  animation: moxSlowZoomHover 14s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
}

.mox-slide.slide-enter .mox-slide-image {
  animation: moxImageSlideIn 0.85s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

@keyframes moxSlowZoom {
  0% {
    transform: scale(1.02);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1.02);
  }
}

@keyframes moxSlowZoomHover {
  0% {
    transform: scale(1.04);
  }
  28% {
    transform: scale(1.06);
  }
  44% {
    transform: scale(1.08);
  }
  60% {
    transform: scale(1.12);
  }
  100% {
    transform: scale(1.18);
  }
}

@keyframes moxImageSlideIn {
  0% {
    opacity: 0;
    transform: translateX(12px) scale(1.012);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* Right side - Content */
.mox-slide-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 30px;
  background-color: #ffffff;
  background-image: none;
  background-repeat: no-repeat, no-repeat;
  background-position: center, left bottom;
  background-size: auto, 75%;
  color: #333;
}

.mox-slide-content h2,
.mox-slide-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  margin-bottom: 20px;
  color: #378E30;
}

.mox-subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 0;
  margin-top: 5px;
}

.mox-slide-content .orange-text {
  color: #378E30;
}

/* Features Grid */
.mox-features-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(50px, auto);
  gap: 8px;
  margin: 20px 0;
}

.mox-feature-card {
  border: 1px solid rgba(55, 142, 48, 0.18);
  border-radius: 48px;
  background-color: #ffffff;
  color: #555;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 5px 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
  transform: scale(0.9);
  transition: all 0.3s ease-in-out;
}

.mox-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 0;
  width: 100%;
  flex-shrink: 0;
}

.mox-feature-icon i {
  color: #378E30;
  font-size: 2.9rem;
  line-height: 1;
  margin: 10px;
}

.mox-feature-card span {
  display: block;
  font-size: 1.1rem;
  line-height: 1.3;
  flex-shrink: 0;
}

.mox-feature-card:hover {
  border-color: #378E30;
  background-color: #ffffff;
  border-radius: 48px 5px;
  transform: scale(1);
  box-shadow: 0px 40px 40px rgba(0, 0, 0, 0.1);
}

.mox-transport-cards {
  margin-left: -8px;
  margin-right: -8px;
}

.mox-transport-cards > [class*="col-"] {
  padding-left: 8px;
  padding-right: 8px;
}

.mox-transport-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.mox-transport-link:hover,
.mox-transport-link:focus {
  color: inherit;
  text-decoration: none;
}

.mox-transport-card {
  border: 1px solid rgba(55, 142, 48, 0.18);
  border-radius: 48px;
  background-color: #ffffff;
  color: #555;
  width: 100%;
  min-height: 94px;
  padding: 14px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  text-align: left;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(10px) scale(0.96);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.22, 1.2, 0.36, 1), box-shadow 0.5s ease, border-color 0.5s ease;
  animation: moxTransportCardIn 0.65s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.mox-transport-cards .col-lg-4:nth-child(2) .mox-transport-card {
  animation-delay: 0.1s;
}

.mox-transport-cards .col-lg-4:nth-child(3) .mox-transport-card {
  animation-delay: 0.2s;
}

.mox-transport-card:hover {
  border-color: #378E30;
  border-radius: 48px;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0px 40px 40px rgba(0, 0, 0, 0.1);
}

.mox-transport-icon {
  width: auto;
}

.mox-transport-icon i {
  color: #378E30;
  font-size: 2rem;
  line-height: 1;
  margin: 0;
}

.mox-transport-card span {
  display: block;
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
}

@keyframes moxTransportCardIn {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.94);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Desktop: 3 columnas - espejo alternado */
@media (min-width: 1025px) {
  .mox-slider-section {
    height: 80vh !important;
    min-height: 0;
  }

  .mox-feature-card:nth-child(3n+2):hover {
    border-radius: 5px 48px;
  }

  .mox-controls-main {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
  }


@media (max-width: 767px) {
  .mox-transport-card {
    min-height: 84px;
    border-radius: 24px;
    padding: 13px 15px;
  }

  .mox-transport-card:hover {
    border-radius: 24px;
  }

  .mox-transport-icon i {
    font-size: 1.7rem;
  }
}
  .mox-dots {
    position: relative;
    bottom: auto;
    width: auto;
    left: auto;
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    z-index: 10;
    grid-column: 1;
    order: unset;
    align-items: center;
  }

  .mox-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border: none;
  }

  .mox-dot:hover {
    background-color: #aaa;
    transform: scale(1.15);
  }

  .mox-dot.active {
    background-color: #378E30;
    width: 9px;
    border-radius: 2px;
    box-shadow: 0 4px 12px rgba(55, 142, 48, 0.3);
    transform: scale(1.1);
  }

  .mox-inline-arrows {
    justify-self: end;
    grid-column: 2;
  }
}

/* Accordion Styles */
.mox-accordion {
  margin: 0;
}

.mox-accordion-item {
  margin-bottom: 8px;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
}

.mox-accordion-header {
  margin: 0;
}

.mox-accordion-button {
  width: 100%;
  text-align: left;
  background-color: #f8f9fa;
  border: none;
  cursor: pointer;
  font-weight: 600;
  color: #378E30;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.mox-accordion-button:hover {
  background-color: #eee;
}

.mox-accordion-button:not(.collapsed) {
  background-color: #378E30;
  color: #fff;
}

.mox-accordion-collapse {
  display: none;
}

.mox-accordion-collapse.show {
  display: block;
}

.mox-accordion-body {
  padding: 10px 15px;
  background-color: #fff;
  color: #555;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Button */
.mox-btn {
  display: inline-block;
  padding: 10px 18px;
  background-color: #378E30;
  color: #fff;
  border: 2px solid #378E30;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  margin-top: 0;
  transition: all 0.3s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.mox-btn:hover {
  background-color: #2d6c26;
  border-color: #2d6c26;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(55, 142, 48, 0.35);
}

/* Bottom controls */
.mox-controls-row {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
}

.mox-controls-row .mox-btn {
  justify-self: start;
}

.mox-cem-logo {
  display: none;
}

.mox-inline-arrows {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
}

.mox-arrow {
  border: none;
  background-color: #fff;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  color: #378E30;
  transition: all 0.3s ease;
  min-height: 48px;
  min-width: 54px;
  font-size: 1.1rem;
}

.mox-arrow:hover {
  background-color: #1f2a1c;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(31, 42, 28, 0.35);
}

.mox-controls-logo {
  display: none;
}

/* Dots Navigation */
.mox-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 10;
}

.mox-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  border: 2px solid #fff;
}

.mox-dot:hover {
  background-color: #aaa;
  transform: scale(1.15);
}

.mox-dot.active {
  background-color: #378E30;
  width: 36px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(55, 142, 48, 0.3);
  transform: scale(1.1);
}

.mox-process-section {
  position: relative;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  background-color: #f8f9fa;
  overflow: hidden;
  display: flex;
  flex-direction: column-reverse;

}

.mox-process-bar {
  height: 10vh;
  min-height: 88px;
  background-color: #378E30;
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 0 32px;
}

.mox-process-caption {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
}

.mox-process-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.mox-process-arrows {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mox-process-section .mox-process-carousel {
  position: relative;
  height: 80vh;
  min-height: 420px;
  overflow: hidden;
}

.mox-process-section .mox-process-carousel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 44px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  z-index: 5;
}

.mox-process-section .mox-process-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  z-index: 6;
}

.mox-process-section.flash-transition .mox-process-carousel::before {
  animation: carouselWhiteFlash 120ms ease-out;
}

.mox-process-section .carousel-inner {
  height: 100%;
  position: relative;
  
}

.mox-process-section .carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f8f9fa;
  
}

.mox-process-section .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mox-process-section .carousel-item.active img {
  animation: carouselZoomInOut 28s ease-in-out infinite;
}

.mox-process-section .carousel-item.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 16px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  z-index: 4;
}

.mox-process-section .carousel-indicators {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: auto;
  margin: 0;
  padding: 0;
}

.mox-process-section .carousel-indicators li {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #d6d6d6;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #fff;
  margin: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  list-style: none;
}

.mox-process-section .carousel-indicators li:hover {
  background-color: #bcbcbc;
  transform: scale(1.15);
}

.mox-process-section .carousel-indicators li.active {
  background-color: #ffffff;
  width: 36px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.28);
  transform: scale(1.1);
}

.mox-process-section button.carousel-control-prev,
.mox-process-section button.carousel-control-next {
  position: static;
  top: auto;
  left: auto;
  right: auto;
  transform: none;
  width: 50px;
  height: 50px;
  padding: 0;
  background-color: #fff;
  border: 2px solid #378E30;
  border-radius: 50%;
  color: #378E30;
  cursor: pointer;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  opacity: 1;
}

.mox-process-section button.carousel-control-prev:hover,
.mox-process-section button.carousel-control-next:hover,
.mox-process-section button.carousel-control-prev:focus,
.mox-process-section button.carousel-control-next:focus {
  background-color: #2d6c26;
  border-color: #2d6c26;
  color: #fff;
  box-shadow: 0 4px 12px rgba(31, 42, 28, 0.35);
  outline: none;
}

.mox-process-section button.carousel-control-prev i,
.mox-process-section button.carousel-control-next i {
  color: #378E30;
  font-size: 1.2rem;
  line-height: 1;
}

.mox-process-section button.carousel-control-prev:hover i,
.mox-process-section button.carousel-control-next:hover i,
.mox-process-section button.carousel-control-prev:focus i,
.mox-process-section button.carousel-control-next:focus i {
  color: #fff;
}

@media (max-width: 1024px) {
  .mox-slider-section {
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .mox-slider-container {
    height: auto;
  }

  .mox-slide {
    flex-direction: column;
    height: auto;
  }

  .mox-slide-image {
    flex: none;
    padding: 0;
    height: 320px;
  }

  .mox-slide-content {
    flex: none;
    padding: 26px 28px;
  }

  .mox-slide-content h2 {
    font-size: 2rem;
  }

  .mox-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(80px, 1fr));
    gap: 10px;
    margin: 20px 0;
  }

  .mox-feature-card {
    display: flex;
    flex-direction: column;
    padding: 10px 8px;
    gap: 8px;
    border-radius: 24px;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border: 1px solid rgba(55, 142, 48, 0.15);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    transform: scale(0.9);
    transition: all 0.3s ease-in-out;
  }

  .mox-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    width: auto;
    flex-shrink: 0;
  }

  .mox-feature-card span {
    display: block;
    font-size: 0.75rem;
    text-align: center;
    line-height: 1.2;
    flex-shrink: 0;
  }

  .mox-feature-icon i {
    color: #378E30;
    font-size: 2rem;
    display: block;
    line-height: 1;
    margin: auto;
  }

  .mox-dots {
    bottom: 20px;
    width: 100%;
    left: auto;
  }

  .mox-arrow {
    padding: 12px 22px;
    min-height: 60px;
    min-width: 68px;
  }

  .mox-process-bar {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 24px;
  }

  .mox-process-nav {
    justify-content: space-between;
  }

  .mox-process-section .mox-process-carousel {
    height: 50vh;
    min-height: 320px;
  }
}

/* Tablet: 2 columnas - border-radius espejado en hover */
@media (min-width: 769px) and (max-width: 1024px) {
  .mox-feature-card {
    display: flex;
    flex-direction: column;
    padding: 10px 8px;
    gap: 8px;
    border-radius: 48px;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border: 1px solid rgba(55, 142, 48, 0.15);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    transform: scale(0.9);
    transition: all 0.3s ease-in-out;
  }

  .mox-feature-card:hover {
    border-color: #378E30;
    transform: scale(1);
    box-shadow: 0px 40px 40px rgba(0, 0, 0, 0.1);
  }

  .mox-feature-card:nth-child(2n+1):hover {
    border-radius: 5px 48px;
  }

  .mox-feature-card:nth-child(2n):hover {
    border-radius: 48px 5px;
  }

  .mox-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
    padding: 0;
    margin: 0;
    width: auto;
    height: auto;
  }

  .mox-feature-card span {
    display: block;
    font-size: 0.75rem;
    text-align: center;
    line-height: 1.2;
  }

  .mox-feature-icon i {
    color: #378E30;
    font-size: 2rem;
    display: block;
    line-height: 1;
    margin: 0;
  }

  .mox-controls-main {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
  }

  .mox-dots {
    position: relative;
    bottom: auto;
    width: auto;
    left: auto;
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    z-index: 10;
    grid-column: 1;
    order: unset;
    align-items: center;
  }

  .mox-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border: none;
  }

  .mox-dot:hover {
    background-color: #aaa;
    transform: scale(1.15);
  }

  .mox-dot.active {
    background-color: #378E30;
    width: 9px;
    border-radius: 2px;
    box-shadow: 0 4px 12px rgba(55, 142, 48, 0.3);
    transform: scale(1.1);
  }

  .mox-cem-logo {
    margin: 0;
    align-self: center;
    grid-column: 2;
    order: unset;
  }

  .mox-inline-arrows {
    justify-self: end;
    grid-column: 2;
  }
}

@media (max-width: 768px) {
  .mox-slider-section {
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .mox-slider-container {
    height: auto;
  }

  .mox-slide {
    flex-direction: column;
    height: auto;
  }

  .mox-slide-image {
    height: 300px;
    padding: 0;
    margin: 0;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .mox-slide-image .mox-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .mox-slide.active .mox-img {
    animation: moxSlowZoomMobile 25s ease-in-out infinite;
  }

  .mox-slide.slide-enter .mox-slide-image {
    animation: none;
  }

  @keyframes moxSlowZoomMobile {
    0% {
      transform: scale(1.15);
    }
    50% {
      transform: scale(1.28);
    }
    100% {
      transform: scale(1.15);
    }
  }

  .mox-slide-content {
    padding: 16px 20px;
    background-position: center, center top;
    display: flex;
    flex-direction: column;
  }

  .mox-slide-content h2,
  .mox-slide-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 12px;
  }

  .mox-subtitle {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }

  .mox-features-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, minmax(90px, 1fr));
    gap: 10px;
    margin: 12px 0;
    height: auto;
  }

  .mox-feature-card {
    display: flex;
    flex-direction: column;
    padding: 10px 8px;
    gap: 6px;
    border-radius: 24px;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border: 1px solid rgba(55, 142, 48, 0.18);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    transform: scale(0.9);
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    height: auto;
  }

  .mox-feature-card:nth-child(2n):hover {
    border-radius: 48px 5px;
  }

  .mox-feature-card:nth-child(2n+1):hover {
    border-radius: 5px 48px;
  }

  .mox-feature-card:hover {
    transform: scale(1);
  }

  .mox-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
    border-radius: 0;
    width: auto;
    height: auto;
    flex-shrink: 0;
  }

  .mox-feature-card span {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: #378E30;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
  }

  .mox-feature-icon i {
    color: #378E30;
    font-size: 1.8rem;
    display: block;
    line-height: 1;
    margin: auto;
  }

  .mox-controls-row {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
  }

  .mox-controls-main {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px;
  }

  .mox-dots {
    position: relative;
    bottom: auto;
    width: auto;
    left: auto;
    display: flex;
    justify-content: flex-start;
    gap: 6px;
    z-index: 10;
    grid-column: 1;
    align-items: center;
  }

  .mox-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border: none;
  }

  .mox-dot:hover {
    background-color: #aaa;
    transform: scale(1.15);
  }

  .mox-dot.active {
    background-color: #378E30;
    width: 9px;
    border-radius: 2px;
    box-shadow: 0 4px 12px rgba(55, 142, 48, 0.3);
    transform: scale(1.1);
  }

  .mox-controls-main .mox-inline-arrows .mox-btn {
    justify-self: stretch;
    padding: 7px 14px;
    font-size: 0.85rem;
    min-height: 38px;
    white-space: nowrap;
  }

  .mox-cem-logo {
    width: 100%;
    height: auto;
    transform: scale(1.1);
    transform-origin: left center;
    margin: 0;
    grid-column: 1 / -1;
    order: 2;
  }

  .mox-inline-arrows {
    grid-column: 2;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .mox-inline-arrows .mox-btn {
    width: auto;
    padding: 7px 14px;
    font-size: 0.85rem;
    min-height: 38px;
    white-space: nowrap;
  }

  .mox-arrow {
    padding: 7px 12px;
    font-size: 0.95rem;
    min-height: 38px;
    min-width: 44px;
  }

  .mox-process-bar {
    padding: 16px 20px;
    gap: 12px;
  }

  .mox-process-caption {
    font-size: 0.92rem;
    line-height: 1.4;
  }

  .mox-process-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .mox-process-section .carousel-indicators {
    gap: 8px;
    flex-wrap: wrap;
  }

  .mox-process-section .carousel-indicators li {
    width: 12px;
    height: 12px;
  }

  .mox-process-section .carousel-indicators li.active {
    width: 28px;
  }

  .mox-process-section .mox-process-carousel {
    height: 44vh;
    min-height: 260px;
  }
}

/* Mobile: make the section grow so `.mox-btn` defines the lower limit */
@media (max-width: 767px) {
  .mox-slider-section {
    height: auto !important;
    min-height: auto !important;
    align-items: stretch;
    padding-bottom: 18px;
  }

  .mox-slide {
    flex-direction: column;
  }

  .mox-slide-image,
  .mox-slide-content {
    width: 100%;
    height: auto;
  }

  .mox-slide-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-bottom: 12px;
  }

  /* Push controls to the bottom of the content column and allow the section to expand to show them */
  .mox-controls-row {
    margin-top: 12px;
    align-items: center;
  }

  .mox-controls-row .mox-btn,
  .mox-btn {
    margin-top: auto;
  }
}

/* Make features grid responsive to available height so cards adapt and controls remain visible */
@media (max-width: 1024px) {
  .mox-features-grid {
    grid-auto-rows: 1fr;
    align-content: stretch;
    align-items: stretch;
    height: auto;
    gap: 10px;
  }

  .mox-feature-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 8px;
    box-sizing: border-box;
  }

  .mox-slide-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 0;
  }
}

@media (max-width: 767px) {
  .mox-features-grid {
    grid-auto-rows: minmax(80px, 1fr);
    align-content: start;
    gap: 8px;
    max-height: calc(100vh - 380px);
    overflow: visible;
  }

  .mox-feature-card {
    height: 100%;
  }

  /* ensure controls stay pinned to bottom of content column */
  .mox-controls-row {
    margin-top: 12px;
  }

  .mox-controls-row .mox-btn {
    margin-top: auto;
  }
}

/* Screens smaller than 1000px: make feature icons smaller */
@media (max-width: 1200px) {
  .mox-feature-icon i {
    font-size: 1.7rem; /* smaller than tablet */
    margin: auto;
    line-height: 1;
  }

  .mox-feature-icon {
    width: auto;
    padding: 0;
  }
}
