/* ================= HOW IT WORKS HERO ================= */

.how-hero {
  padding: 120px 24px;
  background: #ffffff;
}

.how-hero-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}

/* LEFT */
.how-hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0b0d12;
}

.how-hero-content h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #0b0d12;
}

.how-hero-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #374151;
  max-width: 520px;
  margin-bottom: 40px;
}

.how-cta {
  padding: 18px 40px;
}

/* RIGHT */
.how-hero-image img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  background: #f3f4f6;
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {
  .how-hero-container {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .how-hero-content h1 {
    font-size: 40px;
  }

  .how-hero-content h2 {
    font-size: 28px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 640px) {
  .how-hero {
    padding: 96px 20px;
  }

  .how-hero-content h1 {
    font-size: 32px;
  }

  .how-hero-content h2 {
    font-size: 22px;
  }

  .how-hero-image img {
    border-radius: 20px;
  }
}

/* ================= HOW IT WORKS STEPS ================= */

.how-steps {
  background: #5b5af0;
  padding: 50px 24px;
}

.how-steps-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
}

/* LEFT IMAGE */
.how-steps-visual img {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.35));
}

/* RIGHT CONTENT */
.how-steps-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
  color: #ffffff;
}

/* STEP */
.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.step-number {
  font-size: 40px;
  font-weight: 700;
  color: #fff !important;
  line-height: 1;
  opacity: 0.9;
  min-width: 40px;
}

.step-text h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.step-text p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {
  .how-steps-container {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .how-steps-visual img {
    max-width: 320px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 640px) {
  .how-steps {
    padding: 120px 20px;
  }

  .step-number {
    font-size: 32px;
  }

  .step-text h3 {
    font-size: 18px;
  }
}

/* ================= CRYPTO STATS ================= */

.crypto-stats {
  background: radial-gradient(
      1200px 400px at 50% 0%,
      rgba(91, 90, 240, 0.15),
      transparent
    ),
    #0b0d12;
  padding: 100px 24px;
  text-align: center;
}

.crypto-stats-container {
  max-width: 1100px;
  margin: 0 auto;
}

.crypto-stats h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 24px;
}

.crypto-stats-desc {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  max-width: 760px;
  margin: 0 auto 88px;
}

/* Metrics */
.crypto-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 96px;
}

.metric-value {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #7c7bff;
  margin-bottom: 12px;
}

.metric-label {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {
  .crypto-metrics {
    gap: 64px;
  }

  .crypto-stats h2 {
    font-size: 36px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 640px) {
  .crypto-stats {
    padding: 120px 20px;
  }

  .crypto-metrics {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .metric-value {
    font-size: 36px;
  }

  .crypto-stats h2 {
    font-size: 30px;
  }
}
