/* ===============================
   TRANSFERS PAGE
================================ */

.transfers-hero {
  padding: 120px 0;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(95,140,255,.25), transparent 45%),
    #050714;
}

.transfers-hero h1 {
  font-size: 56px;
  line-height: 1.1;
  margin: 18px 0;
}

.transfers-hero h1 span {
  color: #8fb1ff;
}

.hero-subtitle {
  max-width: 680px;
  margin: 0 auto 50px;
  color: #b6b6c8;
  font-size: 18px;
}

/* CENTER IMAGE */
.transfer-diagram {
  margin: 60px auto;
}

.transfer-diagram img {
  max-width: 720px;
  width: 100%;
  border-radius: 26px;
  box-shadow: 0 40px 120px rgba(95,140,255,.35);
}

/* FEATURES */
.transfer-features {
  padding: 100px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.feature-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 34px;
  border-radius: 22px;
  text-align: center;
}

.feature-card i {
  font-size: 28px;
  color: #5f8cff;
  margin-bottom: 16px;
}

/* STEPS */
.transfer-steps {
  padding: 100px 0;
  background: rgba(255,255,255,.02);
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.step span {
  background: #5f8cff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: bold;
  margin-bottom: 12px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .features-grid,
  .steps-row {
    grid-template-columns: 1fr;
  }

  .transfers-hero h1 {
    font-size: 40px;
  }
}

/* Center transfer diagram */
.transfer-diagram {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
}

.transfer-diagram img {
  max-width: 70%;
  height: auto;
  display: block;
}
