/* =========================================================
   HOME PAGE STYLES — LOCKED & iOS SAFE
========================================================= */

.page-home .hero {
  padding: 6rem 0;
  background:
    linear-gradient(rgba(11,18,32,.6), rgba(11,18,32,.8)),
    url("/assets/images/hero.jpg") center / cover no-repeat;
  position: relative;
  isolation: isolate;
}

.page-home .eyebrow {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.page-home .lead {
  max-width: 55ch;
}

.page-home .hero-actions {
  display: flex;
  gap: .75rem;
  margin: 1.25rem 0;
  flex-wrap: wrap;
}

.page-home .trust-points {
  list-style: none;
  padding: 0;
}

.page-home .trust-points li {
  padding-left: 1.25rem;
  position: relative;
}

.page-home .trust-points li::before {
  content: "";
  width: .55rem;
  height: .55rem;
  background: var(--gold);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: .55rem;
}

/* =========================================================
   PROOF SECTION
========================================================= */

.page-home .proof-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.page-home .proof-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.page-home .badge {
  border: 1px solid var(--gold-soft);
  color: var(--gold);
  padding: .45rem .8rem;
  border-radius: 999px;
}

/* =========================================================
   STEPS
========================================================= */

.page-home .steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.page-home .step {
  display: flex;
  gap: .75rem;
}

.page-home .step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================================================
   FINAL CTA — FIXED PLACEMENT
========================================================= */

.page-home .cta-band {
  text-align: center;
}

.page-home .cta-inner {
  display: flex;
  justify-content: center;
}

.page-home .cta-copy {
  max-width: 640px;
  margin: 0 auto;
}

.page-home .cta-action {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

.page-home .btn-primary {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

  .page-home .steps {
    grid-template-columns: 1fr;
  }

  .page-home .btn {
    min-height: 48px;
    padding: .75rem 1.1rem;
  }

}
