.quote-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 24px 80px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.quote-title {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quote-title h1 {
  margin: 0;
  font-family: var(--ff-title);
  color: var(--text-dark);
  font-size: 2.4rem;
  letter-spacing: 0.2px;
}

.quote-title p {
  margin: 0;
  font-family: var(--ff-ui);
  color: var(--text-body);
  line-height: 1.65;
  font-size: 1.05rem;
}

.quote-timeline,
.quote-form,
.faq {
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.quote-timeline {
  padding: 26px;
  background: rgba(95, 169, 127, 0.12);
  border: 1px solid rgba(95, 169, 127, 0.28);
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
}

.timeline__item {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 16px;
  align-items: start;
}

.timeline__marker {
  width: 12px;
  height: 12px;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--green-700);
  position: relative;
}

.timeline__marker::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% + 14px);
  background: rgba(73, 133, 60, 0.35);
}

/* .timeline__item:last-child .timeline__marker::after {
  display: none;
} */

.timeline__title {
  margin: 0 0 6px;
  font-family: var(--ff-heading);
  font-weight: 650;
  color: var(--text-dark);
  font-size: 1.05rem;
}

.timeline__text {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--text-body);
  line-height: 1.65;
  font-size: 0.98rem;
}

.quote-form {
  padding: 26px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.form {
  display: grid;
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.label {
  font-family: var(--ff-ui);
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.2px;
}

.help {
  font-family: var(--ff-body-alt);
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.92rem;
}

.input,
.textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-dark);
  font-family: var(--ff-body);
  font-size: 0.98rem;
  outline: none;
}

.input:focus,
.textarea:focus {
  border-color: rgba(73, 133, 60, 0.55);
  box-shadow: 0 0 0 4px rgba(95, 169, 127, 0.18);
}

.file {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.file__input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.file__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(73, 133, 60, 0.14);
  border: 1px solid rgba(73, 133, 60, 0.35);
  color: var(--text-dark);
  font-family: var(--ff-ui);
  font-weight: 700;
  user-select: none;
}

.file:hover .file__button {
  filter: brightness(0.97);
}

.file:focus-within .file__button {
  box-shadow: 0 0 0 4px rgba(95, 169, 127, 0.18);
}

.quote-form .btn {
  justify-self: start;
  margin-top: 4px;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-title {
  margin: 8px 0 6px;
  text-align: center;
  font-family: var(--ff-heading);
  font-weight: 650;
  color: var(--text-dark);
}

.faq {
  padding: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.faq h2 {
  margin: 0 0 10px;
  font-family: var(--ff-subheading);
  font-weight: 700;
  color: var(--text-dark);
  font-size: 1.05rem;
  line-height: 1.35;
}

.faq p {
  margin: 0 0 10px;
  font-family: var(--ff-body);
  color: var(--text-body);
  line-height: 1.2;
  font-size: 0.98rem;
  text-align: justify;
}

.faq p:last-child {
  margin-bottom: 0;
}

@media (max-width: 520px) {
  .quote-page {
    padding: 54px 16px 70px;
  }

  .quote-title h1 {
    font-size: 2rem;
  }

  .quote-timeline,
  .quote-form,
  .faq {
    padding: 18px;
  }

  .timeline__item {
    grid-template-columns: 16px 1fr;
    gap: 12px;
  }
}
