/* How-to sectie met 1240px container en warme stijl */
.jh-howto { position: relative; padding: clamp(44px, 7vw, 96px) 16px; }
.jh-howto__container { max-width: 1240px; margin-inline: auto; }

/* Variants */
.jh-howto--linen { background: #fbf7f1; color: #1f2a1f; }
.jh-howto--forest {
  background: radial-gradient(120% 160% at 20% 0%, rgba(20,40,22,.18), transparent 60%), #0f2814;
  color: #eef3ec;
}

/* Header */
.jh-howto__header { text-align: center; margin-bottom: clamp(24px, 4vw, 42px); }
.jh-howto__eyebrow { text-transform: uppercase; letter-spacing: .12em; opacity: .75; font-size: 12px; margin: 0 0 6px; }
.jh-howto__title { font-size: clamp(28px, 4vw, 44px); line-height: 1.1; letter-spacing: -0.02em; margin: 0; }
.jh-howto__intro { max-width: 70ch; margin: 10px auto 0; opacity: .9; }

/* Grid */
.jh-howto__grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: clamp(16px, 2.4vw, 28px);
  grid-template-columns: repeat(3, minmax(0,1fr));
  counter-reset: steps;
}

/* Cards */
.jh-howto__card {
  background: #fff; border: 1px solid rgba(0,0,0,.06); border-radius: 24px;
  padding: clamp(18px, 2.6vw, 28px);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
  transition: transform .12s ease, box-shadow .2s ease;
}
.jh-howto--forest .jh-howto__card {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
}
.jh-howto__card:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(0,0,0,.14); }

/* Icon */
.jh-howto__iconwrap {
width: 56px;
    height: 56px;
    border-radius: 14px;
    display: grid
;
    place-items: center;
    margin-bottom: 12px;
    background: #476930;
    border: 1px solid rgba(0, 0, 0, .06);
    color: white;
}
.jh-howto--forest .jh-howto__iconwrap { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.2); }
.jh-howto__iconwrap svg { width: 28px; height: 28px; display: block; }
.jh-howto__iconwrap .jh-howto__num { width: 36px; height: 36px; }

/* Text */
.jh-howto__label { font-size: clamp(18px, 1.8vw, 22px); margin: 6px 0 6px; }
.jh-howto__text { opacity: .92; line-height: 1.6; }

/* CTA */
.jh-howto__cta { text-align: center; margin-top: clamp(22px, 3.6vw, 40px); }
.jh-howto__btn {
    display: inline-flex
;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 14px;
    text-decoration: none;
    background: #476930;
    color: #fff;
    border: 1px solid rgba(0, 0, 0, .12);
    box-shadow: 0 10px 22px rgba(31, 61, 31, .18);
    transition: transform .06s 
ease, box-shadow .2s 
ease;
    border-radius: 10000px;
}
.jh-howto__btn:hover { transform: translateY(-1px); box-shadow: 0 14px 26px rgba(31,61,31,.24); }

/* Responsive */
@media (max-width: 1024px) { .jh-howto__grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 640px)  { .jh-howto__grid { grid-template-columns: 1fr; } }
