#nv-assistant-root,
#nv-assistant-root * {
  box-sizing: border-box;
  font-family: Inter, Arial, sans-serif;
}

#nv-chat-toggle {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.16);
  background: radial-gradient(circle at 30% 20%, #d9b76a, #8a672b 42%, #10141d 100%);
  color: #fff;
  z-index: 99998;
  cursor: pointer;
  box-shadow: 0 18px 45px rgba(0,0,0,.45);
}

#nv-chat-toggle span {
  font-size: 25px;
  font-weight: 800;
}

#nv-chat-panel {
  position: fixed;
  right: 24px;
  bottom: 100px;
  width: 520px;
  max-width: calc(100vw - 32px);
  height: 680px;
  max-height: calc(100vh - 130px);
  background: #090d14;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  overflow: hidden;
  z-index: 99999;
  box-shadow: 0 28px 80px rgba(0,0,0,.62);
}

.nv-hidden {
  display: none !important;
}

.nv-wizard-header {
  height: 86px;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
}

.nv-wizard-header strong {
  display: block;
  color: #fff;
  font-size: 17px;
}

.nv-wizard-header small {
  display: block;
  color: rgba(255,255,255,.58);
  font-size: 12px;
  margin-top: 6px;
  line-height: 1.4;
}

#nv-chat-close {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.12);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
}

.nv-progress {
  padding: 14px 24px 0;
}

.nv-progress span {
  display: block;
  color: rgba(255,255,255,.55);
  font-size: 12px;
  margin-bottom: 8px;
}

.nv-progress div {
  height: 5px;
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  overflow: hidden;
}

.nv-progress i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #d9b76a, #a77c33);
  border-radius: 999px;
}

.nv-slide {
  height: calc(100% - 125px);
  overflow-y: auto;
  padding: 24px;
}

.nv-slide h2 {
  margin: 0;
  color: #fff;
  font-size: 24px;
  line-height: 1.25;
}

.nv-muted {
  color: rgba(255,255,255,.58);
  font-size: 14px;
  line-height: 1.6;
  margin: 10px 0 24px;
}

.nv-card-grid {
  display: grid;
  gap: 12px;
}

.nv-card {
  width: 100%;
  text-align: left;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.055);
  color: #fff;
  cursor: pointer;
  transition: .2s ease;
}

.nv-card:hover {
  border-color: rgba(217,183,106,.6);
  background: rgba(217,183,106,.11);
}

.nv-card b {
  display: block;
  font-size: 15px;
  margin-bottom: 7px;
}

.nv-card span {
  display: block;
  color: rgba(255,255,255,.58);
  font-size: 13px;
  line-height: 1.45;
}

.nv-field {
  display: block;
  margin-bottom: 22px;
}

.nv-field > span {
  display: block;
  color: rgba(255,255,255,.85);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}

.nv-field input,
.nv-field textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.07);
  color: #fff;
  padding: 13px 14px;
  outline: none;
  font-size: 14px;
}

.nv-field textarea {
  min-height: 110px;
  resize: vertical;
}

.nv-field input::placeholder,
.nv-field textarea::placeholder {
  color: rgba(255,255,255,.35);
}

.nv-option-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.nv-option {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.9);
  padding: 10px 13px;
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
}

.nv-option.is-selected {
  background: linear-gradient(135deg, #e0bf75, #a87c32);
  color: #111;
  border-color: transparent;
}

.nv-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 9px;
}

.nv-tags em {
  font-style: normal;
  background: rgba(217,183,106,.16);
  border: 1px solid rgba(217,183,106,.35);
  color: #fff;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 13px;
}

.nv-tags button {
  margin-left: 6px;
  background: transparent;
  color: rgba(255,255,255,.7);
  border: 0;
  cursor: pointer;
}

.nv-tag-input {
  display: flex;
  gap: 8px;
}

.nv-tag-input input {
  flex: 1;
}

.nv-tag-input button,
.nv-primary {
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #e0bf75, #a87c32);
  color: #111;
  padding: 12px 16px;
  font-weight: 800;
  cursor: pointer;
}

.nv-secondary {
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: #fff;
  padding: 12px 16px;
  cursor: pointer;
}

.nv-footer-actions {
  position: sticky;
  bottom: -24px;
  margin: 28px -24px -24px;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  background: rgba(9,13,20,.96);
  border-top: 1px solid rgba(255,255,255,.08);
}

.nv-review {
  display: grid;
  gap: 10px;
}

.nv-review div {
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.nv-review span {
  display: block;
  color: rgba(255,255,255,.48);
  font-size: 12px;
  margin-bottom: 5px;
}

.nv-review b {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  white-space: pre-wrap;
}

.nv-success {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nv-success p {
  color: rgba(255,255,255,.65);
  line-height: 1.6;
}

@media (max-width: 640px) {
  #nv-chat-panel {
    right: 12px;
    left: 12px;
    bottom: 88px;
    width: auto;
    height: 75vh;
    max-height: none;
    border-radius: 22px;
  }

  #nv-chat-toggle {
    right: 18px;
    bottom: 18px;
  }

  .nv-slide h2 {
    font-size: 21px;
  }

  .nv-footer-actions {
    bottom: -24px;
  }
}

.nv-suggestions {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nv-suggestion {
  border: 1px solid rgba(217,183,106,.35);
  background: rgba(217,183,106,.12);
  color: rgba(255,255,255,.92);
  padding: 8px 11px;
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
}

.nv-suggestion:hover {
  background: rgba(217,183,106,.22);
  border-color: rgba(217,183,106,.65);
}

.nv-suggestion-muted {
  color: rgba(255,255,255,.48);
  font-size: 13px;
  padding: 4px 0;
}