/* =========================================================
   BOOK SESSION PAGE — Supplemental Styles
   Inherits from styles.css base tokens
   ========================================================= */

/* ─── PAGE BASE ─────────────────────────────────────────── */
body.book-page {
  background: var(--navy);
}

/* Fix nav link color */
.nav-brand {
  text-decoration: none;
  color: var(--cream);
}

/* ─── SLOTS BADGE ───────────────────────────────────────── */
.nav-meta {
  display: flex;
  align-items: center;
}

.slots-badge {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--border-subtle);
  color: var(--gold-light);
  padding: 0.4rem 1rem 0.4rem 1.5rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pulse-ring {
  position: absolute;
  left: 0.7rem;
  width: 8px;
  height: 8px;
}

.pulse-ring::before,
.pulse-ring::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #e74c3c;
  border-radius: 50%;
}

.pulse-ring::after {
  animation: pulse-ring-anim 1.5s ease-out infinite;
  opacity: 0;
}

@keyframes pulse-ring-anim {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* ─── BOOK HERO ─────────────────────────────────────────── */
.book-hero {
  position: relative;
  padding: 9rem 0 5rem;
  overflow: hidden;
  text-align: center;
}

.book-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(201, 168, 76, 0.14) 0%, transparent 65%),
    linear-gradient(180deg, #0a1628 0%, var(--navy) 100%);
}

.book-hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.book-hero-content {
  position: relative;
  z-index: 2;
}

.book-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
  animation: fadeInUp 0.7s 0.2s ease both;
}

.book-hero-sub {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 540px;
  margin: 0 auto 2rem;
  animation: fadeInUp 0.7s 0.35s ease both;
}

.book-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s 0.5s ease both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.82rem;
  padding: 0 1rem;
}

.trust-icon {
  color: var(--gold);
  font-size: 0.65rem;
}

.trust-divider {
  width: 1px;
  height: 14px;
  background: var(--border-subtle);
}

/* ─── MAIN LAYOUT ───────────────────────────────────────── */
.book-main {
  padding: 3rem 0 6rem;
}

.book-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

/* ─── PROGRESS BAR ──────────────────────────────────────── */
.progress-wrap {
  margin-bottom: 2.5rem;
}

.progress-steps {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.prog-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.prog-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.08);
  border: 2px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
}

.prog-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.prog-check {
  position: absolute;
  width: 16px;
  height: 16px;
  color: var(--navy);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.prog-step.active .prog-dot {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.35);
}

.prog-step.active .prog-num { color: var(--navy); }

.prog-step.done .prog-dot {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: var(--gold);
}

.prog-step.done .prog-num { opacity: 0; }
.prog-step.done .prog-check { opacity: 1; }

.prog-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s ease;
  white-space: nowrap;
}

.prog-step.active .prog-label,
.prog-step.done .prog-label {
  color: var(--gold-light);
}

.prog-line {
  flex: 1;
  height: 2px;
  background: var(--border-subtle);
  margin: 0 0.5rem;
  margin-bottom: 1.4rem;
  position: relative;
  overflow: hidden;
}

.prog-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.prog-line.filled::after { transform: scaleX(1); }

.progress-bar-track {
  height: 3px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  border-radius: 2px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 33.33%;
}

/* ─── FORM STEPS ────────────────────────────────────────── */
.session-form {
  background: linear-gradient(145deg, rgba(13, 27, 46, 0.8), rgba(6, 13, 26, 0.9));
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  overflow: hidden;
}

.form-step {
  display: none;
  padding: 2.5rem;
  animation: stepIn 0.4s ease both;
}

.form-step.active { display: block; }
.form-step.success-step { display: none; }
.form-step.success-step.active { display: flex; justify-content: center; }

@keyframes stepIn {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes stepBack {
  from { opacity: 0; transform: translateX(-24px); }
  to { opacity: 1; transform: translateX(0); }
}

.form-step.going-back { animation: stepBack 0.4s ease both; }

/* ─── STEP HEADING ──────────────────────────────────────── */
.step-heading {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.step-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.step-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--cream);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.step-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ─── FORM GROUPS ───────────────────────────────────────── */
.form-group {
  margin-bottom: 1.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.form-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  margin-top: -0.25rem;
  font-style: italic;
}

.req { color: var(--gold); margin-left: 2px; }
.optional { color: var(--text-muted); font-weight: 400; font-size: 0.78rem; }

/* ─── INPUTS ────────────────────────────────────────────── */
.input-wrap {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--text-muted);
  pointer-events: none;
  transition: color 0.3s ease;
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 12px;
  padding: 0.85rem 1rem 0.85rem 2.6rem;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-input::placeholder { color: rgba(245, 240, 232, 0.3); }

.form-input:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12), 0 4px 20px rgba(201, 168, 76, 0.08);
}

