.card-mission {
  background: linear-gradient(90deg, rgba(0, 66, 126, 0.25) 0%, rgba(0, 148, 216, 0.13) 100%);
  border: 2px solid rgba(0, 66, 126, 0.5);
  border-radius: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  overflow: hidden;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.card-mission .card-body {
  color: var(--primary-main);
  padding: 1.25rem 1.5rem 1.5rem;
}

.card-mission .card-title {
  color: var(--primary-main);
  font-size: clamp(1.4rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.9rem;
}

.card-mission .btn {
  border-radius: 10px;
}

.prometec-home-quote-section {
  background:
    radial-gradient(
      720px 520px at 14% 28%,
      rgba(17, 152, 255, 0.55) 0%,
      rgba(17, 152, 255, 0.2) 26%,
      rgba(17, 152, 255, 0) 62%
    ),
    linear-gradient(90deg, #0d3b73 0%, #090022 46%, #08001d 100%);
  overflow: hidden;
  position: relative;
}

.prometec-home-quote-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 28px 54px rgba(2, 8, 33, 0.34);
  max-width: 520px;
  padding: clamp(1.5rem, 3vw, 2rem);
}

.prometec-home-quote__title {
  color: var(--primary-main);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-align: center;
}

.prometec-quote-form {
  color: var(--primary-main);
}

.prometec-quote-form__fields {
  display: grid;
  gap: 0.95rem;
}

.prometec-quote-form__field {
  margin: 0;
}

.prometec-quote-form .form-label,
.prometec-quote-form legend {
  color: var(--primary-main);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
}

.prometec-quote-form legend {
  float: none;
  width: auto;
}

.prometec-quote-form .form-control {
  border: 1.5px solid #57b8ff;
  border-radius: 12px;
  box-shadow: none;
  color: var(--primary-main);
  font-size: 0.92rem;
  min-height: 46px;
  padding: 0.72rem 0.95rem;
}

.prometec-quote-form .form-control::placeholder {
  color: rgba(8, 3, 34, 0.45);
}

.prometec-quote-form .form-control:focus {
  border-color: #0e9cff;
  box-shadow: 0 0 0 0.22rem rgba(14, 156, 255, 0.18);
}

.prometec-quote-form textarea.form-control {
  min-height: 110px;
  resize: vertical;
}

.prometec-quote-form__field--interests {
  border: 0;
  margin: 0;
  min-width: 0;
  padding: 0;
}

.prometec-quote-form__interest-grid {
  display: grid;
  gap: 0.65rem 1.2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.prometec-quote-form__interest-option {
  align-items: center;
  color: var(--primary-main);
  cursor: pointer;
  display: flex;
  font-size: 0.8rem;
  gap: 0.55rem;
  line-height: 1.35;
}

.prometec-quote-form__interest-input {
  -webkit-appearance: none;
  appearance: none;
  background: #fff;
  border: 1.5px solid #1d3a94;
  border-radius: 999px;
  flex: 0 0 15px;
  height: 15px;
  margin: 0;
  position: relative;
  width: 15px;
}

.prometec-quote-form__interest-input:checked::after {
  background: #1198ff;
  border-radius: 999px;
  content: "";
  height: 7px;
  inset: 50% auto auto 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  width: 7px;
}

.prometec-quote-form__interest-input:focus-visible {
  outline: 2px solid rgba(17, 152, 255, 0.34);
  outline-offset: 2px;
}

.prometec-quote-form__actions {
  padding-top: 0.2rem;
}

.prometec-quote-form__submit.btn {
  align-items: center;
  background: linear-gradient(90deg, #0d5c9e 0%, #0e9cff 100%);
  border: 0;
  border-radius: 999px;
  box-shadow: none;
  color: #fff !important;
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 700;
  gap: 0.5rem;
  justify-content: center;
  min-height: 42px;
  padding: 0.7rem 1.2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.prometec-quote-form__submit.btn:hover,
.prometec-quote-form__submit.btn:focus-visible {
  box-shadow: 0 12px 24px rgba(14, 156, 255, 0.28);
  filter: brightness(1.02);
  transform: translateY(-1px);
}

.prometec-quote-form__submit-icon {
  display: inline-flex;
  height: 0.95rem;
  width: 0.95rem;
}

.prometec-quote-form__submit-icon svg {
  display: block;
  height: 100%;
  width: 100%;
}

@media (max-width: 575.98px) {
  .prometec-home-quote-card {
    border-radius: 18px;
    padding: 1.35rem 1rem;
  }

  .prometec-quote-form__interest-grid {
    grid-template-columns: 1fr;
  }
}
