/* ========== FORM1 QUOTE / OFFERTE PAGE ========== */

.quote-hero-section {
  background: radial-gradient(circle at top, #020617 0, #020617 55%, #020617 100%);
}

.quote-section {
  padding: 50px 0 90px;
  /* background: #020617; */
}

.quote-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.quote-header {
  text-align: center;
  margin-bottom: 26px;
  color: #e5e7eb;
}

.quote-kicker {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #ff2c7a;
  margin-bottom: 6px;
}

.quote-title {
  font-size: 1.9rem;
  color: #000;
  margin-bottom: 6px;
}

.quote-subtitle {
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: #9ca3af;
}

/* Карточка формы */

.quote-card {
  margin-top: 10px;
  border-radius: 24px;
  background: #f9fafb;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  padding: 32px 30px 26px;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

/* Поля */

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #4b5563;
}

.form-required {
  color: #ef4444;
  font-weight: 600;
}

/* inputs / select / textarea */

.form-input,
.form-select,
.form-textarea {
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #f3f4f6;
  padding: 10px 12px;
  font-size: 0.95rem;
  color: #111827;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: #ff2c7a;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(255, 44, 122, 0.45);
}

.form-select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #6b7280 50%),
    linear-gradient(135deg, #6b7280 50%, transparent 50%);
  background-position:
    calc(100% - 16px) 50%,
    calc(100% - 11px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Низ формы */

.quote-footer {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.form-note {
  font-size: 0.8rem;
  color: #6b7280;
}

.quote-submit-btn {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  border-radius: 999px;
  border: none;
  background: #ff2c7a;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(148, 27, 90, 0.6);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.quote-submit-btn:hover {
  background: #ff4a96;
  box-shadow: 0 16px 34px rgba(148, 27, 90, 0.7);
  transform: translateY(-1px);
}

.quote-submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 10px 22px rgba(148, 27, 90, 0.55);
}

.form-privacy {
  font-size: 0.8rem;
  color: #9ca3af;
  max-width: 640px;
}

/* Адаптив */

@media (max-width: 900px) {
  .quote-card {
    padding: 24px 18px 22px;
  }

  .quote-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 600px) {
  .quote-inner {
    padding-inline: 16px;
  }

  .quote-title {
    font-size: 1.6rem;
  }
}

/* ========== FORM1 QUOTE / OFFERTE PAGE. end ========== */