.form-input:focus + .input-icon,
.input-wrap:focus-within .input-icon {
  color: var(--gold);
}

.form-input.error { border-color: #e74c3c; }

/* ─── TEXTAREAS ─────────────────────────────────────────── */
.textarea-wrap {
  position: relative;
}

.form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  resize: vertical;
  min-height: 120px;
  transition: all 0.3s ease;
  outline: none;
}

.form-textarea::placeholder { color: rgba(245, 240, 232, 0.3); }

.form-textarea:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.form-textarea.error { border-color: #e74c3c; }

.char-count {
  position: absolute;
  bottom: 0.6rem;
  right: 0.8rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  pointer-events: none;
}

/* ─── RADIO CARDS ───────────────────────────────────────── */
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.radio-card {
  cursor: pointer;
  flex-shrink: 0;
}

.radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-box {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 10px;
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  color: var(--text-body);
  transition: all 0.25s ease;
  cursor: pointer;
  user-select: none;
}

.radio-icon { font-size: 1rem; }

.radio-card input:checked + .radio-box {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold);
  color: var(--gold-light);
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.15);
}

.radio-card:hover .radio-box {
  border-color: rgba(201, 168, 76, 0.4);
  background: rgba(201, 168, 76, 0.08);
}

.radio-card.wide { width: 100%; }
.radio-card.wide .radio-box { width: 100%; }

/* ─── CHECKBOX CARDS ────────────────────────────────────── */
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.check-card {
  cursor: pointer;
}

.check-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.check-box {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 10px;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  color: var(--text-body);
  transition: all 0.25s ease;
  cursor: pointer;
  user-select: none;
}

.check-card input:checked + .check-box {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold);
  color: var(--gold-light);
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.15);
}

.check-card:hover .check-box {
  border-color: rgba(201, 168, 76, 0.4);
  background: rgba(201, 168, 76, 0.08);
}

/* ─── SIGNATURE QUESTION BOX ────────────────────────────── */
.signature-question-box {
  position: relative;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.04));
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 16px;
  padding: 1.75rem 2rem;
  margin-bottom: 1.75rem;
}

.sq-quote {
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  font-style: italic;
}

.signature-question-box p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-light);
  line-height: 1.6;
}

/* ─── BEFORE & AFTER ────────────────────────────────────── */
.before-after-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: start;
}

.ba-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.ba-label.before {
  background: rgba(231, 76, 60, 0.15);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.3);
}

.ba-label.after {
  background: rgba(46, 204, 113, 0.15);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.3);
}

.ba-arrow {
  color: var(--gold);
  font-size: 1.5rem;
  align-self: center;
  opacity: 0.6;
  padding-top: 1.5rem;
}

.ba-textarea { min-height: 100px; }

/* ─── CONSENT ───────────────────────────────────────────── */
.consent-group {
  padding: 1.5rem;
  background: rgba(201, 168, 76, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
}

.consent-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.consent-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(201, 168, 76, 0.4);
  border-radius: 6px;
  background: transparent;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.consent-label input:checked ~ .consent-check {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: var(--gold);
}

.consent-label input:checked ~ .consent-check::after {
  content: '✓';
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
}

.consent-label span:last-child {
  color: var(--text-body);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ─── FORM ERRORS ───────────────────────────────────────── */
.form-error {
  display: block;
  color: #e74c3c;
  font-size: 0.78rem;
  margin-top: 0.35rem;
  min-height: 1em;
  transition: opacity 0.2s ease;
}

/* ─── STEP ACTIONS ──────────────────────────────────────── */
.step-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.btn-next {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 30px rgba(201, 168, 76, 0.3);
}

.btn-next:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.45);
}

.btn-next svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.btn-next:hover svg { transform: translateX(4px); }

