/* ================================
   How It Works – Wide v2
   ================================ */

.hiw-wide-v2 {
  width: 100%;
  background: #ffffff;
}

/* HERO */
.hiw-hero {
  padding: 120px 40px 90px;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.hiw-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.hiw-hero h2 {
  font-size: 44px;
  margin-bottom: 14px;
  color: #0f172a;
}

.hiw-hero p {
  font-size: 19px;
  max-width: 720px;
  margin: 0 auto;
  color: #475569;
}

/* STEPS */
.hiw-steps {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px 80px;
}

.hiw-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.hiw-row.alt {
  background: #f8fafc;
  padding: 60px;
  border-radius: 24px;
}

.hiw-step {
  position: relative;
}

.hiw-step span {
  font-size: 64px;
  font-weight: 800;
  color: rgba(15,23,42,0.06);
}

.hiw-step h3 {
  font-size: 22px;
  margin: 10px 0;
  color: #0f172a;
}

.hiw-step p {
  font-size: 16px;
  color: #475569;
  max-width: 520px;
}

.hiw-step ul {
  list-style: none;
  padding: 0;
  margin-top: 14px;
}

.hiw-step li {
  font-size: 14px;
  color: #334155;
  margin-bottom: 6px;
  padding-left: 14px;
  position: relative;
}

.hiw-step li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #6366f1;
}

/* VALUE STRIP */
.hiw-strip {
  max-width: 1600px;
  margin: 80px auto 0;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.hiw-strip strong {
  display: block;
  font-size: 15px;
  color: #0f172a;
}

.hiw-strip span {
  font-size: 13px;
  color: #64748b;
}

/* CTA */
.hiw-cta-wide {
  padding: 100px 40px;
  display: flex;
  justify-content: center;
  gap: 22px;
}

/* Buttons */
.btn.ghost {
  background: transparent;
  border: 1px solid #e5e7eb;
  padding: 14px 24px;
  border-radius: 12px;
  color: #0f172a;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hiw-row {
    grid-template-columns: 1fr;
  }

  .hiw-strip {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .hiw-strip {
    grid-template-columns: 1fr;
  }
}
