.journey__hero {
  padding-top: calc(var(--header-h) + clamp(50px, 9vw, 110px));
  padding-bottom: clamp(40px, 7vw, 80px);
  background:
    radial-gradient(900px 520px at 78% -10%, rgba(53,160,94,.1), transparent 60%),
    var(--paper);
  text-align: center;
}
.journey__hero-inner { max-width: 780px; margin-inline: auto; }
.journey__title { font-size: clamp(2.8rem, 8vw, 5.6rem); line-height: 1; margin: 16px 0 24px; letter-spacing: -.02em; }
.journey__title em { font-style: italic; color: var(--herb); }
.journey__sub { max-width: 60ch; margin-inline: auto; color: var(--body); }

/* journey rail + chapters */
.journey__body { background: var(--paper); position: relative; }
.journey__body .wrap { position: relative; }
.journey__rail {
  position: absolute;
  left: 27px; top: 10px; bottom: 10px;
  width: 2px;
  background: linear-gradient(var(--herb), var(--amber), var(--terra));
  opacity: .3;
}
.journey__chapters { display: flex; flex-direction: column; gap: clamp(28px, 5vw, 54px); }

.chapter { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 24px; align-items: start; }
.chapter__marker {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--white);
  border: 2px solid var(--accent, var(--herb));
  font-family: var(--serif);
  font-size: 1.4rem; font-weight: 600;
  color: var(--accent, var(--herb));
  z-index: 1;
  box-shadow: 0 0 0 6px var(--paper);
}
.chapter--free { --accent: var(--herb); }
.chapter--paid { --accent: var(--amber); }
.chapter--ongoing { --accent: var(--terra); }

.chapter__card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 30px 34px;
  box-shadow: var(--sh-sm);
}
.chapter__tag {
  display: inline-block; font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); background: color-mix(in srgb, var(--accent) 12%, transparent);
  padding: 5px 12px; border-radius: 100px; margin-bottom: 14px;
}
.chapter__title { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 14px; }
.chapter__body { color: var(--body); line-height: 1.65; font-size: 1.02rem; margin-bottom: 20px; max-width: 60ch; }
.chapter__points { display: flex; flex-direction: column; gap: 11px; }
.chapter__points li { display: flex; gap: 10px; font-size: .96rem; color: var(--ink); }
.chapter__check { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }

/* steps at a glance */
.journey__steps { background: var(--paper-2); }
.journey__steps-h { text-align: center; font-size: var(--fs-h2); margin-bottom: clamp(36px, 5vw, 52px); }
.journey__steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.journey__step { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px 22px; }
.journey__step-n { font-family: var(--serif); font-size: 1.8rem; font-weight: 600; color: var(--herb); }
.journey__step h3 { font-size: 1.3rem; margin: 8px 0 10px; }
.journey__step-tag { font-size: .8rem; color: var(--muted); }

/* closing */
.journey__closing {
  padding-block: clamp(70px, 10vw, 120px);
  text-align: center;
  background: radial-gradient(700px 400px at 50% 0%, rgba(53,160,94,.14), transparent 65%), var(--herb-deep);
  color: #fff;
}
.journey__closing-h { color: #fff; font-size: clamp(2rem, 5vw, 3.4rem); margin-bottom: 28px; }
.journey__closing-ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.journey__closing .btn--wa { --btn-bg: rgba(255,255,255,.08); --btn-fg: #fff; border-color: rgba(255,255,255,.28); }
.journey__closing .btn--wa:hover { background: rgba(255,255,255,.16); border-color: #fff; color: #fff; }

@media (max-width: 780px) {
  .journey__rail { display: none; }
  .chapter { grid-template-columns: 44px 1fr; gap: 16px; }
  .chapter__marker { width: 44px; height: 44px; font-size: 1.1rem; box-shadow: none; }
  .chapter__card { padding: 24px; }
  .journey__steps-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 460px) {
  .journey__steps-grid { grid-template-columns: 1fr; }
}
