.quote-section {
  background: #f7f7f4;
  color: #111;
  padding: 100px 20px;
}

.quote-container {
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 46px;
  align-items: center;
}

.quote-content {
  text-align: left;
}

.quote-section .section-label {
  display: inline-block;
  color: #ff6a00;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.quote-section h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -1px;
  font-weight: 900;
  margin-bottom: 18px;
}

.quote-text {
  color: #666;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.quote-points {
  display: grid;
  gap: 12px;
}

.quote-points span {
  font-weight: 800;
  color: #222;
}

.quote-form {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 26px;
  padding: 34px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(0,0,0,0.12);
  background: #f9f9f7;
  border-radius: 14px;
  padding: 17px 18px;
  margin-bottom: 14px;
  font-size: 1rem;
  font-family: inherit;
  color: #111;
  outline: none;
}

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

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: #ff6a00;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255,106,0,0.12);
}

.quote-form button {
  width: 100%;
  height: 58px;
  background: #ff6a00;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(255,106,0,0.25);
  transition: all .2s ease;
}

.quote-form button:hover {
  transform: translateY(-2px);
  background: #ff7a1a;
  box-shadow: 0 18px 38px rgba(255,106,0,0.32);
}

.form-note {
  margin-top: 14px;
  text-align: center;
  color: #777;
  font-size: 0.9rem;
}

@media (max-width: 850px) {
  .quote-section {
    padding: 80px 18px;
  }

  .quote-container {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 620px;
  }

  .quote-content {
    text-align: center;
  }

  .quote-points {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .quote-section {
    padding: 70px 16px;
  }

  .quote-form {
    padding: 22px;
    border-radius: 20px;
  }

  .quote-section h2 {
    font-size: clamp(1.8rem, 9vw, 2.35rem);
  }

  .quote-text {
    font-size: 1rem;
  }

  .quote-form input,
  .quote-form textarea {
    font-size: 0.95rem;
    padding: 15px 16px;
  }
}