/* Funnel Hero Module Styles */
.funnel-hero-module-wrapper {
  position: relative;
  overflow: hidden;
}

.funnel-hero-module-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 1;
}

.funnel-hero-module-wrapper .container {
  position: relative;
  z-index: 2;

}


.funnel-hero-module-wrapper .hero-content-column {
  z-index: 3;
}

.funnel-hero-module-wrapper .offer-text-pill {
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 500;
  z-index: 4;
}

.funnel-hero-module-wrapper .funnel-container {
  padding: 24px;
    border-radius: 16px;
}

.funnel-hero-module-wrapper .funnel-steps-wrapper .funnel-step-group {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}

.funnel-hero-module-wrapper .funnel-steps-wrapper .funnel-step-group .funnel-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.funnel-hero-module-wrapper .funnel-steps-wrapper .funnel-step-group .funnel-options .funnel-option {
  width: 176px;
  border: 1px solid #D4D4D8;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  cursor: pointer;
  font-size: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

.funnel-hero-module-wrapper .funnel-steps-wrapper .funnel-step-group .funnel-options .funnel-option img {
  max-width: 24px;
  max-height: 24px;
  flex-shrink: 0;
}

.funnel-hero-module-wrapper .funnel-steps-wrapper .funnel-step-group .funnel-options .funnel-option .funnel-option-label {
  flex: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
  line-height: 1.3;
}

.funnel-hero-module-wrapper .funnel-steps-wrapper .funnel-step-group .funnel-options .funnel-option.selected {
  border: 2px solid #2968fe;
  color: #2968fe;
  padding: 11px;
}

/* .funnel-hero-module-wrapper .funnel-steps-wrapper .funnel-step-group .funnel-options .funnel-option.selected img {
  filter: invert(1) grayscale(1) brightness(2) contrast(2);
} */

.funnel-hero-module-wrapper .countdown-wrapper.white {
  color: #fff !important;
}

.funnel-hero-module-wrapper .countdown-wrapper.white svg {
  fill: #fff !important;
}

.funnel-hero-module-wrapper .countdown-wrapper.black {
  color: #000 !important;
}

.funnel-hero-module-wrapper .countdown-wrapper.black svg {
  fill: #000 !important;
}

.funnel-hero-module-wrapper .countdown-wrapper.dark-blue-bg {
  color: #000e2e !important;
}

.funnel-hero-module-wrapper .countdown-wrapper.dark-blue-bg svg {
  fill: #000e2e !important;
}

.funnel-hero-module-wrapper .countdown-wrapper.dark-blue-bg .box {
  color: #fff !important;
  background: #000e2e;
  border: none !important;
}

.funnel-hero-module-wrapper .countdown-wrapper.dark-blue-bg .box * {
  color: #fff !important;
}

.funnel-hero-module-wrapper .countdown-wrapper .countdown-image-text {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.funnel-hero-module-wrapper .countdown-wrapper .countdown .box {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6px;
  border: 1px solid;
  border-radius: 16px;
  width: 64px;
  height: 64px;
  margin-right: 4px;
  font-size: 0.75em;
  margin-top: 8px;
}

.funnel-hero-module-wrapper .countdown-wrapper .countdown .number {
  font-size: 1.25rem;
  font-weight: 700;
}

.funnel-hero-module-wrapper .countdown-wrapper .countdown p {
  padding: 0;
  margin: 0;
  font-size: inherit;
  letter-spacing: -0.03em;
}

.funnel-hero-module-wrapper .icon-text-icon-holder {
  max-width: 18px;
  max-height: 18px;
  margin-right: 8px;
  margin-top: 4px;
  display: flex;
  align-items: center;
}

.funnel-hero-module-wrapper .icon-text-icon-holder svg {
  fill: #2968fe;
}

/* Mobile Responsive Styles */
@media (max-width: 991.98px) {
  .funnel-hero-module-wrapper {
    min-height: auto;
    padding: 2rem 0;
  }

  .funnel-hero-module-wrapper .funnel-container {
    max-height: none;
    margin-top: 2rem;
  }

  .funnel-hero-module-wrapper .funnel-steps-wrapper .funnel-step-group .funnel-options .funnel-option {
    width: 100%;
    max-width: 300px;
    min-width: 150px;
  }
}