/* ============================================================
   RFQ FORM PAGE — Brenom Systems
   ============================================================ */

.rfq-page {
  padding: 140px 0 96px;
}

.rfq-page--hero {
  position: relative;
  overflow: hidden;
}

.rfq-page__wrap--card {
  position: relative;
  z-index: 2;
  background: var(--white);
  padding: 48px 40px;
}

.rfq-page__wrap {
  max-width: 760px;
  padding: 0 40px;
  margin: 0 auto;
}

/* ---- Header ---- */
.rfq-page__label {
  font-size: 18px;
  font-weight: 500;
  color: var(--orange);
  display: block;
  margin-bottom: 16px;
}

.rfq-page__heading {
  font-family: var(--font-heading);
  font-size: 96px;
  color: var(--dark);
  line-height: 0.9;
  margin-bottom: 16px;
}

.rfq-page__sub {
  font-size: 18px;
  font-weight: 500;
  color: var(--gray-mid);
  line-height: 1.6;
  margin-bottom: 48px;
}

/* ---- Form ---- */
.rfq-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.rfq-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.rfq-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rfq-form__field--full {
  grid-column: 1 / -1;
}

.rfq-form__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.rfq-form__label span {
  color: var(--orange);
  margin-left: 2px;
}

.rfq-form__label em {
  font-style: normal;
  font-weight: 500;
  color: var(--gray-mid);
  text-transform: none;
  letter-spacing: 0;
  font-size: 12px;
}

.rfq-form__input,
.rfq-form__textarea {
  width: 100%;
  border: 1px solid var(--gray-light);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.15s;
  appearance: none;
  -webkit-appearance: none;
}

.rfq-form__input::placeholder,
.rfq-form__textarea::placeholder {
  color: #b0b0b0;
}

.rfq-form__input:focus,
.rfq-form__textarea:focus {
  border-color: var(--dark);
}

.rfq-form__textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

/* ---- File upload ---- */
.rfq-form__file-wrap {
  position: relative;
}

.rfq-form__file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.rfq-form__file-label {
  display: flex;
  align-items: center;
  width: 100%;
  border: 1px solid var(--gray-light);
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 500;
  color: #b0b0b0;
  cursor: pointer;
  transition: border-color 0.15s;
  background: var(--white);
}

.rfq-form__file-label:hover {
  border-color: var(--dark);
}

/* ---- Footer note + submit ---- */
.rfq-form__note {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-mid);
  line-height: 1.5;
}

.rfq-form__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rfq-form__discuss {
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}

.rfq-form__discuss:hover {
  color: var(--orange);
}


