/* StartTalking — workflow prototype
   Based on Caria's warm cream + coral palette, with StartTalking brand colors. */

:root {
  /* Surface */
  --bg-page: #f1f5f9;          /* page bg */
  --bg-page-soft: #f8fafc;     /* lighter neutral */
  --bg-card: #ffffff;          /* white card */
  --bg-slot: #eef2f8;          /* unselected time slot */
  --bg-tag:  #e9eef6;          /* chip / specialty tag */

  /* Ink */
  --ink-900: #0e2238;          /* heading navy */
  --ink-800: #142a44;
  --ink-700: #2a3f5b;
  --ink-500: #6b7a90;
  --ink-400: #8e9aab;

  /* Brand */
  --brand-green: #1f9d55;      /* "Start" */
  --brand-blue:  #2563ff;      /* "Talking" + primary CTA on step 1 */
  --brand-blue-deep: #1d4ed8;
  --coral: #ff6f5b;            /* primary CTA elsewhere */
  --coral-deep: #ec5a47;
  --star: #ff7a3d;

  /* Avatars */
  --av-mint:    #7ed5b8;
  --av-peach:   #f9bea0;
  --av-lilac:   #d4b0ec;
  --av-leaf:    #aedb95;
  --av-sky:     #a9c8ee;
  --av-butter:  #f3d27a;

  --radius-card: 22px;
  --radius-pill: 999px;
  --radius-btn: 14px;
  --shadow-card: 0 6px 30px rgba(14, 34, 56, 0.06);
  --shadow-pop:  0 14px 40px rgba(14, 34, 56, 0.12);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  background: #f1f5f9;
  color: var(--ink-900);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* Headlines use Nunito (rounded, friendly) — matches screenshots. */
.serif, h1, h2, h3 {
  font-family: 'Nunito', 'DM Sans', system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink-900);
}

button { font-family: inherit; cursor: pointer; border: none; }
input, select { font-family: inherit; }

/* ---------- Top nav ---------- */
.topnav {
  background: #ffffff;
  border-bottom: 1px solid #e5eaf2;
}
.topnav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; flex-direction: column; gap: 2px; align-items: flex-start; }
.brand-logo {
  width: 260px;
  height: auto;
  aspect-ratio: 432 / 55;
  background-image: url('assets/logo.png?v=4');
  background-size: contain;
  background-position: left center;
  background-repeat: no-repeat;
  display: block;
}
.brand-by {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 13px;
  color: #6c7a8a;
  margin-left: 4px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 17px;
  font-weight: 500;
  color: #4a5b71;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-links a.active { color: var(--brand-blue); font-weight: 600; }
.nav-links a:hover { color: var(--ink-900); }

/* ---------- Page container ---------- */
.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 32px 96px;
}
.page-wide {
  max-width: 1240px;
  margin: 0 auto;
  padding: 48px 40px 96px;
}

/* ---------- Card (step 1 white card) ---------- */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 44px 56px 40px;
}

/* ---------- Step header (icon + title) ---------- */
.step-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
}
.step-icon {
  width: 52px;
  height: 52px;
  background: var(--brand-blue);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 6px 16px rgba(37, 99, 255, 0.32);
}
.step-head h2 {
  font-size: 30px;
  line-height: 1.1;
  margin: 0;
}

/* ---------- Form ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 24px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.01em;
  color: var(--ink-900);
}
.field input,
.field select {
  height: 54px;
  border-radius: var(--radius-btn);
  border: 1.5px solid #cbd5e1;
  background: white;
  padding: 0 18px;
  font-size: 16px;
  color: var(--ink-900);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.field input::placeholder { color: #cbd5e1; }
.field input:focus,
.field select:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 255, 0.12);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230e2238' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

/* ---------- Footer (step + stepper + CTA) ---------- */
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid #e2e8f0;
  position: relative;
}
.step-count {
  font-size: 14px;
  color: #6c7a8a;
  font-weight: 500;
}
.step-count b { color: var(--ink-900); font-weight: 800; }

