/* =========================================================================
   StoryBrand 1-2-3 Plan section
   ========================================================================= */
.plan {
  background: #fff;
  padding: var(--section-y) 0;
  position: relative;
}
.plan-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.plan-head .eyebrow { justify-content: center; display: inline-flex; }
.plan-head h2 {
  font-size: clamp(36px, 5vw, 60px);
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  line-height: 1;
}
.plan-head h2 em { font-style: italic; color: var(--gold-warm); font-weight: 400; font-family: "Playfair Display", serif; }
.plan-head p { color: var(--body-soft); font-size: 18px; }

.plan-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 860px) { .plan-steps { grid-template-columns: 1fr; gap: 40px; } }

/* connector line between steps */
.plan-steps::before {
  content: "";
  position: absolute;
  top: 56px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 16px);
  z-index: 0;
}
@media (max-width: 860px) { .plan-steps::before { display: none; } }

.plan-step {
  text-align: center;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}
.plan-step .num {
  width: 112px;
  height: 112px;
  margin: 0 auto 28px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-size: 48px;
  letter-spacing: -0.04em;
  box-shadow: 0 12px 32px rgba(10,37,64,0.18);
  position: relative;
}
.plan-step .num::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 999px;
  border: 1.5px dashed rgba(253,185,19,0.4);
}
.plan-step .ico {
  position: absolute;
  bottom: -6px;
  right: 50%;
  transform: translateX(56px);
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 999px;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(10,37,64,0.2);
}
.plan-step .ico svg { width: 18px; height: 18px; }
.plan-step h3 {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--navy);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.plan-step p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--body-soft);
  margin: 0;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

.plan-cta {
  text-align: center;
  margin-top: 72px;
}
.plan-cta .small {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  color: var(--body-soft);
  letter-spacing: 0.3px;
}
