/* ==========================================================================
   WVP mFunds — homepage section and guide page.

   The phone mock-up and store buttons come from app-popup.css, which loads
   site-wide; only the surrounding layout lives here.
   ========================================================================== */

.hp-app {
  padding: var(--hp-section-py, 60px) 0;
  background: var(--hp-gray-light, #F8F8F8);
  font-family: var(--hp-font, 'Source Sans 3', 'Roboto', sans-serif);
  overflow: hidden;
}

.hp-app__grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: center;
}

/* The mock-up is bottom-cropped in the popup; here it stands on its own, so
   the bleed is removed and the frame is closed off. */
.hp-app__visual .wvp-app-popup__phone {
  margin: 0;
  padding-bottom: 9px;
  border-radius: 42px;
}

.hp-app__visual .wvp-app-popup__phone-screen {
  height: 520px;
  border-radius: 34px;
}

.hp-app__visual .wvp-app-popup__phone-logo { margin-top: 92px; }

.hp-app__visual .wvp-app-popup__phone-form { bottom: 30px; }

.hp-app__eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--hp-red, #cd2c2a);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hp-app__title {
  margin: 0 0 18px;
  color: var(--hp-navy, #1f2f3f);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
}

.hp-app__text {
  margin: 0 0 14px;
  max-width: 560px;
  color: var(--hp-navy, #1f2f3f);
  font-size: 18px;
  line-height: 1.6;
}

.hp-app__note {
  margin: 0 0 26px;
  max-width: 560px;
  padding-left: 16px;
  border-left: 3px solid var(--hp-red, #cd2c2a);
  color: var(--hp-gray, #666);
  font-size: 16px;
  line-height: 1.55;
}

.hp-app .wvp-app-popup__stores { padding: 0; }

/* ---- Guide page ---------------------------------------------------------- */

.hp-app--page { background: var(--hp-white, #fff); }

.hp-app--page .hp-app__steps {
  margin: 30px 0 26px;
  padding: 0;
  max-width: 560px;
  list-style: none;
  counter-reset: wvp-step;
}

.hp-app__step {
  position: relative;
  margin-bottom: 16px;
  padding-left: 46px;
  color: var(--hp-navy, #1f2f3f);
  font-size: 16px;
  line-height: 1.55;
}

.hp-app__step::before {
  counter-increment: wvp-step;
  content: counter(wvp-step);
  position: absolute;
  top: -1px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--hp-red, #cd2c2a);
  border-radius: 50%;
  color: var(--hp-white, #fff);
  font-size: 15px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .hp-app__grid {
    grid-template-columns: 1fr;
    gap: 36px;
    justify-items: center;
  }

  .hp-app__content { width: 100%; }

  .hp-app__title { font-size: 30px; }

  .hp-app__text { font-size: 16px; }

  .hp-app .wvp-app-popup__stores {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
}
