.quote-form-card {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(242,138,34,.14), transparent 34%),
    rgba(255,255,255,.055);
  box-shadow: 0 20px 50px rgba(0,0,0,.16);
}

.quote-form-heading {
  max-width: 720px;
  margin-bottom: 24px;
}

.quote-form-heading > span {
  display: inline-block;
  margin-bottom: 8px;
  color: #ffad5c;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
}

.quote-form-heading h3 {
  margin: 0;
  color: #fff;
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.quote-form-heading p {
  margin: 10px 0 0;
  color: rgba(255,255,255,.68) !important;
  font-size: 14px;
}

.quote-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.quote-form label {
  display: grid;
  gap: 7px;
}

.quote-form label > span {
  color: rgba(255,255,255,.78);
  font-size: 12px;
  font-weight: 700;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  outline: none;
  border-radius: 13px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font: inherit;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.quote-form input,
.quote-form select {
  min-height: 52px;
  padding: 0 14px;
}

.quote-form textarea {
  min-height: 150px;
  padding: 14px;
  resize: vertical;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(255,255,255,.42);
}

.quote-form select {
  color-scheme: dark;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: rgba(242,138,34,.7);
  background: rgba(255,255,255,.105);
  box-shadow: 0 0 0 4px rgba(242,138,34,.11);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 4px;
}

.form-footer p {
  margin: 0 !important;
  max-width: 560px !important;
  color: rgba(255,255,255,.48) !important;
  font-size: 11px;
  line-height: 1.5;
}

.form-submit {
  flex: 0 0 auto;
  min-height: 52px;
  padding: 0 20px;
  border: 0;
  border-radius: 13px;
  background: #f28a22;
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(242,138,34,.24);
  transition: transform .2s ease, background .2s ease;
}

.form-submit:hover {
  background: #d96f0f;
  transform: translateY(-1px);
}

.form-submit span {
  margin-left: 8px;
}

@media (max-width: 620px) {
  .quote-form-card {
    margin-top: 2px;
    padding: 21px 16px 18px;
    border-radius: 22px;
  }

  .quote-form-heading {
    margin-bottom: 20px;
  }

  .quote-form-heading h3 {
    font-size: 25px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .quote-form {
    gap: 14px;
  }

  .quote-form input,
  .quote-form select {
    min-height: 50px;
  }

  .quote-form textarea {
    min-height: 135px;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
    gap: 15px;
  }

  .form-submit {
    width: 100%;
    min-height: 54px;
  }
}