.stepper {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  background: var(--ink-900);
  color: rgba(255,255,255,0.55);
  border-radius: var(--radius-pill);
  padding: 6px;
  gap: 4px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(14, 34, 56, 0.18);
}
.stepper .step {
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: all 220ms ease;
}
.stepper .step.active {
  background: white;
  color: var(--ink-900);
  font-weight: 700;
}
.stepper .step.done {
  color: rgba(255,255,255,0.85);
}

/* CTA buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  border-radius: var(--radius-btn);
  padding: 14px 26px;
  transition: transform 120ms ease, box-shadow 160ms ease, background 160ms ease;
  letter-spacing: -0.01em;
}
.btn-primary {
  background: var(--brand-blue);
  color: white;
  box-shadow: 0 10px 22px rgba(37, 99, 255, 0.28);
}
.btn-primary:hover { background: var(--brand-blue-deep); transform: translateY(-1px); }
.btn-primary:disabled { background: #b6c4df; cursor: not-allowed; box-shadow: none; transform: none; }

.btn-coral {
  background: var(--coral);
  color: var(--ink-900);
  border-radius: var(--radius-pill);
  font-weight: 700;
}
.btn-coral:hover { background: var(--coral-deep); color: white; }

.btn-ghost {
  background: transparent;
  color: var(--ink-700);
  font-weight: 600;
}
.btn-ghost:hover { color: var(--ink-900); }

/* ---------- Step 2: Choose therapist ---------- */
.page-head {
  margin-bottom: 36px;
}
.page-head h1 {
  font-size: 60px;
  line-height: 1.02;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.page-head p {
  font-size: 19px;
  color: #4a5b71;
  margin: 0;
  max-width: 720px;
}

.therapist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.therapist-card {
  background: white;
  border-radius: 26px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 160ms ease, box-shadow 160ms ease;
  border: 2px solid transparent;
}
.therapist-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-pop);
}
.therapist-card.selected {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(255,111,91,0.15);
}

.t-head { display: flex; gap: 18px; align-items: flex-start; }
.avatar {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--ink-900);
  flex: 0 0 auto;
}
.avatar.lg { width: 56px; height: 56px; border-radius: 14px; font-size: 18px; }
.t-meta { flex: 1; min-width: 0; }
.t-meta h3 {
  font-size: 24px;
  margin: 0 0 4px;
  line-height: 1.15;
}
.t-credentials {
  font-size: 15px;
  color: #6c7a8a;
  margin: 0 0 8px;
  font-weight: 500;
}
.rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-900);
}
.rating svg { color: var(--star); }

.t-bio {
  font-size: 15.5px;
  line-height: 1.5;
  color: #4a5b71;
  margin: 0;
}

.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  background: var(--bg-tag);
  color: var(--ink-900);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
}

.therapist-card .btn-coral {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  margin-top: auto;
}

/* Therapist info rows (state, language) */
.t-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.t-info-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #f7f9fc;
  border-radius: 12px;
}
.t-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #eef2f9;
  color: var(--brand-blue);
  flex: 0 0 auto;
}
.t-info-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6c7a8a;
  margin-right: auto;
}
.t-info-value {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink-900);
  text-align: right;
  max-width: 60%;
  word-break: break-word;
}

/* ---------- Step 2 v2 — filter card layout ---------- */
.match-bg {
  background:
    linear-gradient(180deg, #eaf5f3 0%, #f1f8f7 40%, #eef6f5 100%);
  min-height: calc(100vh - 100px);
}
.match-shell { max-width: 1320px; margin: 0 auto; padding: 36px 40px 80px; }

.filter-card {
  background: white;
  border-radius: 28px;
  padding: 32px 36px;
  box-shadow: 0 8px 40px rgba(15, 23, 42, 0.06);
  border: 1px solid #eef0f5;
}

.filter-top {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 26px;
}
.bhs-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding-right: 8px;
}
.bhs-logo .star {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  color: #f6a623;
}
.bhs-logo .word {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 30px;
  color: #0b2545;
  letter-spacing: -0.02em;
}
.bhs-logo .word sup {
  font-size: 10px;
  vertical-align: super;
  font-weight: 700;
  color: #6c7a8a;
  margin-left: 2px;
}

