.quote-form {
  padding: 2.25rem clamp(1.25rem, 3vw, 2.5rem);
  border-color: #e7e7e7;
  box-shadow: 0 24px 70px rgba(10, 10, 10, 0.06);
}

.quote-form .form-grid {
  gap: 1.4rem 1.75rem;
}

.quote-form label {
  gap: 0.65rem;
  color: #151515;
  font-size: clamp(0.95rem, 1.15vw, 1.06rem);
  font-weight: 800;
  letter-spacing: -0.015em;
}

.quote-form input,
.quote-form textarea {
  border-color: #dedede;
  background: #fff;
  border-radius: 1rem;
  color: #111;
  font-weight: 600;
  box-shadow: 0 1px 0 rgba(10, 10, 10, 0.02), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.quote-form input {
  height: 3.55rem;
  padding: 0.8rem 1rem;
}

.quote-form textarea {
  min-height: 10.5rem;
  resize: vertical;
  padding: 1.1rem 1.25rem;
  line-height: 1.55;
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 4px rgba(247, 85, 6, 0.12);
}

.quote-form textarea::placeholder {
  color: #777;
  font-weight: 700;
}

.form-label {
  margin: 2rem 0 1rem;
  color: #151515;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 900;
  letter-spacing: -0.025em;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.check-list label {
  position: relative;
  display: flex;
  min-height: 3.55rem;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  border: 1px solid #e1e1e1;
  border-radius: 1rem;
  background: #fff;
  padding: 0.8rem 1rem;
  color: #181818;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.01em;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(10, 10, 10, 0.035);
  transition: transform 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s, color 0.2s;
}

.check-list label:hover {
  transform: translateY(-1px);
  border-color: rgba(247, 85, 6, 0.45);
  box-shadow: 0 14px 34px rgba(10, 10, 10, 0.07);
}

.check-list label:has(input:checked) {
  border-color: var(--brand-orange);
  background: #fff7f3;
  color: #0f0f0f;
  box-shadow: 0 16px 36px rgba(247, 85, 6, 0.14);
}

.check-list input {
  appearance: none;
  width: 1rem;
  height: 1rem;
  min-width: 1rem;
  border: 1.5px solid #8a8a8a;
  border-radius: 0.28rem;
  margin: 0;
  padding: 0;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: none;
}

.check-list input:checked {
  border-color: var(--brand-orange);
  background: var(--brand-orange);
}

.check-list input:checked::after {
  content: "";
  width: 0.45rem;
  height: 0.25rem;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}

.submit {
  height: 3.8rem;
  margin-top: 1.75rem;
  border-radius: 999px;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  box-shadow: 0 18px 36px rgba(247, 85, 6, 0.24);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}

.submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(247, 85, 6, 0.32);
}

@media (max-width: 1024px) {
  .quote-form {
    padding: 1.5rem;
  }

  .check-list {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

@media (max-width: 640px) {
  .quote-form input {
    height: 3.25rem;
  }

  .check-list {
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
  }

  .check-list label {
    min-height: 3.25rem;
    border-radius: 0.85rem;
    padding: 0.7rem 0.75rem;
    font-size: 0.82rem;
  }

  .quote-form textarea {
    min-height: 9rem;
  }

  .submit {
    height: 3.5rem;
    font-size: 0.86rem;
  }
}
