/* [project]/src/styles/CompareQualitySection.css [client] (css) */
.compare-quality-section {
  text-align: center;
  font-family: var(--font-body);
  background-color: #000;
  padding: 50px 20px;
}

.compare-title {
  color: #fff;
  max-width: 1400px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  font-family: var(--font-heading);
  text-align: center;
  margin: 0 auto 30px;
}

.compare-title .text-primary, .compare-title-sub {
  color: #54b248;
}

.compare-subtitle {
  color: #fff;
  max-width: 1000px;
  margin: 0 auto 35px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}

.calculator-card {
  background-color: #eaf6e5;
  border-radius: 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px;
  box-shadow: 0 10px 30px #0003;
}

.calc-form-card {
  background-color: #0d0d0d;
  border-radius: 25px;
  margin-bottom: 25px;
  padding: 30px 40px;
}

.calc-header-text {
  color: #54b248;
  text-align: left;
  margin-bottom: 15px;
  padding-left: 5px;
  font-size: 28px;
  font-weight: 700;
}

.calc-form {
  align-items: center;
  gap: 15px;
  display: flex;
}

.custom-dropdown-container {
  z-index: 50;
  flex: 1;
  position: relative;
}

.custom-dropdown-trigger {
  color: #aaa;
  cursor: pointer;
  box-sizing: border-box;
  background: #fff;
  border: 1.5px solid #54b248;
  border-radius: 50px;
  justify-content: space-between;
  align-items: center;
  height: 44px;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
}

.custom-dropdown-trigger > span, .custom-dropdown-trigger > svg {
  pointer-events: none;
}

.custom-dropdown-trigger.has-value {
  color: #000;
}

.dropdown-chevron {
  color: #54b248;
  transition: transform .3s;
}

.dropdown-chevron.rotate {
  transform: rotate(180deg);
}

.calc-input-wrapper {
  flex: 1;
  align-items: center;
  display: flex;
  position: relative;
}

.calc-input {
  color: #000;
  text-align: left;
  box-sizing: border-box;
  background: #fff;
  border: 1.5px solid #54b248;
  border-radius: 50px;
  outline: none;
  width: 100%;
  height: 44px;
  padding: 0 25px;
  font-size: 16px;
  font-weight: 600;
}

.input-chevron {
  color: #54b248;
  pointer-events: none;
  position: absolute;
  right: 15px;
}

.calc-input::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}

.calc-input::-webkit-outer-spin-button {
  appearance: none;
  margin: 0;
}

.calc-input {
  -moz-appearance: textfield;
  appearance: none;
}

.calc-input::placeholder {
  color: #aaa;
}

.calc-submit {
  color: #fff;
  cursor: pointer;
  box-sizing: border-box;
  background-color: #54b248;
  border: none;
  border-radius: 50px;
  flex: none;
  min-width: 150px;
  height: 44px;
  padding: 0 30px;
  font-size: 22px;
  font-weight: 700;
  transition: all .2s;
}

.calc-submit:hover {
  background-color: #46a13b;
  transform: translateY(-1px);
}

.comparison-grid {
  gap: 20px;
  margin-bottom: 20px;
  display: flex;
}

.comp-box {
  background-color: #000;
  border-radius: 25px;
  flex: 1;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.comp-box.featured {
  position: relative;
  overflow: hidden;
}

.css-ribbon {
  z-index: 100;
  pointer-events: none;
  background-color: #54b248;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 44px;
  display: flex;
  position: absolute;
  top: 5px;
  right: -50px;
  transform: rotate(45deg);
  box-shadow: 0 4px 12px #0000004d;
}

.css-ribbon span {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
}

.comp-box-title {
  color: #54b248;
  text-align: left;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  margin: 15px 0 25px 5px;
  font-size: 28px;
  font-weight: 700;
  display: flex;
}

.comp-table {
  background-color: #fff;
  border-radius: 20px;
  padding: 25px;
}

.comp-row-header {
  justify-content: space-between;
  margin-bottom: 5px;
  padding-bottom: 20px;
  display: flex;
}

.roi-matrix-header {
  color: #54b248;
  font-size: 24px;
  font-weight: 700;
}

.comp-row {
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  display: flex;
}

.comp-label {
  color: #000;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  display: flex;
}

.comp-value {
  color: #000;
  text-align: right;
  font-size: 16px;
  font-weight: 700;
}

.best-choice-badge {
  z-index: 10;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
  width: 130px;
  height: auto;
  position: absolute;
  top: 0;
  right: 0;
}

.efficiency-banner {
  color: #fff;
  background-color: #54b248;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
  padding: 15px;
  font-size: 32px;
  font-weight: 700;
  display: flex;
}

.custom-dropdown-menu {
  z-index: 1000;
  transform-origin: top;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  flex-direction: column;
  width: 100%;
  margin-top: 5px;
  animation: .3s ease-out dropdownFadeIn;
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  overflow: hidden;
  box-shadow: 0 10px 25px #0000001a;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px)scaleY(.95);
  }

  to {
    opacity: 1;
    transform: translateY(0)scaleY(1);
  }
}

.custom-dropdown-option {
  color: #000;
  text-align: left;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  transition: all .2s;
}

.custom-dropdown-option:last-child {
  border-bottom: none;
}

.custom-dropdown-option:hover {
  color: #54b248;
  background: #eaf6e5;
}

@media (max-width: 900px) {
  .calc-form {
    flex-direction: column;
    align-items: stretch;
  }

  .calc-submit {
    height: auto;
    padding: 15px;
  }

  .comparison-grid {
    flex-direction: column;
    gap: 15px;
  }

  .efficiency-banner {
    padding: 15px;
    font-size: 24px;
  }

  .compare-title {
    margin-bottom: 20px;
  }

  .compare-subtitle {
    margin-bottom: 50px;
  }

  .calculator-card {
    border-radius: 20px;
    padding: 15px;
  }

  .best-choice-badge {
    width: 90px;
  }

  .comp-box-title {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .efficiency-banner {
    padding: 12px;
    font-size: 18px;
  }

  .best-choice-badge {
    width: 70px;
  }

  .roi-matrix-header, .comp-label, .comp-value {
    font-size: 14px;
  }

  .comp-table {
    padding: 15px;
  }

  .comp-label {
    gap: 8px;
  }

  .compare-subtitle {
    margin-bottom: 35px;
    padding: 0 10px;
    font-size: 14px;
  }
}

/*# sourceMappingURL=src_styles_CompareQualitySection_css_65f1660e._.single.css.map*/