@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&family=Manrope:wght@500;600;700&display=swap');

:root {
  --green: #0e9b72;
  --green-dark: #0b7b5a;
  --green-soft: #d7efe6;
  --ink: #0b1b15;
  --muted: #667279;
  --card: #ffffff;
  --bg: #f3f6f4;
  --shadow: 0 12px 30px rgba(6, 24, 17, 0.07);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Cairo', 'Manrope', system-ui, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.journey-shell {
  padding: 42px 24px 72px;
  max-width: 1200px;
  margin: auto;
}

.page-header-block {
  margin-bottom: 28px;
}

.page-header-block h1 {
  margin: 6px 0 12px;
  font-size: 32px;
}

.lede {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  color: var(--muted);
  margin-top: 12px;
}

.breadcrumb a {
  color: var(--green-dark);
  font-weight: 700;
}

.kicker {
  margin: 0;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--green-dark);
  font-weight: 700;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  background: var(--green);
  color: #fff;
  line-height: 1;
}

.pill.soft {
  background: var(--green-soft);
  color: var(--green-dark);
}

.muted {
  color: var(--muted);
}

.journey-overview {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 18px;
  margin-bottom: 26px;
}

.hero-block {
  background: linear-gradient(135deg, #0b1324, #0f2833);
  color: #fff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hero-block h2 {
  margin: 8px 0 12px;
  font-size: 26px;
}

.hero-block p {
  margin: 0 0 10px;
  color: #e2e8ec;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
}

.checklist li {
  position: relative;
  padding-inline-start: 26px;
  color: #f3f7fb;
  line-height: 1.6;
}

.checklist li::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #8ae2c3;
  background: rgba(138, 226, 195, 0.2);
}

.content-section {
  background: var(--card);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.content-section h3 {
  margin: 4px 0 10px;
  font-size: 20px;
}

.content-section p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.6;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.journey-timeline {
  background: var(--card);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.timeline-head h3 {
  margin: 6px 0 10px;
  font-size: 22px;
}

.timeline-head .muted {
  margin: 0 0 12px;
  line-height: 1.6;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.journey-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  flex-direction: row;
}

.step-marker {
  width: 56px;
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  justify-items: center;
  align-self: stretch;
  order: 1;
}

.journey-step .step-card {
  order: 2;
}

html[dir='rtl'] .journey-step .step-marker {
  order: 1;
}

html[dir='rtl'] .journey-step .step-card {
  order: 2;
}

.journey-step {
  align-items: stretch;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-row: 2;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 700;
  box-shadow: inset 0 0 0 2px rgba(14, 155, 114, 0.15);
}

.step-line {
  width: 3px;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(14, 155, 114, 0.3), rgba(14, 155, 114, 0));
  align-self: stretch;
  grid-row: 3;
}

.journey-step:last-child .step-line {
  display: none;
}

.step-card {
  flex: 1;
  background: #f8fbf9;
  border-radius: 14px;
  padding: 14px;
  border: 1px solid #e7f0ec;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.step-label {
  margin: 0;
  font-size: 13px;
  color: var(--green-dark);
  font-weight: 700;
}

.step-card h4 {
  margin: 6px 0 8px;
  font-size: 20px;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 960px) {
  .journey-overview {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .journey-shell {
    padding-inline: 16px;
  }

  .page-header-block h1 {
    font-size: 26px;
  }

  .hero-block,
  .content-section,
  .journey-timeline {
    padding: 16px;
  }
}
