.inquiry-form .rfq-optional-details {
  border: 1px solid #cfc9be;
  border-radius: 7px;
  background: #fff;
}

.rfq-privacy-note {
  max-width: 700px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.rfq-response-contract {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.rfq-response-contract article {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-left: 3px solid var(--teal);
  background: var(--paper);
}

.rfq-response-contract strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
}

.rfq-response-contract span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.inquiry-form .rfq-completion {
  display: grid;
  gap: 10px;
  padding: 16px 18px;
  border: 1px solid #cfc9be;
  border-left: 4px solid var(--teal);
  border-radius: 7px;
  background: #fff;
}

.inquiry-form .rfq-completion[data-ready="true"] {
  border-color: var(--teal);
  background: #f2f9f7;
}

.rfq-completion-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.rfq-completion-head > div {
  display: grid;
  gap: 3px;
}

.rfq-completion-head strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
}

.rfq-completion-head small,
.rfq-completion p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.rfq-completion output {
  flex: 0 0 auto;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

.rfq-completion progress {
  width: 100%;
  height: 8px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: #e6e1d8;
  color: var(--teal);
}

.rfq-completion progress::-webkit-progress-bar {
  border-radius: 999px;
  background: #e6e1d8;
}

.rfq-completion progress::-webkit-progress-value {
  border-radius: 999px;
  background: var(--teal);
}

.rfq-completion progress::-moz-progress-bar {
  border-radius: 999px;
  background: var(--teal);
}

.inquiry-form .rfq-step-heading {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-top: 4px;
}

.inquiry-form .rfq-step-heading > span {
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.inquiry-form .rfq-step-heading div {
  display: grid;
  gap: 2px;
}

.inquiry-form .rfq-step-heading strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
}

.inquiry-form .rfq-step-heading small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.inquiry-form .rfq-optional-details summary {
  display: grid;
  gap: 3px;
  position: relative;
  padding: 16px 48px 16px 18px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}

.inquiry-form .rfq-optional-details summary::-webkit-details-marker {
  display: none;
}

.inquiry-form .rfq-optional-details summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  translate: 0 -50%;
  color: var(--teal);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.inquiry-form .rfq-optional-details[open] summary::after {
  content: "−";
}

.inquiry-form .rfq-optional-details summary span {
  font-size: 14px;
  font-weight: 900;
  line-height: 1.4;
}

.inquiry-form .rfq-optional-details summary small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.inquiry-form .rfq-optional-details[open] summary {
  border-bottom: 1px solid var(--line);
}

.inquiry-form .rfq-optional-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 18px;
}

@media (max-width: 760px) {
  .rfq-completion-head {
    display: grid;
    gap: 8px;
  }

  .inquiry-form .rfq-optional-grid {
    grid-template-columns: 1fr;
  }
}
