.estimate-section,
.trust-section {
  border-top: 1px solid var(--line);
}

.estimate-section {
  background: var(--paper);
}

.trust-section {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.estimate-section,
.trust-section {
  padding-block: clamp(54px, 7vw, 92px);
}

.estimate-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}

.estimate-copy {
  max-width: 68ch;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.2vw, 1.2rem);
  line-height: 1.78;
}

.estimate-copy p + p {
  margin-top: 20px;
}

.estimate-copy .button {
  margin-top: 30px;
}

.trust-section .section-heading {
  margin-bottom: clamp(30px, 5vw, 58px);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.trust-grid article {
  min-height: 280px;
  padding: clamp(24px, 3vw, 34px) clamp(18px, 2.4vw, 28px) 0 0;
  border-right: 1px solid var(--line);
}

.trust-grid article + article {
  padding-left: clamp(18px, 2.4vw, 28px);
}

.trust-grid article:last-child {
  border-right: 0;
}

.trust-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--copper);
  font-family: var(--serif);
  font-size: 1.3rem;
}

.trust-grid h3 {
  margin-bottom: 18px;
}

.trust-grid p {
  color: var(--muted);
}

@media (max-width: 980px) {
  .estimate-grid {
    grid-template-columns: 1fr;
  }

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

  .trust-grid article:nth-child(2n) {
    border-right: 0;
  }

  .trust-grid article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 680px) {
  .estimate-section,
  .trust-section {
    padding-block: 48px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid article,
  .trust-grid article + article {
    min-height: auto;
    padding: 24px 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .trust-grid article:first-child {
    border-top: 0;
  }
}
