/* ==========================================================================
   08 — howto  ("Nasıl başlarım?")
   Values taken verbatim from docs/research/sections/08-howto.html
   ========================================================================== */

.howto {
  background: var(--white);
}

.howto__inner {
  padding-top: 100px;
  padding-bottom: 100px;
}

/* --- head ---------------------------------------------------------------- */
.howto__head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 52px;
}

.howto__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pink);
}

.howto__title {
  font-weight: 800;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 16px 0 12px;
}

.howto__lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  text-wrap: pretty;
}

/* --- steps --------------------------------------------------------------- */
.howto__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.howto__step {
  background: var(--bg-tint);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-card);
  padding: 30px 26px;
}

.howto__num {
  font-weight: 800;
  font-size: 17px;
  color: var(--pink);
}

.howto__step-title {
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  margin: 12px 0 8px;
}

.howto__step-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  text-wrap: pretty;
}

/* --- cta ----------------------------------------------------------------- */
.howto__cta-wrap {
  margin-top: 44px;
  text-align: center;
}

.howto__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--indigo);
  color: #fff;
  text-decoration: none;
  padding: 16px 34px;
  border-radius: var(--r-pill);
  font-size: 16.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all .25s ease;
}

.howto__cta-arrow {
  font-size: 18px;
}

/* --- responsive ----------------------------------------------------------- */
@media (max-width: 860px) {
  /* The original's mobile rules key off literal inline paddings (110/120/130 and
     96/104/90). This section's 100px matches none of them, so it does NOT
     collapse — verified 100px at 390px. */
  .howto__inner {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .howto__grid {
    grid-template-columns: 1fr;
  }
}
