/* ── MUNKAMÓDSZERÜNK OLDAL ────────────────────────
   Világos, „windowsos" stílus – lásd css/base.css palettáját.
   Kizárólag a munkamodszer.html-en fut. */

.work-lead {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.work-section {
  margin-bottom: 34px;
}

.work-section h2 {
  font-family: var(--font-title);
  font-size: clamp(21px, 3.6vw, 27px);
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 14px;
}

.work-section p {
  margin-bottom: 14px;
}

.work-section p:last-child {
  margin-bottom: 0;
}

.work-section p + h2,
.work-section + .work-section {
  margin-top: 0;
}

/* ── KÖNNYŰ FELSOROLÁS ─────────────────────────────
   A .feature-list-nél könnyebb, kevésbé "dobozos" – sok, hosszabb
   listához (8-14 elem), hogy az oldal ne legyen túlzsúfolt kártyáktól. */
.simple-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.simple-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--text-soft);
}

.simple-list li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ── SZAKASZOKRA BONTOTT FEJLESZTÉS – SZÁMOZOTT LISTA ── */
.work-steps {
  list-style: none;
  counter-reset: work-step;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.work-steps li {
  counter-increment: work-step;
  position: relative;
  padding: 12px 16px 12px 54px;
  background: linear-gradient(160deg, var(--accent-soft), var(--surface) 65%);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.work-steps li::before {
  content: counter(work-step);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── KIEMELT DOBOZ (pl. utókövetés bevezető) ─────── */
.work-highlight {
  background: linear-gradient(160deg, var(--accent-soft), var(--surface) 65%);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 22px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.work-highlight p:last-child { margin-bottom: 0; }

@media (max-width: 600px) {
  .work-steps li { padding-left: 48px; }
  .work-steps li::before { left: 10px; width: 22px; height: 22px; font-size: 12px; }
}
