.home-section {
  padding-block: clamp(64px, 10vh, 120px);
  background: transparent;
}

.home-section + .home-section {
  border-top: 1px solid var(--border);
}

.home-section-label {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-section h2,
.home-footer-cta h2 {
  margin-bottom: 8px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.25;
}

.home-highlights,
.home-trust,
.home-footer-cta {
  text-align: center;
}

.home-intro {
  max-width: 560px;
  margin: 0 0 56px;
  font-size: 17px;
}

.home-intro--center {
  margin-inline: auto;
}

.home-steps,
.home-trust__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.home-step {
  position: relative;
  padding-top: 52px;
  text-align: left;
}

.home-step h3,
.home-highlight__text h3,
.home-trust-item h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-weight: 500;
}

.home-step p,
.home-highlight__text p,
.home-trust-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
}

.home-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 8vw, 80px);
  padding-block: 48px;
  border-top: 1px solid var(--border);
  text-align: left;
}

.home-highlight--reverse .home-highlight__image {
  order: -1;
}

.home-highlight__text span {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-highlight__image {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
}

.home-highlight__image img {
  width: 100%;
  height: auto;
}

.home-highlight__image figcaption {
  position: absolute;
  bottom: 16px;
  left: 50%;
  padding: 6px 16px;
  transform: translateX(-50%);
  border: 1px solid var(--border);
  border-radius: 999px;
  background: oklch(98% 0.004 95 / 0.92);
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.home-card {
  border-radius: 14px;
}

.home-trust-item {
  padding: 24px;
  text-align: left;
}

.home-footer-cta {
  padding-block: clamp(80px, 12vh, 120px);
}

.home-footer-cta p {
  max-width: 480px;
  margin: 0 auto 32px;
  font-size: 17px;
}

.home-footer {
  padding-block: 24px;
  border-top: 1px solid var(--border);
}

.home-footer span,
.home-footer a {
  color: var(--muted);
  font-size: 13px;
}

.home-footer__links {
  display: flex;
  gap: 24px;
}

@media (max-width: 1024px) {
  .home-hero__inner,
  .home-highlight {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .home-hero__text {
    align-items: center;
  }

  .home-hero__visual {
    order: -1;
  }

  .home-highlight--reverse .home-highlight__image {
    order: 0;
  }

  .home-highlight__text {
    text-align: center;
  }

  .home-steps,
  .home-trust__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .home-hero {
    padding-block: 64px 48px;
  }

  .home-hero h1 {
    font-size: 36px;
  }

  .home-hero__visual {
    order: -1;
  }

  .home-import {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
    padding: 12px;
    border-radius: 14px;
    text-align: center;
  }

  .home-import > span:first-child {
    white-space: normal;
  }

  .home-import__button {
    width: 100%;
  }

  .home-section {
    padding-block: 48px;
  }

  .home-footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
