/* Growth-path spotlight in the pricing area */
.growth-path-spotlight {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin: 2.25rem 0 2.5rem;
  padding: 2rem 2.25rem;
  overflow: hidden;
  color: #f7f3e9;
  background: #1c211d;
  border: 1px solid rgba(198, 157, 67, 0.62);
  box-shadow: 10px 10px 0 rgba(198, 157, 67, 0.14);
}

.growth-path-spotlight::after {
  content: "";
  position: absolute;
  width: 15rem;
  height: 15rem;
  right: -5rem;
  top: -8rem;
  border: 1px solid rgba(198, 157, 67, 0.3);
  border-radius: 50%;
  pointer-events: none;
}

.growth-path-copy {
  position: relative;
  z-index: 1;
  max-width: 40rem;
}

.growth-path-kicker {
  margin-bottom: 0.65rem;
  color: #d4aa52;
  font-family: "DM Sans", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.growth-path-copy h3 {
  margin: 0 0 0.45rem;
  color: #f7f3e9;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 500;
  line-height: 0.95;
}

.growth-path-copy p {
  max-width: 34rem;
  margin: 0;
  color: rgba(247, 243, 233, 0.76);
  font-family: "DM Sans", sans-serif;
  font-size: 0.94rem;
  line-height: 1.65;
}

.growth-path-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.75rem;
  min-height: 3.25rem;
  padding: 0.85rem 1.25rem;
  color: #1c211d;
  background: #d4aa52;
  border: 1px solid #d4aa52;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.growth-path-button span {
  font-size: 1.15rem;
  line-height: 1;
}

.growth-path-button:hover,
.growth-path-button:focus-visible {
  color: #f7f3e9;
  background: transparent;
  outline: none;
  transform: translateY(-2px);
}

.hq-trigger {
  z-index: 20;
}

@media (max-width: 700px) {
  .growth-path-spotlight {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.35rem;
    margin: 1.75rem 0 2rem;
    padding: 1.5rem;
  }

  .growth-path-button {
    width: 100%;
    justify-content: center;
  }
}

/* Questionnaire modal */
.hq-modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 1rem; opacity: 0; pointer-events: none; transition: opacity 180ms ease; }
.hq-modal.is-open { opacity: 1; pointer-events: auto; }
.hq-backdrop { position: absolute; inset: 0; background: rgba(18, 22, 19, 0.78); }
.hq-panel { position: relative; z-index: 1; width: min(100%, 42rem); max-height: min(92vh, 48rem); overflow-y: auto; padding: clamp(1.5rem, 4vw, 3rem); color: #1c211d; background: #f7f3e9; box-shadow: 12px 12px 0 rgba(198, 157, 67, 0.32); }
.hq-close { position: absolute; top: 0.75rem; right: 1rem; color: #1c211d; cursor: pointer; font-size: 1.8rem; line-height: 1; }
.hq-kicker, .hq-result-label { color: #967126; font-family: "DM Sans", sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; }
.hq-panel h2 { margin: 0.7rem 0; font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 500; line-height: 0.95; }
.hq-intro { max-width: 35rem; margin: 0 0 1.5rem; color: rgba(28, 33, 29, 0.72); line-height: 1.6; }
.hq-progress { height: 0.25rem; margin-bottom: 0.8rem; background: rgba(28, 33, 29, 0.12); }
.hq-progress span { display: block; height: 100%; background: #c69d43; transition: width 180ms ease; }
.hq-step-count { margin-bottom: 1.5rem; color: #967126; font: 700 0.7rem/1 "DM Sans", sans-serif; letter-spacing: 0.12em; }
.hq-form { display: grid; gap: 1rem; }
.hq-question { font-weight: 700; }
.hq-form input:not([type="checkbox"]), .hq-form select, .hq-form textarea { width: 100%; padding: 0.85rem; color: #1c211d; background: #fffdf7; border: 1px solid rgba(28, 33, 29, 0.25); }
.hq-form textarea { min-height: 8rem; resize: vertical; }
.hq-options { display: grid; gap: 0.6rem; }
.hq-options label { display: flex; align-items: center; gap: 0.6rem; padding: 0.7rem; border: 1px solid rgba(28, 33, 29, 0.18); cursor: pointer; }
.hq-options input { accent-color: #c69d43; }
.hq-actions { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1rem; }
.hq-next, .hq-send { padding: 0.85rem 1.1rem; color: #f7f3e9; background: #1c211d; cursor: pointer; font-weight: 700; }
.hq-back { padding: 0.85rem 0; cursor: pointer; text-decoration: underline; }
.hq-status.is-error { color: #9a2f2f; }
.hq-result strong { display: block; margin: 0.8rem 0; color: #967126; font-size: 1.35rem; }
.hq-result p, .hq-success p { max-width: 36rem; margin: 0.8rem 0; line-height: 1.6; }
.hq-small { color: rgba(28, 33, 29, 0.65); font-size: 0.9rem; }
.hq-success a { color: #967126; font-weight: 700; text-decoration: underline; }
@media (max-width: 520px) { .hq-actions { align-items: stretch; flex-direction: column-reverse; } .hq-next, .hq-send { width: 100%; } }
