.booking-intro {
  text-align: center;
  padding-bottom: 1rem;
}
.booking-intro h1 { font-size: clamp(1.8rem, 5vw, 2.75rem); }
.booking-intro__lead { max-width: 38em; margin-left: auto; margin-right: auto; }

.test-mode-badge {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffb347;
  border: 1px solid #ffb34755;
  background: #ffb34712;
  border-radius: 999px;
  padding: 0.4em 1em;
}

/* ---- Stepper ---- */
.booking__stepper {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  padding: 0 1rem;
}
.booking__stepper li {
  flex: 1;
  text-align: center;
  font-size: 0.8rem;
  color: #6b7386;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #1a2033;
  position: relative;
}
.booking__stepper li.is-active,
.booking__stepper li.is-done {
  color: #e8ecf4;
  border-bottom-color: #6c5ce7;
}

/* ---- Panel ---- */
.booking__panel {
  max-width: 720px;
  margin: 0 auto;
  background: #10162663;
  border: 1px solid #1a2033;
  border-radius: 20px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
.booking__step h2 { font-size: 1.3rem; margin-bottom: 1.25rem; }

/* ---- Services ---- */
.service-grid {
  display: grid;
  gap: 1rem;
}
.service-card {
  display: block;
  width: 100%;
  text-align: left;
  background: #0d1220;
  border: 1px solid #1a2033;
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  color: inherit;
}
.service-card:hover { border-color: #6c5ce780; }
.service-card.is-selected {
  border-color: #6c5ce7;
  box-shadow: 0 0 0 1px #6c5ce7;
}
.service-card__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}
.service-card__head h3 { margin: 0; font-size: 1.05rem; font-family: 'Space Grotesk', sans-serif; }
.service-card__price { color: #00d4ff; font-weight: 600; white-space: nowrap; }
.service-card p { margin: 0.4em 0 0; font-size: 0.9rem; }

/* ---- Date/time ---- */
.datetime-grid {
  display: grid;
  gap: 1.5rem;
}
.calendar {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(78px, 1fr));
  gap: 0.6rem;
}
.day-chip {
  background: #0d1220;
  border: 1px solid #1a2033;
  border-radius: 12px;
  padding: 0.75em 0.5em;
  text-align: center;
  cursor: pointer;
  color: inherit;
}
.day-chip__dow { display: block; font-size: 0.72rem; color: #6b7386; text-transform: uppercase; }
.day-chip__num { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 1.2rem; margin-top: 0.15em; }
.day-chip:hover:not(:disabled) { border-color: #6c5ce780; }
.day-chip.is-selected { border-color: #6c5ce7; box-shadow: 0 0 0 1px #6c5ce7; }
.day-chip:disabled { opacity: 0.35; cursor: not-allowed; }

.timeslots { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.timeslots__placeholder { color: #6b7386; font-size: 0.9rem; }
.slot-btn {
  background: #0d1220;
  border: 1px solid #1a2033;
  border-radius: 999px;
  padding: 0.5em 1.2em;
  cursor: pointer;
  color: inherit;
  font-size: 0.9rem;
}
.slot-btn:hover:not(:disabled) { border-color: #6c5ce780; }
.slot-btn.is-selected { border-color: #6c5ce7; background: #6c5ce71a; }
.slot-btn:disabled { opacity: 0.3; text-decoration: line-through; cursor: not-allowed; }

/* ---- Form ---- */
.form-row { margin-bottom: 1.1rem; display: flex; flex-direction: column; gap: 0.4rem; }
.form-row label { font-size: 0.9rem; color: #aab2c5; }
.form-row input, .form-row textarea {
  background: #0d1220;
  border: 1px solid #1a2033;
  border-radius: 10px;
  padding: 0.7em 0.9em;
  color: #e8ecf4;
  font: inherit;
}
.form-row input:focus, .form-row textarea:focus { border-color: #6c5ce7; outline: none; }
.form-row--honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.booking-summary {
  background: #0d1220;
  border: 1px solid #1a2033;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.92rem;
  color: #aab2c5;
}
.booking-summary strong { color: #e8ecf4; }

/* ---- Confirmation ---- */
.booking__confirmation p { color: #aab2c5; }
.notice {
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  font-size: 0.9rem;
}
.notice--info {
  background: #00d4ff12;
  border: 1px solid #00d4ff40;
  color: #cde9f2;
}
.notice--info strong { display: block; margin-bottom: 0.35em; color: #e8ecf4; }
.notice--info p { margin: 0; color: #b7c4d6; }

/* ---- Nav ---- */
.booking__nav { margin-top: 1.5rem; }
.booking__nav:empty { margin: 0; }
