.how-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 16px 60px;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.hero h1 {
  font-size: 42px;
  line-height: 1.1;
}

.hero p {
  font-size: 18px;
  opacity: 0.8;
  margin: 16px 0 24px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}





.hero-image img {
  width: 100%;
  border-radius: 20px;
}

.section {
  margin-bottom: 70px;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 18px;
  text-align: center;
}


.center-text {
  text-align: center;
  font-size: 17px;
  opacity: 0.8;
  margin-top: 14px;
}

.pill-grid {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #ddd;
  background: #fff;
  font-weight: 500;
}

.pill svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}


.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.split.reverse {
  direction: rtl;
}

.split.reverse > * {
  direction: ltr;
}

.image-box img {
  width: 100%;
  border-radius: 18px;
}

.steps {
  list-style: none;
  padding: 0;
}

.steps li {
  margin-bottom: 18px;
}

.steps strong {
  display: block;
  font-size: 18px;
}

.steps span {
  opacity: 0.8;
}

.note {
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.7;
}

.wallet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.wallet-card {
  padding: 20px;
  border-radius: 16px;
  background: #fafafa;
  border: 1px solid rgba(220, 38, 38, 0.25); /* Budy red hint */
  box-shadow:
    0 0 0 1px rgba(220, 38, 38, 0.15),
    0 0 24px rgba(220, 38, 38, 0.12);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.wallet-card:hover {
  box-shadow:
    0 0 0 1px rgba(220, 38, 38, 0.35),
    0 0 36px rgba(220, 38, 38, 0.25);
  transform: translateY(-2px);
}


.discover-list {
  max-width: 600px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.discover-list li {
  font-size: 17px;
  padding: 8px 0;
}

.cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 50px;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    #fafafa 0%,
    #f4f4f4 100%
  );
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  align-items: center;
}

.cta > div {
  display: flex;
  flex-direction: column;
  gap: 14px;
}


.cta h2 {
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 12px;
}

/* === HARD LOCK BUTTONS FOR HOW IT WORKS PAGE === */
.how-page a.primary-btn,
.how-page a.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 180px;
  height: 48px;

  padding: 0;
  box-sizing: border-box;

  border-radius: 999px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

/* Primary (red) */
.how-page a.primary-btn {
  background: #d10f1f;
  color: #ffffff !important;
  border: none;
}

/* Secondary (outline) */
.how-page a.secondary-btn {
  background: #ffffff;
  color: #111827;
  border: 1px solid #d1d5db;
}

/* Ensure hero buttons align perfectly */
.hero-actions {
  align-items: center;
  flex-wrap: nowrap;
}


@media (max-width: 900px) {
  .hero,
  .split,
  .cta {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 34px;
  }

  /* Mobile swipe cards for wallet section */
  .wallet-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 10px 4px 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .wallet-card {
    min-width: 260px;
    scroll-snap-align: start;
    flex-shrink: 0;
  }

}

/* =========================
   CONTACT FORM
   ========================= */

.contact-section {
  max-width: 700px;
  margin: 0 auto 80px;
  text-align: center;
}

.contact-section form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 30px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-section input,
.contact-section textarea {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #ddd;
  font-size: 15px;
  width: 100%;
  box-sizing: border-box;
  font-family: inherit;
}

.contact-section textarea {
  resize: vertical;
}

.contact-section button {
  width: 200px;
  align-self: center;
}

@media (max-width: 700px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.form-success {
  margin-top: 20px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(16, 185, 129, 0.1);
  color: #065f46;
  font-weight: 500;
}

.hidden {
  display: none;
}
