/* Quote / contact page — two-column format
   Left: contact pitch + live-call card
   Right: multi-step quote form
   ========================================================================= */

.qt-contact {
  padding: 154px 0 90px;
}

.qt-grid {
  display: grid;
  grid-template-columns: minmax(360px, 430px) 1fr;
  gap: 80px;
  align-items: start;
}

/* Left column */
.qt-left {
  position: sticky;
  top: 116px;
}

.qt-eyebrow {
  font-family: 'Asap', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b7280;
  margin: 0 0 18px;
}

.qt-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 68px;
  letter-spacing: -2px;
  color: #000;
  margin: 0 0 18px;
}

.qt-sub {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: rgba(0, 0, 0, 0.65);
  max-width: 380px;
  margin: 0;
}

.qt-divider {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin: 64px 0 44px;
}

.qt-call-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: -0.3px;
  color: #000;
  margin: 0 0 8px;
}

.qt-call-text {
  font-size: 16px;
  line-height: 25px;
  color: rgba(0, 0, 0, 0.6);
  margin: 0 0 24px;
  max-width: 340px;
}

.qt-person {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 16px 18px;
}

.qt-person__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.qt-person__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #f0f1f3;
}

.qt-person__name {
  font-weight: 600;
  font-size: 15px;
  line-height: 22px;
  color: #000;
  margin: 0;
}

.qt-person__role {
  font-size: 14px;
  line-height: 20px;
  color: #6b7280;
  margin: 0;
}

.qt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #000;
  border: 1px solid #000;
  border-radius: 12px;
  padding: 11px 18px;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  color: #fff;
  white-space: nowrap;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.qt-btn:hover { background: #141414; transform: translateY(-1px); }
.qt-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.qt-btn--secondary {
  background: #fff;
  color: #000;
  border-color: rgba(0, 0, 0, 0.12);
}

.qt-btn--secondary:hover { background: #f6f7f9; }

/* Right column — form card */
.qt-card {
  background: #eeeff1;
  border-radius: 20px;
  padding: 36px;
}

.qt-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 30px;
}

.qt-progress__bar {
  flex: 1;
  height: 5px;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.1);
}

.qt-progress__bar.is-active { background: #000; }

.qt-step-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: -0.3px;
  color: #000;
  margin: 0 0 24px;
}

.qt-field {
  display: block;
  margin-bottom: 18px;
}

.qt-field__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #000;
}

.qt-field__label span { color: #6b7280; font-weight: 500; }

.qt-field input[type="text"],
.qt-field input[type="email"],
.qt-field input[type="url"],
.qt-field textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background: #fff;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}

.qt-field input:focus,
.qt-field textarea:focus {
  border-color: #057AFF;
  box-shadow: 0 0 0 3px rgba(5, 122, 255, .12);
}

.qt-field textarea { min-height: 100px; resize: vertical; }

.qt-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.qt-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}

.qt-option:hover { border-color: rgba(0, 0, 0, 0.18); }
.qt-option input { width: 18px; height: 18px; accent-color: #000; flex-shrink: 0; }
.qt-option__text { font-size: 15px; color: #000; }

.qt-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.qt-actions .qt-btn--wide { flex: 1; }

.qt-error {
  color: #e5484d;
  font-size: 14px;
  margin-top: -6px;
  margin-bottom: 14px;
}

.qt-success {
  text-align: center;
  padding: 40px 20px;
}

.qt-success h3 {
  font-size: 26px;
  margin-bottom: 12px;
  color: #000;
}

.qt-success p {
  color: #6b7280;
  margin-bottom: 24px;
}

/* Trust logos */
.qt-trust {
  padding: 40px 0 120px;
  text-align: center;
}

.qt-trust__eyebrow {
  font-family: 'Asap', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b7280;
  margin: 0 0 28px;
}

.qt-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.qt-logos__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 88px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 18px 24px;
}

.qt-logos__item img {
  max-width: 100%;
  max-height: 30px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: filter .2s, opacity .2s;
}

.qt-logos__item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

[hidden] { display: none !important; }

/* Responsive */
@media (max-width: 1100px) {
  .qt-grid { gap: 48px; }
  .qt-title { font-size: 52px; line-height: 56px; }
}

@media (max-width: 860px) {
  .qt-contact { padding: 132px 0 70px; }
  .qt-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .qt-left { position: static; }
  .qt-title { font-size: 44px; line-height: 48px; }
  .qt-sub { max-width: none; }
  .qt-divider { margin: 44px 0 36px; }
  .qt-logos { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .qt-title { font-size: 36px; line-height: 40px; letter-spacing: -1px; }
  .qt-card { padding: 26px 22px; }
  .qt-person { flex-direction: column; align-items: flex-start; gap: 14px; }
  .qt-actions { flex-direction: column-reverse; }
  .qt-actions .qt-btn { width: 100%; }
}
