/* How it works — SellingBox-style numbered cards */
.hiw-hero {
  text-align: center;
  padding: 28px 0 20px;
}
.hiw-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.14);
  border: 1px solid rgba(99, 102, 241, 0.35);
  color: #c7d2fe;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hiw-title {
  font-size: clamp(2.1rem, 4.5vw, 3.1rem);
  line-height: 1.15;
  max-width: 820px;
  margin: 0 auto 14px;
  letter-spacing: -0.03em;
}
.hiw-title em {
  font-style: italic;
  color: #a5b4fc;
}
.hiw-lead {
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.02rem;
  line-height: 1.6;
}
.hiw-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 26px;
}
.hiw-section {
  padding: 28px 0 8px;
  border-top: 1px solid var(--border);
  margin-top: 12px;
}
.hiw-section__head {
  text-align: center;
  margin-bottom: 18px;
}
.hiw-section__head h2 {
  font-size: clamp(1.55rem, 3vw, 2rem);
  margin-bottom: 6px;
}
.hiw-section__head p {
  color: var(--muted);
  font-size: 13px;
}
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 960px) {
  .hiw-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .hiw-steps { grid-template-columns: 1fr; }
}
.hiw-step {
  position: relative;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(255,255,255,0.04), rgba(15,23,42,0.55));
  padding: 16px 14px 14px;
  min-height: 168px;
  overflow: hidden;
}
.hiw-step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  opacity: 0.95;
}
.hiw-step--indigo::before { background: linear-gradient(90deg, #6366f1, #818cf8); }
.hiw-step--cyan::before { background: linear-gradient(90deg, #06b6d4, #22d3ee); }
.hiw-step--green::before { background: linear-gradient(90deg, #10b981, #34d399); }
.hiw-step--amber::before { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.hiw-step--purple::before { background: linear-gradient(90deg, #a855f7, #c084fc); }
.hiw-step--rose::before { background: linear-gradient(90deg, #f43f5e, #fb7185); }
.hiw-step__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.hiw-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #e2e8f0;
}
.hiw-step h3 {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 650;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.hiw-step p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
}
.hiw-why {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 960px) {
  .hiw-why { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .hiw-why { grid-template-columns: 1fr; }
}
.hiw-why-card {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.55);
  padding: 16px 14px;
}
.hiw-why-card h3 {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 650;
  margin: 10px 0 6px;
}
.hiw-why-card p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
}
.hiw-faq .faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.hiw-bottom {
  text-align: center;
  margin: 28px 0 8px;
  padding: 28px 18px;
  border-radius: 20px;
  border: 1px solid rgba(99, 102, 241, 0.28);
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(99,102,241,0.18), transparent 70%),
    rgba(15, 23, 42, 0.65);
}
.hiw-bottom h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 8px;
}
.hiw-bottom p {
  color: var(--muted);
  font-size: 13px;
  max-width: 520px;
  margin: 0 auto;
}
