/* LOCKED FIXES — Process + review/footer CTAs only.
   Do not use this file to alter unrelated sections. */

/* PROCESS — informational steps, intentionally static */
.process-step::after,
.process-step:hover::after {
  content: none;
  display: none;
}

.process-step {
  cursor: default;
}

/* REVIEW FORM — replace browser-native submit appearance */
.testimonial-form > button[type="submit"] {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  width: auto;
  min-height: 48px;
  margin: 2px 0 0;
  padding: 13px 20px;
  border: 1px solid var(--cream);
  border-radius: 0;
  background: var(--cream);
  color: var(--dark);
  font: 800 12px/1 var(--heading);
  letter-spacing: .01em;
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}

.testimonial-form > button[type="submit"]:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--cream);
  transform: translateY(-2px);
}

.testimonial-form > button[type="submit"]:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
}

.testimonial-form > button[type="submit"]:disabled {
  opacity: .55;
  cursor: not-allowed;
  transform: none;
}

/* FOOTER CTA — stable dimensions and alignment on all breakpoints */
.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 48px;
  padding: 13px 16px;
  margin-top: 30px;
  gap: 12px;
  box-sizing: border-box;
  white-space: nowrap;
}

.footer-cta span:first-child {
  display: block;
}

.footer-cta-icon {
  flex: 0 0 19px;
}

@media (max-width: 560px) {
  .testimonial-form > button[type="submit"] {
    width: min(100%, 280px);
  }

  .footer-cta {
    width: auto;
    max-width: 100%;
  }
}

/* PROCESS — MOBILE LAYOUT LOCK
   Mobile only: restore the original vertical reading order:
   step label → title → explanatory paragraph.
   The title uses the full available width so it can breathe naturally
   (normally two lines, three only when the wording requires it).
   Desktop/tablet layout remains untouched. */
@media (max-width: 560px) {
  .process-steps .process-step,
  .process-steps .process-step:not(:first-child) {
    display: block;
    min-height: 0;
    padding: 25px 0 28px;
  }

  .process-steps .process-step-number {
    display: block;
    margin-bottom: 34px;
  }

  .process-steps .process-step h3 {
    display: block;
    width: 100%;
    max-width: none;
    margin: 0 0 18px;
    font-size: clamp(29px, 8.2vw, 38px);
    line-height: .96;
  }

  .process-steps .process-step p {
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
  }
}
