/* PBF Steps / Process Widget — style.css */

.pbf-steps {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Header ── */
.pbf-steps-header {
  text-align: center;
  margin-bottom: 40px;
}

.pbf-steps-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #16a34a;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.pbf-steps-title {
  font-family: 'Syne', 'Montserrat', system-ui, sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  color: #111827;
  line-height: 1.15;
  margin: 0;
  text-transform: uppercase;
}

/* ── Steps row ── */
.pbf-steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.pbf-steps-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
}

/* ── Circle + line wrapper ── */
.pbf-steps-circle-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  position: relative;
}

.pbf-steps-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #111827;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', 'Montserrat', system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

/* ── Connecting lines ── */
.pbf-steps-line {
  flex: 1;
  height: 0;
  border-top: 2px dashed #e8a87c;
  min-width: 20px;
}

.pbf-steps-line--left {
  margin-right: -1px;
}

.pbf-steps-line--right {
  margin-left: -1px;
}

/* ── Step text ── */
.pbf-steps-item-title {
  font-family: 'Syne', 'Montserrat', system-ui, sans-serif;
  font-size: .875rem;
  font-weight: 800;
  color: #111827;
  text-transform: uppercase;
  letter-spacing: .03em;
  margin: 14px 0 6px;
  line-height: 1.3;
}

.pbf-steps-item-desc {
  font-size: .8125rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
  max-width: 240px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .pbf-steps-row {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .pbf-steps-item {
    padding: 0;
    max-width: 300px;
  }

  .pbf-steps-circle-wrap {
    justify-content: center;
  }

  .pbf-steps-line {
    display: none;
  }

  .pbf-steps-circle {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }

  .pbf-steps-item-title {
    font-size: .8125rem;
    margin-top: 10px;
  }

  .pbf-steps-item-desc {
    font-size: .75rem;
  }
}
