.checkmark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--pine);
}

.workflow {
  padding: 104px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
}

h2 {
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  min-height: 290px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.7);
}

.step-number {
  color: #0a877a;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

h3 {
  margin: 62px 0 12px;
  font-size: 1.7rem;
  letter-spacing: -0.035em;
}

.steps p,
.privacy-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.58;
}

.privacy-promise {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 72px;
  margin-bottom: 104px;
  padding: clamp(34px, 6vw, 72px);
  border-radius: 34px;
  background: var(--pine);
  color: white;
}

.privacy-promise .eyebrow {
  color: var(--lime);
}

.privacy-copy {
  align-self: end;
}

.privacy-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.text-link {
  display: inline-block;
  margin-top: 26px;
  color: var(--lime);
  font-weight: 760;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 44px 0 50px;
  border-top: 1px solid var(--line);
}

footer p {
  margin: 6px 0 0;
  color: var(--muted);
}

.copyright {
  grid-column: 1 / -1;
  font-size: 0.88rem;
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 48px;
  }

  .hero-art {
    min-height: 500px;
  }

  .steps,
  .privacy-promise {
    grid-template-columns: 1fr;
  }

  .privacy-promise {
    gap: 36px;
  }
}

@media (max-width: 560px) {
  .site-header,
  main,
  footer {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    min-height: 82px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  nav {
    gap: 14px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 80px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .hero-art {
    min-height: 440px;
  }

  .quote-sheet {
    min-height: 420px;
    padding: 24px;
  }

  .quote-band {
    margin-inline: -24px;
    padding-inline: 24px;
  }

  .workflow {
    padding-block: 80px;
  }

  .steps li {
    min-height: 240px;
  }

  h3 {
    margin-top: 40px;
  }

  footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

.content-page {
  max-width: 960px;
  padding: 72px 0 104px;
}

.page-intro {
  max-width: 830px;
  padding-bottom: 54px;
}

.page-intro h1 {
  font-size: clamp(3.1rem, 8vw, 6.4rem);
}

.effective-date {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.policy-summary {
  margin-bottom: 58px;
  padding: 28px 30px;
  border: 1px solid rgba(25, 182, 165, 0.32);
  border-radius: 24px;
  background: rgba(25, 182, 165, 0.08);
}

.policy-summary strong {
  font-size: 1.18rem;
}

.policy-summary ul {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.7;
}

.legal-copy {
  display: grid;
  gap: 46px;
}

.legal-copy section {
  padding-bottom: 46px;
  border-bottom: 1px solid var(--line);
}

.legal-copy h2,
.contact-panel h2,
.faq h2 {
  font-size: clamp(1.75rem, 4vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.legal-copy p,
.legal-copy li,
.contact-panel .contact-email,
.faq-list p {
  color: var(--muted);
  font-size: 1.04rem;
  font-style: normal;
  line-height: 1.7;
}

.legal-copy p {
  margin: 18px 0 0;
}

.legal-copy ul {
  padding-left: 24px;
}

.legal-copy a,
.contact-panel a,
.faq-list a {
  color: #087d72;
}

.support-button {
  display: inline-flex;
  margin-top: 30px;
  padding: 14px 19px;
  border-radius: 14px;
  background: var(--pine);
  color: white;
  font-weight: 760;
  text-decoration: none;
}

.support-button:hover,
.support-button:focus-visible {
  background: #0b514f;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 92px;
  padding: 36px;
  border-radius: 28px;
  background: var(--pine);
  color: white;
}

.contact-panel .eyebrow {
  color: var(--lime);
}

.contact-panel a,
.contact-panel .contact-email {
  color: rgba(255, 255, 255, 0.84);
}

.contact-panel .contact-email {
  margin: 0;
  align-self: center;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 44px;
}

.faq-list details {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.faq-list summary {
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 740;
}

.faq-list p {
  margin: 16px 0 0;
}

@media (max-width: 640px) {
  .content-page {
    padding-top: 48px;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }
}
