.pricing-estimator-trigger {
  position: fixed;
  left: clamp(45px, 5.2vw, 84px);
  top: 50%;
  z-index: 9997;
  width: 118px;
  min-height: 126px;
  padding: 16px 12px;
  border: 1px solid rgba(184, 255, 53, 0.38);
  border-radius: 18px;
  background:
    linear-gradient(
      145deg,
      rgba(9, 20, 13, 0.94),
      rgba(4, 11, 7, 0.92)
    );
  color: #eef8f0;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.015),
    0 0 26px rgba(140, 220, 80, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.pricing-estimator-trigger:hover {
  border-color: rgba(184, 255, 53, 0.72);
  background:
    linear-gradient(
      145deg,
      rgba(16, 33, 21, 0.97),
      rgba(6, 16, 10, 0.95)
    );
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.48),
    0 0 28px rgba(184, 255, 53, 0.14);
  transform:
    translateY(-50%)
    translateX(3px);
}

.pricing-estimator-trigger-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0 auto 10px;
  border: 1px solid rgba(184, 255, 53, 0.45);
  border-radius: 10px;
  background: rgba(184, 255, 53, 0.06);
  color: #b8ff35;
  font-size: 23px;
  line-height: 1;
}
.pricing-estimator-trigger-title {
  display: block;
  color: #eff7f0;
}

.pricing-estimator-trigger-subtitle {
  display: block;
  margin-top: 5px;
  color: rgba(202, 219, 207, 0.58);
  font-family: "Roboto Mono", monospace;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .pricing-estimator-trigger {
    left: auto;
    right: 16px;
    top: auto;
    bottom: 18px;
    width: 58px;
    min-height: 58px;
    padding: 0;
    border-radius: 50%;
    transform: none;
  }

  .pricing-estimator-trigger:hover {
    transform: translateY(-2px);
  }

  .pricing-estimator-trigger-icon {
    width: 30px;
    height: 30px;
    margin: 13px auto 0;
  }

  .pricing-estimator-trigger-title,
  .pricing-estimator-trigger-subtitle {
    display: none;
  }
}

.pricing-estimator-overlay {
  position: fixed;
  inset: 0;
  z-index: 99990;
  background: rgba(2, 7, 4, 0);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  pointer-events: none;
  transition:
    background 0.42s ease,
    backdrop-filter 0.42s ease,
    -webkit-backdrop-filter 0.42s ease;
}

.pricing-estimator-overlay.is-open {
  background: rgba(2, 7, 4, 0.48);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  pointer-events: auto;
}

.pricing-estimator-panel {
  position: fixed;
  top: 76px;
  right: 18px;
  bottom: 18px;
  z-index: 99991;
  width: min(430px, calc(100vw - 36px));
  border: 1px solid rgba(178, 232, 192, 0.22);
  border-radius: 22px;
  background:
    linear-gradient(
      145deg,
      rgba(10, 21, 14, 0.97),
      rgba(5, 13, 8, 0.97)
    );
  box-shadow:
    -26px 0 80px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.02),
    0 0 42px rgba(126, 206, 147, 0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  opacity: 0;
  transform: translateX(calc(100% + 40px));
  pointer-events: none;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease;
}