.search-bar {
  flex: 1;
  position: relative;
}
.search-bar input {
  width: 100%;
  height: 56px;
  background: #f5f6fa;
  border: 1.5px solid transparent;
  border-radius: 16px;
  padding: 0 20px 0 54px;
  font-size: 16px;
  color: #0b2545;
  outline: none;
  transition: all 160ms ease;
}
.search-bar input:focus { background: white; border-color: var(--brand-blue); }
.search-bar input::placeholder { color: #a3acba; }
.search-bar .search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #6c7a8a;
}

.filter-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid #eef0f5;
  margin-bottom: 22px;
}
.filter {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.filter label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #6c7a8a;
  text-transform: uppercase;
}
.filter .control {
  position: relative;
  background: #f5f6fa;
  border-radius: 14px;
  height: 52px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 8px;
  cursor: pointer;
  transition: background 160ms ease, box-shadow 160ms ease;
  border: 1.5px solid transparent;
}
.filter .control:hover { background: #eef1f7; }
.filter .control.has-value { background: white; border-color: #e1e6f0; }
.filter .control select {
  appearance: none;
  background: transparent;
  border: none;
  outline: none;
  font-size: 15px;
  color: #0b2545;
  flex: 1;
  min-width: 0;
  cursor: pointer;
  padding: 0;
}
.filter .control .placeholder {
  color: #a3acba;
  font-size: 15px;
  flex: 1;
}
.filter .control .caret {
  color: #6c7a8a;
  flex: 0 0 auto;
}
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1px solid #e1e6f0;
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 13px;
  font-weight: 600;
  color: #0b2545;
  position: relative;
  z-index: 2;
}
.filter-chip .x {
  color: #6c7a8a;
  cursor: pointer;
  font-weight: 700;
}
.filter-chip .x:hover { color: var(--coral-deep); }

/* Payment options */
.payment-block { margin-bottom: 26px; }
.payment-block .label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #6c7a8a;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.pill-row { display: flex; gap: 12px; flex-wrap: wrap; }
.pay-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f5f6fa;
  border: 1.5px solid transparent;
  border-radius: 14px;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 700;
  color: #0b2545;
  transition: all 160ms ease;
}
.pay-pill .icn { color: #6c7a8a; display: flex; }
.pay-pill:hover { background: #eef1f7; }
.pay-pill.active {
  background: #f4eeff;
  border-color: #c8b3ff;
  color: #6b3ce5;
}
.pay-pill.active .icn { color: #6b3ce5; }
.pay-pill .check {
  color: #6b3ce5;
  display: none;
}
.pay-pill.active .check { display: flex; }

/* Action row */
.action-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}
.btn-search {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand-blue);
  color: white;
  border-radius: 14px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 10px 22px rgba(37, 99, 255, 0.28);
  transition: all 160ms ease;
}
.btn-search:hover { background: var(--brand-blue-deep); transform: translateY(-1px); }

.btn-reset {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f5f6fa;
  color: #4a5b71;
  border-radius: 14px;
  padding: 14px 22px;
  font-weight: 600;
  font-size: 15px;
  transition: all 160ms ease;
}
.btn-reset:hover { background: #eef1f7; color: #0b2545; }

.filter-count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #4a5b71;
}
.filter-count .num { color: #0b2545; font-weight: 800; }
.filter-count svg { color: var(--brand-blue); }

/* Results banner */
.results-banner {
  margin-top: 28px;
  margin-bottom: 24px;
  background:
    linear-gradient(90deg, rgba(225,235,255,0.7) 0%, rgba(230,247,238,0.6) 70%, rgba(255,243,232,0.5) 100%);
  border: 1px solid #e7ecf3;
  border-radius: 20px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.rb-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--brand-blue);
  color: white;
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
  box-shadow: 0 8px 18px rgba(37,99,255,0.28);
}
.rb-body { flex: 1; }
.rb-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #0b2545;
}
.rb-title .num { color: var(--brand-blue); }
.rb-sub { font-size: 14.5px; color: #6c7a8a; margin-top: 2px; }
.rb-verified {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #1f9d55;
  white-space: nowrap;
  flex: 0 0 auto;
}
.rb-verified .vchk {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #1f9d55;
  color: white;
  display: flex; align-items: center; justify-content: center;
}

/* Therapist grid v2 — 3 cols on this layout */
.therapist-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 1100px) {
  .therapist-grid-v2 { grid-template-columns: repeat(2, 1fr); }
  .filter-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .therapist-grid-v2 { grid-template-columns: 1fr; }
  .filter-row { grid-template-columns: 1fr; }
  .filter-top { flex-direction: column; align-items: stretch; }
  .match-shell { padding: 20px; }
  .results-banner { flex-direction: column; align-items: flex-start; }
}

