:root {
  --landing-line: #dbe3f0;
}

.page-hero--aux {
  position: relative;
  color: #fff;
}
.page-hero--aux .page-hero__title,
.page-hero--aux .page-hero__lead { color: #fff; text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25); }

.landing-trust {
  padding-block: 1.25rem;
  background: var(--navy);
  color: #fff;
}
.landing-trust__list {
  display: flex;
  gap: clamp(1rem, 4vw, 3.5rem);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-size: 0.925rem;
}
.landing-trust__list li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.landing-trust__list svg {
  color: var(--blue-sky);
  flex-shrink: 0;
}

.landing-section { padding-block: 5rem; }
.landing-section--paper { background: var(--paper); }
.landing-section__header {
  text-align: center;
  max-width: 44rem;
  margin-inline: auto;
  margin-bottom: 3rem;
}

.landing-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.landing-card {
  background: #fff;
  border: 1px solid var(--landing-line);
  border-radius: 1.25rem;
  padding: 1.85rem;
  box-shadow: 0 20px 45px rgba(5, 13, 28, 0.06);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.landing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(5, 13, 28, 0.1);
}
.landing-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(26, 86, 255, 0.08);
  color: var(--blue-electric);
  margin-bottom: 1rem;
}
.landing-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
  color: var(--navy);
  font-family: var(--font-display);
}
.landing-card__copy {
  color: var(--slate);
  line-height: 1.7;
  font-size: 0.98rem;
  margin: 0;
}

.landing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.landing-card--highlight {
  background: linear-gradient(135deg, rgba(26, 86, 255, 0.06), rgba(41, 182, 246, 0.08));
  border-color: rgba(26, 86, 255, 0.25);
}
.landing-card .landing-list {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}
.landing-card .landing-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  color: var(--slate);
  font-size: 0.95rem;
}
.landing-card .landing-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--blue-electric);
}

.landing-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}
.landing-step {
  position: relative;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--landing-line);
  border-radius: 1rem;
  background: #fff;
}
.landing-step__number {
  counter-increment: step;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-family: var(--font-display);
  margin-bottom: 1rem;
}
.landing-step__number::before { content: counter(step); }
.landing-step__title {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
}
.landing-step__copy {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

.landing-cta {
  padding-block: 5rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  text-align: center;
}
.landing-cta__inner {
  max-width: 42rem;
  margin-inline: auto;
}
.landing-cta__title { font-size: clamp(2rem, 1.5rem + 2vw, 2.6rem); }
.landing-cta__copy { color: rgba(255, 255, 255, 0.8); margin: 1rem 0 1.75rem; line-height: 1.75; }

.landing-list {
  text-align: left;
  list-style: none;
  max-width: 34rem;
  margin: 0 auto 2rem;
  padding: 0;
}
.landing-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}
.landing-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: var(--blue-sky);
}

@media (max-width: 980px) {
  .landing-steps { grid-template-columns: repeat(2, 1fr); }
  .landing-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .landing-steps { grid-template-columns: 1fr; }
  .landing-cards { grid-template-columns: 1fr; }
  .landing-trust__list { flex-direction: column; gap: 0.75rem; }
}
