/* ============================================================
   Circi — How It Works (lifecycle track) section.
   Scoped under .lc. Poppins; navy/terracotta/sage tokens.
   ============================================================ */

.lc {
  position: relative;
  padding: 80px 0 96px;
  background: var(--surface);
  border-top: 4px solid var(--navy);
}
.lc .wrap { max-width: 1480px; }

.lc-header { text-align: center; margin-bottom: 64px; }
.lc-kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px;
  color: var(--teal-ink);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  margin-bottom: 18px;
}
.lc-kicker::before, .lc-kicker::after {
  content:""; width: 24px; height: 1px; background: var(--teal); opacity: 0.55;
}
.lc-heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.08;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 16px;
  letter-spacing: -0.028em;
  text-wrap: balance;
}
.lc-heading .muted { color: var(--teal); font-weight: 400; }
.lc-sub {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 560px;
  margin: 0 auto;
  font-weight: 400;
  text-wrap: pretty;
}

/* Track */
.lc-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: flex-start;
}
.lc-track::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 1.5px;
  background: repeating-linear-gradient(
    to right,
    rgba(196,86,42,0.35) 0,
    rgba(196,86,42,0.35) 6px,
    transparent 6px,
    transparent 12px
  );
  z-index: 0;
}

.lc-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
}
.lc-node {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid rgba(196,86,42,0.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  position: relative;
  box-shadow: 0 4px 16px rgba(42,69,111,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.lc-node svg { color: var(--teal); }
.lc-step:hover .lc-node {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(196,86,42,0.18);
}
.lc-num {
  position: absolute;
  top: -6px; right: -6px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.lc-step-label {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.lc-step-desc {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0;
  max-width: 220px;
}

/* Outcome strip */
.lc-outcome {
  margin-top: 56px;
  padding: 22px 28px;
  background: #FAF6F0;
  border: 1px solid rgba(61,37,29,0.12);
  border-radius: 14px;
  box-shadow: 0 10px 26px -18px rgba(61,37,29,0.35);
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.lc-outcome-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--teal);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lc-outcome-text {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--navy);
  font-weight: 500;
  margin: 0;
}
.lc-outcome-text strong { color: var(--teal); font-weight: 600; }

@media (max-width: 820px) {
  .lc-track { grid-template-columns: 1fr; gap: 32px; max-width: 420px; margin: 0 auto; }
  .lc-track::before {
    top: 12.5%; bottom: 12.5%;
    left: 31px; right: auto;
    width: 1.5px; height: auto;
    background: repeating-linear-gradient(
      to bottom,
      rgba(196,86,42,0.35) 0,
      rgba(196,86,42,0.35) 6px,
      transparent 6px,
      transparent 12px
    );
  }
  .lc-step { flex-direction: row; align-items: center; text-align: left; gap: 18px; padding: 0; }
  .lc-node { margin-bottom: 0; flex-shrink: 0; }
  .lc-step-desc { max-width: none; }
}
@media (max-width: 720px) {
  .lc { padding: 56px 0 64px; }
  .lc-outcome { flex-direction: column; text-align: center; }
}
