.price-calculator {
  background:
    radial-gradient(circle at 92% 6%, rgba(216, 180, 97, .22), transparent 26rem),
    linear-gradient(135deg, #31103f, #4e1f60 58%, #351242);
  border-radius: 2px;
  box-shadow: 0 22px 60px rgba(46, 15, 58, .15);
  color: #fff;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 3.4rem);
}

.estimator-intro {
  align-items: end;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 2.2rem;
}

.estimator-intro h2 {
  font: 400 clamp(2rem, 4vw, 3rem)/1.04 var(--serif);
  letter-spacing: -.035em;
  margin: .55rem 0 0;
}

.estimator-intro > p:last-child {
  color: #e9ddec;
  font-size: .92rem;
  line-height: 1.55;
  margin: 0;
  max-width: 340px;
}

.estimator-steps {
  display: grid;
  gap: 1.15rem;
}

.estimator-step {
  border-top: 1px solid rgba(255, 255, 255, .2);
  padding-top: 1.15rem;
}

.estimator-step-heading {
  align-items: baseline;
  display: flex;
  gap: .7rem;
  margin-bottom: .85rem;
}

.estimator-step-number {
  align-items: center;
  background: var(--gold);
  border-radius: 50%;
  color: #3b1248;
  display: inline-flex;
  font-size: .72rem;
  font-weight: 700;
  height: 1.45rem;
  justify-content: center;
  width: 1.45rem;
}

.estimator-step h3 {
  font: 400 1.3rem/1.1 var(--serif);
  margin: 0;
}

.estimator-step-hint {
  color: #e9ddec;
  font-size: .82rem;
  margin: 0 0 .85rem;
}

.estimator-choices {
  display: grid;
  gap: .7rem;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
}

.estimator-choices--animal {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 480px;
}

.estimator-choice {
  appearance: none;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .24);
  color: #fff;
  cursor: pointer;
  display: grid;
  gap: .18rem;
  min-height: 5.3rem;
  padding: .85rem .9rem;
  text-align: left;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.estimator-choice:hover {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(240, 207, 138, .75);
  transform: translateY(-2px);
}

.estimator-choice:focus-visible {
  outline: 3px solid #f0cf8a;
  outline-offset: 3px;
}

.estimator-choice.is-selected {
  background: #fffdf9;
  border-color: #fffdf9;
  box-shadow: 0 10px 24px rgba(17, 3, 25, .23);
  color: var(--ink);
}

.estimator-choice-icon {
  font-size: 1.3rem;
  line-height: 1;
}

.estimator-choice strong {
  font-size: .92rem;
  line-height: 1.2;
}

.estimator-choice small {
  color: inherit;
  font-size: .73rem;
  line-height: 1.35;
  opacity: .78;
}

.estimator-choice-price {
  color: #f1d192;
  font-size: .74rem;
  font-weight: 700;
  margin-top: auto;
}

.estimator-choice.is-selected .estimator-choice-price {
  color: var(--plum);
}

.estimator-result-card {
  align-items: center;
  background: #fffdf9;
  color: var(--ink);
  display: grid;
  gap: 1.1rem 1.75rem;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 2rem;
  padding: clamp(1.15rem, 3vw, 1.5rem);
}

.estimator-result-eyebrow {
  color: var(--gold-deep);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  margin: 0 0 .35rem;
  text-transform: uppercase;
}

.estimator-result-card h3 {
  font: 400 clamp(2.5rem, 5vw, 4rem)/.96 var(--serif);
  letter-spacing: -.04em;
  margin: 0;
}

.estimator-result-card h3 em {
  color: var(--muted);
  font: 500 1rem/1 var(--sans);
  letter-spacing: 0;
}

.estimator-result-card small {
  color: var(--muted);
  display: block;
  font-size: .78rem;
  line-height: 1.48;
  margin-top: .65rem;
  max-width: 640px;
}

.estimator-result-actions {
  align-items: end;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.estimator-result-actions .button {
  background: var(--plum);
  border: 1px solid var(--plum);
  color: #fff;
  font-size: .84rem;
  padding: .78rem 1rem;
  text-decoration: none;
  white-space: nowrap;
}

.estimator-result-actions .button:hover {
  background: var(--plum-deep);
}

.estimator-result-caption {
  color: var(--muted);
  font-size: .72rem;
  text-align: right;
}

.estimator-step.is-consultation .estimator-choices {
  opacity: .55;
  pointer-events: none;
}

@media (max-width: 720px) {
  .estimator-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: .85rem;
  }

  .estimator-intro > p:last-child {
    max-width: 38rem;
  }

  .estimator-choices {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .estimator-result-card {
    grid-template-columns: 1fr;
  }

  .estimator-result-actions {
    align-items: stretch;
  }

  .estimator-result-actions .button,
  .estimator-result-caption {
    text-align: center;
  }
}

@media (max-width: 430px) {
  .estimator-choices,
  .estimator-choices--animal {
    grid-template-columns: 1fr;
  }

  .estimator-choice {
    min-height: 4.6rem;
  }
}
