section {
  position: relative;
  padding: var(--section-pad) 0;
}

.section-head {
  text-align: left;
  margin-bottom: clamp(32px, 4vw, 56px);
  max-width: 720px;
}
.section-head.center { margin-inline: auto; text-align: center; }

.section-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.032em;
  line-height: 1.1;
  margin-top: 12px;
  font-weight: 600;
}

.section-head p {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: clamp(15px, 1.4vw, 17px);
  max-width: 560px;
}
.section-head.center p { margin-inline: auto; }

.trust-strip {
  margin-top: clamp(24px, 4vw, 40px);
  padding-block: 14px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.trust-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 auto;
  white-space: nowrap;
}
.trust-list span::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-faint);
}

@media (max-width: 720px) {
  .trust-list {
    overflow-x: auto;
    flex-wrap: nowrap;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
  }
  .trust-list span {
    scroll-snap-align: start;
    flex: 0 0 auto;
  }
}

.how-strip {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-elev-1);
}
@media (min-width: 760px) {
  .how-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

.how-step {
  padding: 24px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.how-step:last-child { border-bottom: 0; }
@media (min-width: 760px) {
  .how-step {
    border-bottom: 0;
    border-right: 1px solid var(--border);
  }
  .how-step:last-child { border-right: 0; }
}

.how-step .num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  margin-bottom: 12px;
}
.how-step h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.how-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

.how-cta {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
}

.final-cta {
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(48px, 8vw, 96px) var(--gutter);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.06) 0%, transparent 60%),
    var(--bg-elev-1);
  max-width: 920px;
  margin: 0 auto;
}
.final-cta .eyebrow { justify-content: center; margin-bottom: 16px; }
.final-cta h2 {
  font-size: clamp(28px, 4.5vw, 48px);
  letter-spacing: -0.034em;
  line-height: 1.08;
  margin-bottom: 14px;
}
.final-cta p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 16px;
}

.locations-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 720px) {
  .locations-strip { grid-template-columns: repeat(3, 1fr); }
}

.location-tile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-elev-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.location-tile:hover {
  border-color: var(--border-strong);
  background: var(--bg-elev-2);
}
.location-tile:hover .chev { transform: translateX(4px); }
.location-tile .info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.location-tile .code {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-faint);
}
.location-tile .name {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.location-tile .sub {
  font-size: 13px;
  color: var(--text-muted);
}
.location-tile .chev {
  color: var(--text-dim);
  flex-shrink: 0;
  transition: transform var(--dur-fast) var(--ease-out);
}