/* No-results state */
.empty {
  background: white;
  border: 1px dashed #d8dee9;
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  color: #6c7a8a;
}
.empty h4 { font-family: 'Nunito',sans-serif; font-weight: 800; color: #0b2545; font-size: 20px; margin: 0 0 6px; }

/* Footer stepper used outside .card */
.float-footer {
  margin-top: 36px;
  background: white;
  border-radius: 22px;
  padding: 22px 28px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* ---------- Step 3: Booking ---------- */
.booking-card {
  background: white;
  border-radius: 28px;
  padding: 32px 36px 36px;
  box-shadow: var(--shadow-card);
}
.booking-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 28px;
}
.booking-head .label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #6c7a8a;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.booking-head h2 { font-size: 24px; margin: 0; }

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #6c7a8a;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section-label svg { width: 16px; height: 16px; }

/* Calendar */
.cal {
  background: var(--bg-slot);
  border-radius: 22px;
  padding: 22px;
}
.cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.cal-head .month {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--ink-900);
}
.cal-nav {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-900);
}
.cal-nav:hover { background: rgba(14,34,56,0.06); }
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-dow {
  font-size: 12px;
  font-weight: 700;
  color: #6c7a8a;
  text-align: center;
  padding: 8px 0 4px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-900);
  border-radius: 12px;
  background: transparent;
  transition: background 140ms ease;
}
.cal-day:hover:not(:disabled) { background: rgba(14, 34, 56, 0.06); }
.cal-day.muted { color: #cbd5e1; cursor: default; }
.cal-day.selected {
  background: white;
  border: 2px solid var(--coral);
  box-shadow: 0 0 0 3px rgba(37, 99, 255, 0.5);
  color: var(--ink-900);
}
.cal-day:disabled { cursor: not-allowed; }

/* Time slots */
.slots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-content: start;
}
.slot {
  background: var(--bg-slot);
  border-radius: 16px;
  padding: 18px;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-900);
  text-align: center;
  transition: all 160ms ease;
}
.slot:hover:not(.selected) { background: #ece4d0; }
.slot.selected {
  background: var(--ink-900);
  color: white;
}

.confirm-cta {
  width: 100%;
  padding: 20px;
  font-size: 17px;
  margin-top: 28px;
}

/* ---------- Step 4: Confirm ---------- */
.confirm-card {
  background: white;
  border-radius: 28px;
  padding: 56px 64px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.check-circle {
  width: 88px; height: 88px;
  background: #e5f6ea;
  color: #1f9d55;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.confirm-card h1 { font-size: 44px; margin: 0 0 12px; }
.confirm-card .lede { color: #4a5b71; font-size: 18px; margin: 0 0 32px; }

.summary {
  background: var(--bg-page);
  border-radius: 20px;
  padding: 28px;
  text-align: left;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 28px;
  margin-bottom: 28px;
}
.summary .row { display: flex; flex-direction: column; gap: 4px; }
.summary .row .k {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #6c7a8a;
}
.summary .row .v {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--ink-900);
}
.summary .row.full { grid-column: 1 / -1; }

.confirm-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

/* ---------- Transitions ---------- */
.fade-in { animation: fadeIn 280ms cubic-bezier(.2,.7,.2,1) both; }
@keyframes fadeIn {
  from { opacity: 1; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Mobile */
@media (max-width: 880px) {
  .form-grid, .therapist-grid, .booking-grid, .summary { grid-template-columns: 1fr; }
  .page-head h1 { font-size: 40px; }
  .card { padding: 28px 22px; }
  .topnav-inner { padding: 18px 22px; }
  .nav-links { display: none; }
  .stepper { font-size: 11px; }
  .stepper .step { padding: 8px 12px; }
}