.btn-back {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 1rem 1.4rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.btn-back:hover {
  border-color: rgba(201, 168, 76, 0.4);
  color: var(--cream);
}

.btn-back svg { width: 16px; height: 16px; }

/* ─── SUBMIT BUTTON ─────────────────────────────────────── */
.btn-submit {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, #F0D890 100%);
  color: var(--navy);
  border: none;
  padding: 1.1rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 40px rgba(201, 168, 76, 0.4);
  overflow: hidden;
}

.btn-submit .btn-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-submit:hover .btn-glow { transform: translateX(100%); }

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 60px rgba(201, 168, 76, 0.55);
}

.btn-text-wrap {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.btn-text-wrap svg { width: 18px; height: 18px; }

.btn-loading {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(6, 13, 26, 0.3);
  border-top-color: var(--navy);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ─── SUCCESS STATE ─────────────────────────────────────── */
.success-step {
  padding: 4rem 2.5rem !important;
}

.success-inner {
  text-align: center;
  max-width: 560px;
}

.success-icon {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  opacity: 0.2;
  animation: success-pulse 2s ease-in-out infinite;
}

.success-icon > span {
  font-size: 3rem;
  color: var(--gold);
  animation: pulse-gold 2s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@keyframes success-pulse {
  0%, 100% { transform: scale(1); opacity: 0.2; }
  50% { transform: scale(1.2); opacity: 0.35; }
}

.success-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--cream);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.success-sub {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold-light);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.success-body {
  text-align: left;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 1.75rem;
  margin-bottom: 2rem;
}

.success-body p {
  color: var(--text-body);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.success-body p:last-child { margin-bottom: 0; }
.success-body strong { color: var(--cream); }

.success-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50px;
  padding: 0.65rem 1.4rem;
  margin-bottom: 2rem;
}

.btn-back-home {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  border: 1px solid var(--border-subtle);
  padding: 0.75rem 1.4rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-back-home:hover {
  border-color: rgba(201, 168, 76, 0.4);
  color: var(--cream);
}

.btn-back-home svg { width: 16px; height: 16px; }

/* ─── SIDEBAR ───────────────────────────────────────────── */
.sidebar-col {
  position: relative;
}

.sidebar-sticky {
  position: sticky;
  top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sidebar-card {
  background: linear-gradient(145deg, rgba(13, 27, 46, 0.9), rgba(6, 13, 26, 0.95));
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 1.75rem;
}

.sidebar-card-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--cream);
  margin-bottom: 1.4rem;
  letter-spacing: 0.03em;
}

.sc-icon { font-size: 1.1rem; }

/* Next Steps */
.next-steps { display: flex; flex-direction: column; }

.next-step {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.ns-num {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.ns-content strong {
  display: block;
  color: var(--cream);
  font-size: 0.85rem;
  margin-bottom: 0.15rem;
}

.ns-content p {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

.ns-line {
  width: 1px;
  height: 20px;
  background: var(--border-subtle);
  margin-left: 13px;
  margin: 6px 0 6px 13px;
}

/* Anchor card */
.anchor-card { text-align: center; }

.anchor-symbol {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.anchor-scripture {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--cream);
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.anchor-ref {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
}

/* Promise card */
.promise-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.promise-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-body);
  font-size: 0.85rem;
  line-height: 1.5;
}

.pl-check {
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* 333 Sidebar Badge */
.sidebar-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  animation: pulse-gold 3s ease-in-out infinite;
}

/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 960px) {
  .book-layout {
    grid-template-columns: 1fr;
  }

  .sidebar-col { order: -1; }
  .sidebar-sticky { position: static; flex-direction: row; flex-wrap: wrap; }
  .sidebar-card { flex: 1; min-width: 240px; }
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .before-after-wrap {
    grid-template-columns: 1fr;
  }
  .ba-arrow {
    transform: rotate(90deg);
    text-align: center;
    padding-top: 0;
  }
  .form-step { padding: 1.75rem 1.25rem; }
  .step-actions { flex-wrap: wrap; }
  .btn-next, .btn-submit { width: 100%; }

  .sidebar-sticky { flex-direction: column; }
  .book-trust-row { flex-direction: column; gap: 0.5rem; }
  .trust-divider { display: none; }

  .slots-badge { font-size: 0.7rem; }
}
