/* ═══════════════════ METHODOLOGY 2 — Sticky Left + Scroll Right ═══════════════════ */
#methodology2 {
  padding: 120px 0;
  background: radial-gradient(ellipse at 30% 20%, #f0f7ff 0%, #f8fafc 50%, #fafbfd 100%);
}

.m2-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}

/* ── Left: Sticky title ── */
.m2-sticky {
  position: sticky;
  top: 120px;
}
.m2-sticky .section-title { margin-bottom: 20px; }

.m2-lead {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.85;
  color: #64748b;
  margin-bottom: 40px;
}

/* Progress bar */
.m2-progress { margin-top: 8px; }
.m2-progress-track {
  width: 100%;
  height: 3px;
  background: #e2e8f0;
  border-radius: 2px;
  overflow: hidden;
}
.m2-progress-fill {
  width: 20%;
  height: 100%;
  background: linear-gradient(to right, var(--navy, #122f51), #3b82f6);
  border-radius: 2px;
  transition: width 0.4s ease;
}
.m2-progress-label {
  font-family: 'Questrial', sans-serif;
  font-size: 11px;
  letter-spacing: .15em;
  color: #94a3b8;
  margin-top: 10px;
}

/* ── Right: Steps ── */
.m2-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.m2-step {
  padding: 36px 0;
  opacity: 0.45;
  transition: opacity 0.5s ease;
}
.m2-step.is-active {
  opacity: 1;
}

/* Body */
.m2-step-body {}

.m2-step-label {
  font-family: 'Questrial', sans-serif;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 8px;
  transition: color 0.4s ease;
}
.m2-step.is-active .m2-step-label { color: #2a5a94; }

.m2-step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0 0 12px;
}

.m2-step-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #64748b;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.4s ease, margin 0.4s ease;
  margin-bottom: 0;
}
.m2-step.is-active .m2-step-desc {
  max-height: 200px;
  opacity: 1;
  margin-bottom: 16px;
}


/* ── Mobile ── */
@media (max-width: 860px) {
  #methodology2 { padding: 80px 0; }
  .m2-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 24px;
  }
  .m2-sticky {
    position: relative;
    top: auto;
    text-align: center;
  }
  .m2-progress { display: none; }
  .m2-step {
    padding: 20px 0;
    cursor: pointer;
  }
  .m2-step-title { font-size: 1.2rem; }
}