.pricing-estimator-panel.is-open {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.pricing-estimator-panel-inner {
  height: 100%;
  padding: 42px 34px 34px;
  overflow-y: auto;
}

.pricing-estimator-panel-kicker {
  margin-bottom: 10px;
  color: rgba(184, 255, 53, 0.72);
  font-family: "Roboto Mono", monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-estimator-panel-title {
  margin: 0 44px 14px 0;
  color: #eef7f0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.05rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.pricing-estimator-panel-text {
  max-width: 330px;
  margin: 0;
  color: rgba(199, 214, 203, 0.64);
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  line-height: 1.75;
}

.pricing-estimator-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(177, 217, 188, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(226, 239, 229, 0.76);
  font-family: "Manrope", sans-serif;
  font-size: 23px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition:
    border-color 0.22s ease,
    color 0.22s ease,
    background 0.22s ease,
    transform 0.22s ease;
}

.pricing-estimator-close:hover {
  border-color: rgba(184, 255, 53, 0.5);
  background: rgba(184, 255, 53, 0.06);
  color: #b8ff35;
  transform: rotate(4deg);
}

body.pricing-estimator-open {
  overflow: hidden;
}

@media (max-width: 760px) {
  .pricing-estimator-panel {
    top: 74px;
    right: 8px;
    bottom: 8px;
    width: calc(100vw - 16px);
    border-radius: 18px;
  }

  .pricing-estimator-panel-inner {
    padding: 38px 22px 26px;
  }

  .pricing-estimator-overlay.is-open {
    background: rgba(2, 7, 4, 0.58);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
}

.pricing-estimator-progress {
  margin-top: 28px;
}

.pricing-estimator-progress-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  color: rgba(198, 215, 202, 0.54);
  font-family: "Roboto Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-estimator-progress-track {
  position: relative;
  width: 100%;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.pricing-estimator-progress-bar {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: #b8ff35;
  box-shadow: 0 0 12px rgba(184, 255, 53, 0.32);
  transition: width 0.35s ease;
}

.pricing-estimator-content {
  margin-top: 28px;
}

.pricing-estimator-step {
  animation: pricingEstimatorStepIn 0.3s ease;
}

@keyframes pricingEstimatorStepIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

.pricing-estimator-question-number {
  margin-bottom: 8px;
  color: rgba(184, 255, 53, 0.64);
  font-family: "Roboto Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-estimator-question {
  margin: 0 0 8px;
  color: #eef7f0;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}

.pricing-estimator-hint {
  margin: 0 0 18px;
  color: rgba(198, 215, 202, 0.54);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  line-height: 1.6;
}

.pricing-estimator-options {
  display: grid;
  gap: 9px;
}

.pricing-estimator-option {
  position: relative;
  width: 100%;
  padding: 13px 15px;
  border: 1px solid rgba(181, 219, 190, 0.13);
  border-radius: 12px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.025),
      rgba(255, 255, 255, 0.012)
    );
  color: rgba(231, 242, 234, 0.82);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.pricing-estimator-option:hover {
  border-color: rgba(184, 255, 53, 0.38);
  background: rgba(184, 255, 53, 0.045);
  color: #f2f9f3;
  transform: translateX(2px);
}

.pricing-estimator-option.is-selected {
  border-color: rgba(184, 255, 53, 0.64);
  background: rgba(184, 255, 53, 0.085);
  color: #f4faef;
}

.pricing-estimator-option.is-selected::after {
  content: "✓";
  position: absolute;
  top: 50%;
  right: 14px;
  color: #b8ff35;
  font-family: "Roboto Mono", monospace;
  font-size: 12px;
  transform: translateY(-50%);
}

.pricing-estimator-option.is-selected {
  padding-right: 38px;
}

.pricing-estimator-continue {
  width: 100%;
  margin-top: 14px;
  padding: 13px 16px;
  border: 1px solid rgba(184, 255, 53, 0.55);
  border-radius: 12px;
  background: rgba(184, 255, 53, 0.11);
  color: #eaffcf;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.pricing-estimator-continue:hover {
  border-color: rgba(184, 255, 53, 0.82);
  background: rgba(184, 255, 53, 0.16);
  transform: translateY(-1px);
}

.pricing-estimator-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.pricing-estimator-back,
.pricing-estimator-reset {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(201, 217, 205, 0.54);
  font-family: "Roboto Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: color 0.2s ease;
}

.pricing-estimator-back:hover,
.pricing-estimator-reset:hover {
  color: #b8ff35;
}

.pricing-estimator-back:disabled {
  opacity: 0.22;
  cursor: default;
}

.pricing-estimator-tired {
  width: 100%;
  margin-top: 14px;
  padding: 11px 12px;
  border: 1px solid rgba(190, 209, 195, 0.1);
  border-radius: 10px;
  background: transparent;
  color: rgba(194, 210, 199, 0.42);
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  cursor: pointer;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.pricing-estimator-tired:hover {
  border-color: rgba(184, 255, 53, 0.24);
  background: rgba(184, 255, 53, 0.025);
  color: rgba(221, 237, 225, 0.72);
}

.pricing-estimator-summary {
  padding: 18px;
  border: 1px solid rgba(184, 255, 53, 0.18);
  border-radius: 14px;
  background: rgba(184, 255, 53, 0.035);
}

.pricing-estimator-summary-title {
  margin: 0 0 8px;
  color: #eef7f0;
  font-family: "Manrope", sans-serif;
  font-size: 19px;
  font-weight: 600;
}

.pricing-estimator-summary-text {
  margin: 0 0 18px;
  color: rgba(202, 219, 207, 0.6);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  line-height: 1.65;
}

.pricing-estimator-contact-button {
  display: block;
  width: 100%;
  padding: 13px 15px;
  border: 1px solid rgba(184, 255, 53, 0.62);
  border-radius: 11px;
  background: rgba(184, 255, 53, 0.12);
  color: #efffd9;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

@media (max-width: 760px) {
  .pricing-estimator-question {
    font-size: 17px;
  }

  .pricing-estimator-option {
    padding: 12px 13px;
  }

  .pricing-estimator-content {
    margin-top: 22px;
  }
}

.pricing-estimator-cost-breakdown {
  margin: 18px 0 20px;
  padding: 15px;
  border: 1px solid rgba(184, 255, 53, 0.13);
  border-radius: 13px;
  background:
    linear-gradient(
      145deg,
      rgba(184, 255, 53, 0.028),
      rgba(255, 255, 255, 0.012)
    );
}

.pricing-estimator-cost-heading {
  margin-bottom: 12px;
  color: rgba(184, 255, 53, 0.72);
  font-family: "Roboto Mono", monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.pricing-estimator-cost-row {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    auto;
  gap: 14px;
  align-items: start;
  padding: 7px 0;
  border-bottom:
    1px solid rgba(255, 255, 255, 0.04);
}

.pricing-estimator-cost-row:last-child {
  border-bottom: 0;
}

.pricing-estimator-cost-label {
  color: rgba(207, 222, 211, 0.62);
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  line-height: 1.45;
}

.pricing-estimator-cost-value {
  color: rgba(236, 246, 238, 0.82);
  font-family: "Roboto Mono", monospace;
  font-size: 9px;
  line-height: 1.5;
  text-align: right;
  white-space: nowrap;
}

.pricing-estimator-cost-row-urgency {
  margin-top: 4px;
  padding: 9px 0;
}

.pricing-estimator-cost-row-urgency
.pricing-estimator-cost-label,
.pricing-estimator-cost-row-urgency
.pricing-estimator-cost-value {
  color: #b8ff35;
}

.pricing-estimator-cost-separator {
  height: 1px;
  margin: 10px 0 5px;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(184, 255, 53, 0.22),
      transparent
    );
}

.pricing-estimator-cost-total {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    auto;
  gap: 14px;
  align-items: center;
  margin-top: 11px;
  padding-top: 12px;
  border-top:
    1px solid rgba(184, 255, 53, 0.2);
}

.pricing-estimator-cost-total span {
  color: rgba(217, 232, 220, 0.7);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 600;
}

.pricing-estimator-cost-total strong {
  color: #b8ff35;
  font-family: "Roboto Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.pricing-estimator-summary-disclaimer {
  margin-top: 18px;
}

@media (max-width: 760px) {
  .pricing-estimator-cost-breakdown {
    padding: 13px;
  }

  .pricing-estimator-cost-row {
    gap: 10px;
  }

  .pricing-estimator-cost-label {
    font-size: 9px;
  }

  .pricing-estimator-cost-value {
    font-size: 8px;
  }
}
