

/* ============================================================
   PAGE: schedule
   ============================================================ */

/* Visually-hidden utility (WCAG 4.1.2) */
body.page-schedule .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

body.page-schedule *, body.page-schedule *::before, body.page-schedule *::after, body.page-schedule { margin: 0; padding: 0; box-sizing: border-box; }

:root:has(body.page-schedule) {
  --blue-light: #4da6ff;
  --blue-dark: #0a1e3d;
  --bg: #050a14;
  --glass-border: rgba(255,255,255,0.25);
  --card-bg: rgba(255,255,255,0.025);
  --card-border: rgba(255,255,255,0.06);
  --spring: cubic-bezier(0.23, 1, 0.32, 1);
}

html:has(body.page-schedule) { scroll-behavior: smooth; overflow-x: hidden; }

body.page-schedule {
  font-family: 'Onest', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: #fff;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  max-width: 100vw;
}

/* ─── Nav ─── */

body.page-schedule .nav-wrapper { position: fixed; top: 24px; left: 0; right: 0; display: flex; justify-content: center; align-items: center; z-index: 1000; padding: 0 24px; pointer-events: none; }
body.page-schedule .nav-wrapper.nav-enter { animation: navDrop 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.3s both; }
/* The page transition must never swallow this entrance: hold it at frame 0
   while the veil is up (html.ll-loading) so the full run plays the moment it
   lifts. Same pattern as the two product heroes. */
html.ll-loading body.page-schedule .nav-wrapper.nav-enter { animation-play-state: paused; }
body.page-schedule .nav { pointer-events: auto; }

body.page-schedule .nav {
  display: flex; align-items: center; gap: 6px; padding: 8px 10px;
  border-radius: 999px; border: 1px solid var(--glass-border);
  position: relative; overflow: hidden;
  background: rgba(18,18,28,0.22);
  backdrop-filter: blur(32px) saturate(1.6);
  -webkit-backdrop-filter: blur(32px) saturate(1.6);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25), 0 1px 3px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.04);
}

body.page-schedule .nav::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  pointer-events: none;
  z-index: 0;
}

body.page-schedule .nav a {
  position: relative; z-index: 1; text-decoration: none; color: rgba(255,255,255,0.65);
  font-size: 14px; font-weight: 500; padding: 8px 20px; border-radius: 999px;
  transition: color 0.25s, background 0.25s, padding 0.35s cubic-bezier(0.23, 1, 0.32, 1); white-space: nowrap;
  display: flex; align-items: center; gap: 6px; text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

body.page-schedule .nav a:hover { color: #fff; background: rgba(255,255,255,0.08); }
body.page-schedule .nav a.active { color: #fff; background: rgba(255,255,255,0.12); }

body.page-schedule .nav-icon { display: none; width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }

body.page-schedule .nav-label { display: inline; overflow: hidden; max-width: 100px; transition: opacity 0.25s ease; opacity: 1; text-overflow: ellipsis; }
body.page-schedule .light-only { display: none !important; }
[data-theme="light"] body.page-schedule .dark-only { display: none !important; }
[data-theme="light"] body.page-schedule .light-only { display: inline !important; }

/* ─── Shared ─── */
body.page-schedule .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 32px;
  border-radius: 999px; font-size: 15px; font-weight: 600; text-decoration: none;
  transition: all 0.3s; cursor: pointer; border: none;
  min-height: 44px; /* WCAG 2.5.5 target size */
}

body.page-schedule .btn-primary { background: #fff; color: var(--bg); }
body.page-schedule .btn-primary:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(77,166,255,0.25); }

body.page-schedule .btn-outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.2); }
body.page-schedule .btn-outline:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.05); transform: translateY(-2px); }

/* ─── Hero + Cards ─── */
body.page-schedule .schedule-hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; padding: 120px 24px 120px; text-align: center;
}

body.page-schedule .schedule-hero .label {
  font-size: 13px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--blue-light); margin-bottom: 16px;
}

body.page-schedule .schedule-hero h1 {
  font-size: clamp(28px, 4vw, 44px); font-weight: 800;
  letter-spacing: -0.02em; margin-bottom: 16px; color: #fff;
}

body.page-schedule .schedule-hero > p,
body.page-schedule .schedule-hero > .real-content > p,
body.page-schedule .schedule-hero > .skeleton-content > p {
  color: rgba(255,255,255,0.7); font-size: 16px; max-width: 500px;
  margin: 0 auto 56px; line-height: 1.6;
}

body.page-schedule .consult-section {
  max-width: 820px; width: 100%;
}

body.page-schedule .consult-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; align-items: stretch;
}

body.page-schedule .consult-card {
  background: linear-gradient(rgba(255,255,255,0.03), rgba(255,255,255,0.03)), var(--bg); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 36px 30px; display: flex; flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
  position: relative; text-align: left;
}

body.page-schedule .consult-card:hover, body.page-schedule .consult-card:focus-within { border-color: rgba(77,166,255,0.25); transform: translateY(-3px); }

body.page-schedule .consult-card.featured {
  border-color: rgba(77,166,255,0.35); background: linear-gradient(rgba(77,166,255,0.04), rgba(77,166,255,0.04)), var(--bg);
}

/* Brand amber, matching pricing's Recommended badge (Ellis, 2026-08-20). */
body.page-schedule .consult-card.featured::before {
  content: 'Start here'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: #f5b342; color: var(--bg); font-size: 11px; font-weight: 700;
  padding: 4px 18px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.05em;
}

body.page-schedule .consult-title {
  font-size: 20px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.01em; color: #fff;
}

body.page-schedule .consult-meta {
  color: rgba(255,255,255,0.5); font-size: 13px; margin-bottom: 20px; line-height: 1.5;
}

body.page-schedule .consult-desc {
  font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.7;
}

body.page-schedule .consult-includes {
  list-style: none; flex: 1; margin-bottom: 32px; margin-top: 16px; padding: 0;
}

body.page-schedule .consult-includes li {
  padding: 8px 0; font-size: 13px; color: rgba(255,255,255,0.6);
  display: flex; align-items: flex-start; gap: 10px; line-height: 1.5;
}

body.page-schedule .consult-includes li::before {
  content: '\2713'; color: var(--blue-light); font-weight: 700;
  font-size: 13px; flex-shrink: 0; margin-top: 2px;
}

body.page-schedule .consult-card .btn { width: 100%; justify-content: center; font-size: 14px; padding: 14px 24px; }

body.page-schedule .consult-pill {
  display: inline-block; margin-bottom: 20px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 999px;
  background: rgba(77,166,255,0.08); color: var(--blue-light);
  border: 1px solid rgba(77,166,255,0.15);
  text-align: center; width: 100%;
}

body.page-schedule .consult-dash-note {
  font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 500;
  text-align: center; line-height: 1.6;
  padding: 14px 16px; margin-top: auto;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 999px;
}

/* ─── Booking dialog (2026-09-17) ───
   The ll.js booking module drives it; this is only its look. The glass is the
   cookie overlay's, the calendar is a plain month grid (Monday first) beside
   the times for the chosen day, and every step is one [data-ll-booking-view]
   the module shows by toggling `hidden`. While it talks to the api the
   container carries aria-busy, which draws one thin bar across the top of the
   panel rather than covering anything. */
html[data-ll-booking-open] { overflow: hidden; }
body.page-schedule .bk {
  position: fixed; inset: 0; z-index: 100000;
  display: flex; align-items: center; justify-content: center; padding: 24px;
  background: rgba(5,10,20,0.74);
  backdrop-filter: blur(20px) saturate(1.4); -webkit-backdrop-filter: blur(20px) saturate(1.4);
  animation: bkFade 0.28s ease both;
}
body.page-schedule .bk[hidden] { display: none; }
body.page-schedule .bk-panel {
  position: relative; width: 100%; max-width: 860px;
  max-height: calc(100vh - 48px); max-height: calc(100dvh - 48px); overflow-y: auto; overscroll-behavior: contain;
  padding: 36px 36px 32px; border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 50%, rgba(255,255,255,0.05) 100%), rgba(5,10,20,0.6);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 80px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.08);
  animation: bkRise 0.34s cubic-bezier(0.23, 1, 0.32, 1) both;
}
body.page-schedule .bk-panel::before {
  content: ''; position: absolute; top: 0; left: 22px; right: 22px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-light), transparent);
  transform: scaleX(0); opacity: 0; transition: opacity 0.2s ease;
}
body.page-schedule .bk[aria-busy="true"] .bk-panel::before { opacity: 1; animation: bkBar 1.1s cubic-bezier(0.4, 0, 0.2, 1) infinite; }
body.page-schedule .bk-close {
  position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.7);
  transition: background 0.16s ease, color 0.16s ease;
}
body.page-schedule .bk-close svg { width: 16px; height: 16px; }
@media (hover: hover) and (pointer: fine) { body.page-schedule .bk-close:hover { background: rgba(255,255,255,0.1); color: #fff; } }

body.page-schedule .bk-view:focus { outline: none; }
body.page-schedule .bk-head { margin-bottom: 24px; padding-right: 44px; }
body.page-schedule .bk-head .label, body.page-schedule .bk-result .label { display: inline-block; margin-bottom: 10px; }
body.page-schedule .bk h2 { font-size: clamp(22px, 2.6vw, 28px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; color: #fff; }
body.page-schedule .bk h2:focus { outline: none; }
body.page-schedule .bk-head p, body.page-schedule .bk-result > p { font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,0.64); margin-top: 8px; }
body.page-schedule .bk-message { margin: 0 0 18px; padding: 11px 14px; border-radius: 12px; font-size: 13.5px; line-height: 1.5; color: #ffb4b4; background: rgba(255,100,100,0.08); border: 1px solid rgba(255,100,100,0.22); }

body.page-schedule .bk-pick { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: 32px; align-items: start; }
body.page-schedule .bk-month { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
body.page-schedule .bk-month-label { font-size: 15px; font-weight: 700; color: #fff; }
body.page-schedule .bk-arrow {
  width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; cursor: pointer;
  background: transparent; border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.8);
  transition: background 0.16s ease, border-color 0.16s ease;
}
body.page-schedule .bk-arrow svg { width: 18px; height: 18px; }
body.page-schedule .bk-arrow:disabled { opacity: 0.3; cursor: not-allowed; }
@media (hover: hover) and (pointer: fine) { body.page-schedule .bk-arrow:not(:disabled):hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.2); } }
body.page-schedule .bk-weekdays, body.page-schedule .bk-days { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 6px; }
body.page-schedule .bk-weekdays { margin-bottom: 6px; }
body.page-schedule .bk-weekdays span { text-align: center; font-size: 11.5px; font-weight: 600; color: rgba(255,255,255,0.45); padding: 4px 0; }
body.page-schedule .bk-day {
  aspect-ratio: 1 / 1; min-height: 40px; border-radius: 12px; cursor: pointer; position: relative;
  display: flex; align-items: center; justify-content: center; font: inherit; font-size: 14px; font-weight: 600;
  color: #fff; background: rgba(77,166,255,0.08); border: 1px solid rgba(77,166,255,0.22);
  transition: background 0.16s ease, border-color 0.16s ease, transform 0.12s ease;
}
body.page-schedule .bk-day:disabled { cursor: not-allowed; color: rgba(255,255,255,0.28); background: transparent; border-color: transparent; }
body.page-schedule .bk-day[data-ll-today]::after { content: ''; position: absolute; bottom: 6px; width: 4px; height: 4px; border-radius: 50%; background: #f5b342; }
body.page-schedule .bk-day[aria-pressed="true"] { background: var(--blue-light); border-color: var(--blue-light); color: #050a14; }
@media (hover: hover) and (pointer: fine) { body.page-schedule .bk-day:not(:disabled):not([aria-pressed="true"]):hover { background: rgba(77,166,255,0.16); border-color: rgba(77,166,255,0.45); } }
body.page-schedule .bk-day:not(:disabled):active, body.page-schedule .bk-slot:active { transform: scale(0.96); }

body.page-schedule .bk-times { min-width: 0; }
body.page-schedule .bk-day-label { font-size: 15px; font-weight: 700; color: #fff; min-height: 40px; display: flex; align-items: center; margin-bottom: 14px; }
body.page-schedule .bk-slots { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; max-height: 320px; overflow-y: auto; padding-right: 2px; }
body.page-schedule .bk-slot {
  min-height: 44px; border-radius: 12px; cursor: pointer; font: inherit; font-size: 14px; font-weight: 600;
  font-variant-numeric: tabular-nums; color: #fff; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12);
  transition: background 0.16s ease, border-color 0.16s ease, transform 0.12s ease;
}
body.page-schedule .bk-slot[aria-pressed="true"] { background: var(--blue-light); border-color: var(--blue-light); color: #050a14; }
@media (hover: hover) and (pointer: fine) { body.page-schedule .bk-slot:not([aria-pressed="true"]):hover { border-color: rgba(77,166,255,0.5); background: rgba(77,166,255,0.08); } }
body.page-schedule .bk-empty { font-size: 14px; color: rgba(255,255,255,0.6); }

body.page-schedule .bk-when-line { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 14px; }
body.page-schedule .bk-when-line [data-ll-when] { color: #fff; font-weight: 600; }
body.page-schedule .bk-link {
  background: none; border: none; padding: 6px 0; font: inherit; font-size: 14px; font-weight: 600; cursor: pointer;
  color: var(--blue-light); text-decoration: underline; text-decoration-color: rgba(77,166,255,0.35); text-underline-offset: 4px;
}
body.page-schedule .bk-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 18px; }
body.page-schedule .bk-field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
body.page-schedule .bk-field:nth-child(3), body.page-schedule .bk-field-wide, body.page-schedule .bk-form .bk-message, body.page-schedule .bk-form .bk-actions { grid-column: 1 / -1; }
body.page-schedule .bk-field label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.72); }
body.page-schedule .bk-optional { font-weight: 400; color: rgba(255,255,255,0.45); margin-left: 4px; }
body.page-schedule .bk-field input, body.page-schedule .bk-field textarea {
  width: 100%; min-width: 0; min-height: 46px; padding: 12px 14px; border-radius: 12px; font: inherit; font-size: 16px; color: #fff;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); transition: border-color 0.16s ease, background 0.16s ease;
  -webkit-appearance: none; appearance: none;
}
body.page-schedule .bk-field textarea { resize: vertical; min-height: 84px; line-height: 1.5; }
body.page-schedule .bk-field input:focus, body.page-schedule .bk-field textarea:focus { border-color: var(--blue-light); background: rgba(77,166,255,0.05); }
body.page-schedule .bk-field input::placeholder { color: rgba(255,255,255,0.3); }
body.page-schedule .bk-help { font-size: 12.5px; color: rgba(255,255,255,0.5); }
body.page-schedule .bk-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 22px; margin-top: 6px; }
body.page-schedule .bk-actions .btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
body.page-schedule .bk-fine { font-size: 12.5px; line-height: 1.5; color: rgba(255,255,255,0.5); }
body.page-schedule .bk-fine a { color: rgba(255,255,255,0.75); }

body.page-schedule .bk-result { text-align: center; max-width: 520px; margin: 0 auto; padding: 12px 0 4px; }
body.page-schedule .bk-result .bk-message { text-align: left; margin-top: 18px; }
body.page-schedule .bk-actions-centre { justify-content: center; margin-top: 26px; }
body.page-schedule .bk-mark {
  width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #050a14; background: var(--blue-light); box-shadow: 0 0 0 10px rgba(77,166,255,0.12);
  animation: bkPop 0.5s cubic-bezier(0.23, 1, 0.32, 1) both;
}
body.page-schedule .bk-mark svg { width: 30px; height: 30px; }
body.page-schedule .bk-when { font-size: 17px; font-weight: 700; color: #fff; margin-top: 12px; }
body.page-schedule .bk-when-off { text-decoration: line-through; color: rgba(255,255,255,0.55); }
body.page-schedule .bk-compare { display: grid; gap: 10px; margin: 20px auto 0; text-align: left; }
body.page-schedule .bk-compare > div { display: flex; justify-content: space-between; gap: 18px; padding: 12px 16px; border-radius: 12px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); }
body.page-schedule .bk-compare dt { font-size: 13px; color: rgba(255,255,255,0.55); }
body.page-schedule .bk-compare dd { font-size: 14px; font-weight: 600; color: #fff; text-align: right; margin: 0; }
body.page-schedule .bk-cancel-armed { display: none; }
body.page-schedule .bk-danger[data-ll-armed] { border-color: rgba(255,100,100,0.6); color: #ffb4b4; }
body.page-schedule .bk-danger[data-ll-armed] .bk-cancel-idle { display: none; }
body.page-schedule .bk-danger[data-ll-armed] .bk-cancel-armed { display: inline; }

@keyframes bkFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes bkRise { from { opacity: 0; transform: translateY(10px) scale(0.985); } to { opacity: 1; transform: none; } }
@keyframes bkPop { from { opacity: 0; transform: scale(0.6); } to { opacity: 1; transform: none; } }
@keyframes bkBar { 0% { transform: scaleX(0); transform-origin: left; } 50% { transform: scaleX(1); transform-origin: left; } 50.1% { transform-origin: right; } 100% { transform: scaleX(0); transform-origin: right; } }
@media (prefers-reduced-motion: reduce) {
  body.page-schedule .bk, body.page-schedule .bk-panel, body.page-schedule .bk-mark { animation: none; }
  body.page-schedule .bk[aria-busy="true"] .bk-panel::before { animation: none; transform: scaleX(1); }
}

@media (max-width: 700px) {
  body.page-schedule .bk { padding: 0; align-items: stretch; }
  body.page-schedule .bk-panel { max-width: none; max-height: none; height: 100%; border-radius: 0; padding: 28px 18px calc(28px + env(safe-area-inset-bottom, 0px)); border: none; }
  body.page-schedule .bk-pick { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  body.page-schedule .bk-slots { max-height: none; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  body.page-schedule .bk-form { grid-template-columns: minmax(0, 1fr); }
  body.page-schedule .bk-day { min-height: 38px; border-radius: 10px; }
  body.page-schedule .bk-actions .btn { width: 100%; }
  body.page-schedule .bk-compare > div { flex-direction: column; gap: 4px; }
  body.page-schedule .bk-compare dd { text-align: left; }
}

/* ─── Process ─── */
body.page-schedule .process-section {
  padding: 100px 24px; position: relative;
}

body.page-schedule .process-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(77,166,255,0.12), transparent);
}

body.page-schedule .process-header { text-align: center; margin-bottom: 56px; }

body.page-schedule .process-header .label {
  font-size: 13px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--blue-light); margin-bottom: 16px;
}

body.page-schedule .process-header h2 {
  font-size: clamp(28px, 4vw, 40px); font-weight: 800;
  letter-spacing: -0.02em; margin-bottom: 16px; color: #fff;
}

body.page-schedule .process-header p {
  color: rgba(255,255,255,0.5); font-size: 15px;
  max-width: 480px; margin: 0 auto; line-height: 1.7;
}

body.page-schedule .process-list {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 820px; margin: 0 auto;
}

body.page-schedule .process-row {
  padding: 28px 24px; border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(rgba(255,255,255,0.02), rgba(255,255,255,0.02)), var(--bg);
  transition: border-color 0.3s, transform 0.7s var(--spring), opacity 0.6s ease;
  opacity: 0;
}
body.page-schedule .process-row:nth-child(2) { transition-delay: 0.12s; }
body.page-schedule .process-row:nth-child(3) { transition-delay: 0.24s; }
body.page-schedule .process-row.stagger-visible { opacity: 1; }
body.page-schedule .process-row:nth-child(2).stagger-visible { transform: translateY(20px); }
body.page-schedule .process-row:nth-child(3).stagger-visible { transform: translateY(40px); }

body.page-schedule .process-row h3 {
  font-size: 15px; font-weight: 700; color: #fff;
  margin-bottom: 8px; letter-spacing: -0.01em; line-height: 1.4;
}

body.page-schedule .process-row p {
  font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.65;
}

@media (max-width: 640px) {
  body.page-schedule .process-list { grid-template-columns: 1fr; max-width: 400px; }
  body.page-schedule .process-row { opacity: 1; transform: none; }
  /* Skeleton "Why book" grid mirrors .process-list: 3 columns → 1 at 640px (no
     intermediate 2-col stage), so the placeholder matches the real reflow. */
  body.page-schedule .skeleton-content .sk-whybook { grid-template-columns: 1fr !important; max-width: 400px !important; }
}

/* ─── Why ─── */
body.page-schedule .why-section {
  padding: 100px 24px; position: relative;
}

body.page-schedule .why-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(77,166,255,0.12), transparent);
}

body.page-schedule .why-heading { text-align: center; margin-bottom: 48px; }

body.page-schedule .why-heading h2 {
  font-size: clamp(28px, 4vw, 40px); font-weight: 800;
  letter-spacing: -0.02em; margin-bottom: 10px; color: #fff;
}

body.page-schedule .why-heading p {
  color: rgba(255,255,255,0.5); font-size: 15px; line-height: 1.6;
}

body.page-schedule .why-stack {
  max-width: 640px; margin: 0 auto;
  padding-bottom: 60px;
}

body.page-schedule .why-card {
  position: sticky;
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px; padding: 44px 40px 48px;
  margin-bottom: 40px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.03) inset;
  opacity: 0;
  transition: opacity 0.5s ease, border-color 0.3s;
}

body.page-schedule .why-card.visible {
  opacity: 1;
}

body.page-schedule .why-card:last-child { margin-bottom: 0; }

body.page-schedule .why-card:nth-child(1) { top: 110px; z-index: 1; }
body.page-schedule .why-card:nth-child(2) { top: 140px; z-index: 2; }
body.page-schedule .why-card:nth-child(3) { top: 170px; z-index: 3; }
body.page-schedule .why-card:nth-child(4) { top: 200px; z-index: 4; }

body.page-schedule .why-card:hover { border-color: rgba(77,166,255,0.2); }

body.page-schedule .why-card-top {
  display: flex; align-items: center; gap: 16px; margin-bottom: 20px;
}

body.page-schedule .why-card-num {
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
  color: var(--blue-light); opacity: 0.5;
}

body.page-schedule .why-card-accent {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, rgba(77,166,255,0.35), transparent);
}

body.page-schedule .why-card-icon {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 14px;
  background: rgba(77,166,255,0.05);
  border: 1px solid rgba(77,166,255,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}

body.page-schedule .why-card-icon img {
  width: 1.5em; height: 1.5em; object-fit: contain;
  filter: brightness(0.85) drop-shadow(0 0 4px rgba(77,166,255,0.25));
  transition: filter 0.4s ease;
}
[data-theme="light"] body.page-schedule .why-card-icon img {
  filter: brightness(1.15) drop-shadow(0 0 6px rgba(43,127,212,0.4));
}

body.page-schedule .why-card-title {
  font-size: 20px; font-weight: 800; color: #fff;
  margin-bottom: 10px; letter-spacing: -0.02em;
}

body.page-schedule .why-card-desc {
  font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7;
  max-width: 480px;
}

body.page-schedule .why-card-tag {
  display: inline-block; margin-top: 20px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: #f5b342; opacity: 0.8;
  padding: 5px 14px; border-radius: 999px;
  border: 1px solid rgba(245,179,66,0.16);
}

/* ─── FAQ ─── */
body.page-schedule .booking-faq-section {
  padding: 100px 24px; position: relative;
}

body.page-schedule .booking-faq-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(77,166,255,0.12), transparent);
}

body.page-schedule .booking-faq-header { text-align: center; margin-bottom: 56px; }

body.page-schedule .booking-faq-header h2 {
  font-size: clamp(28px, 4vw, 44px); font-weight: 800;
  letter-spacing: -0.02em; margin-bottom: 16px; color: #fff;
}

body.page-schedule .booking-faq-header p {
  color: rgba(255,255,255,0.5); font-size: 16px; line-height: 1.6;
}

body.page-schedule .booking-faq-container { max-width: 680px; margin: 0 auto; }
body.page-schedule .booking-faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); }

body.page-schedule .booking-faq-q {
  width: 100%; background: none; border: none; color: #fff;
  font-size: 16px; font-weight: 600; text-align: left; padding: 24px 0;
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; font-family: inherit; transition: color 0.2s;
}

body.page-schedule .booking-faq-q:hover { color: var(--blue-light); }

body.page-schedule .booking-faq-q::after {
  content: '+'; font-size: 22px; font-weight: 300;
  color: rgba(255,255,255,0.3); transition: transform 0.3s, color 0.3s;
  flex-shrink: 0; margin-left: 16px;
}

body.page-schedule .booking-faq-q.open::after { transform: rotate(45deg); color: var(--blue-light); }

/* Booking FAQ answer (Ellis, 2026-08-20; was max-height 0 -> a fixed 300px).
   Same change as index.html's FAQ - see the full note in pageIndex.css. The
   fixed cap is gone: toggleFaq() measures scrollHeight and sets the exact
   height inline, so no answer can ever be silently clipped, and the collapsed
   inner is visibility: hidden so it stays out of the tab order and the
   accessibility tree. These four answers carry no links today; the pattern is
   kept identical to index so the two accordions cannot drift apart. */
body.page-schedule .booking-faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
  color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.7;
}

body.page-schedule .booking-faq-a > .faq-a-inner {
  visibility: hidden; padding-bottom: 24px;
  transition: visibility 0s linear 0.35s;
}

body.page-schedule .booking-faq-a.open { max-height: 2000px; }
body.page-schedule .booking-faq-a.open > .faq-a-inner { visibility: visible; transition-delay: 0s; }

@media (prefers-reduced-motion: reduce) {
  body.page-schedule .booking-faq-a { transition: none; }
  body.page-schedule .booking-faq-a > .faq-a-inner { transition: none; }
}

/* ─── CTA ─── */
body.page-schedule .bottom-cta {
  padding: 40px 24px; text-align: center;
}

body.page-schedule .bottom-cta-box {
  max-width: 580px; margin: 0 auto; padding: 52px 40px;
  background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 24px;
}

/* ─── Glow ─── */
body.page-schedule .cta-glow-line { text-align: center; padding: 0 24px 48px; }
body.page-schedule .cta-glow-line span {
  display: inline-block; width: 60px; height: 2px; border-radius: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-light), transparent);
  opacity: 0;
  transition: opacity 1s ease, width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 1s ease;
  filter: drop-shadow(0 0 0 rgba(77,166,255,0));
}
body.page-schedule .cta-glow-line.glow span {
  opacity: 1; width: 180px;
  filter: drop-shadow(0 0 8px rgba(77,166,255,0.6));
  animation: lineGlow 3s ease-in-out infinite 1.2s;
}

body.page-schedule .bottom-cta-box h2 { font-size: 28px; font-weight: 800; margin-bottom: 12px; color: #fff; }
body.page-schedule .bottom-cta-box p { color: rgba(255,255,255,0.5); font-size: 15px; margin-bottom: 32px; line-height: 1.6; }
body.page-schedule .bottom-cta-box .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── Footer ─── */
body.page-schedule footer a:has(> .footer-logo) { display: inline-block; }
body.page-schedule .footer-logo {
  width: 48px; height: auto; margin-bottom: 14px;
  filter: drop-shadow(0 0 6px rgba(77,166,255,0.4));
}

body.page-schedule footer {
  text-align: center; padding: 48px 24px 32px; color: rgba(255,255,255,0.2);
  font-size: 13px; border-top: 1px solid rgba(255,255,255,0.04);
}
body.page-schedule .footer-social { display: flex; justify-content: center; gap: 10px; margin-bottom: 24px; }
body.page-schedule .footer-social a { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.25s, border-color 0.25s, transform 0.25s; }
body.page-schedule .footer-social a:hover { color: var(--blue-light); border-color: rgba(77,166,255,0.3); transform: translateY(-2px); }
body.page-schedule .footer-social a svg { width: 14px; height: 14px; }
body.page-schedule footer .footer-links { display: flex; justify-content: center; align-items: center; gap: 0; flex-wrap: wrap; row-gap: 4px; margin-bottom: 24px; }
body.page-schedule footer .footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; font-size: clamp(11px, 3vw, 13px);
  /* inline-block + padding lifts these from a 14px-tall target to 24px,
     the WCAG 2.2 AA 2.5.8 minimum. They wrap onto two rows on a phone,
     so a short target here meant real mis-taps between legal pages. */
  display: inline-block; padding: 5px 0; }
body.page-schedule footer .footer-links a:hover { color: rgba(255,255,255,0.6); }
body.page-schedule footer .footer-sep { color: rgba(255,255,255,0.3); margin: 0 clamp(4px, 1.5vw, 10px); }
body.page-schedule footer .address { color: rgba(255,255,255,0.48); margin-bottom: 8px; }
body.page-schedule footer .footer-copy { color: rgba(255,255,255,0.46); }
[data-theme="light"] body.page-schedule .footer-social a { border-color: rgba(0,0,0,0.1); color: rgba(0,0,0,0.6); }
[data-theme="light"] body.page-schedule .footer-social a:hover { color: var(--blue-light); border-color: rgba(77,166,255,0.3); }
[data-theme="light"] body.page-schedule footer .footer-links a { color: rgba(0,0,0,0.6); }
[data-theme="light"] body.page-schedule footer .footer-links a:hover { color: #1a1a2e; }
[data-theme="light"] body.page-schedule footer .footer-copy { color: rgba(0,0,0,0.6); }
[data-theme="light"] body.page-schedule footer .footer-sep { color: rgba(0,0,0,0.45); }

/* ─── Toggle ─── */
body.page-schedule .theme-toggle { position: relative; z-index: 1; width: 34px; height: 34px; border: none; background: transparent; cursor: pointer; border-radius: 50%; margin-left: 2px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.65); transition: color 0.25s, background 0.25s; text-decoration: none; padding: 0; font-size: 0; min-width: 34px; flex-shrink: 0; }
body.page-schedule .theme-toggle:hover { background: rgba(255,255,255,0.08); }

/* ─── Mobile header bubble (the client portal sign-in link since 2026-09-17) ─── */
body.page-schedule .theme-toggle-mobile {
  display: none; pointer-events: auto;
  width: 48px; height: 48px;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  background: rgba(18,18,28,0.22);
  backdrop-filter: blur(32px) saturate(1.6);
  -webkit-backdrop-filter: blur(32px) saturate(1.6);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25), 0 1px 3px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.04);
  position: relative;
  cursor: pointer; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: color 0.25s, border-color 0.25s;
  padding: 0; font-size: 0; margin-left: 8px; flex-shrink: 0;
}
body.page-schedule .theme-toggle-mobile:hover { border-color: rgba(255,255,255,0.2); }
:root:has(body.page-schedule) { --nav-scale: 1; }
body.page-schedule .nav-fit {
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  max-width: none;
  transform: scale(var(--nav-scale));
  transform-origin: center top;
  pointer-events: auto;
  will-change: transform;
}
body.page-schedule .nav-fit.nav-fit-transitions { transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1); }

/* ─── Mobile nav-link click animation ───
   .nav-collapsed = active label is currently at width 0.
   .nav-anim      = transition is currently enabled (only present during the
   collapse-on-click window on the outgoing page, and during the expand-on-
   load window on the incoming page).
   Without .nav-anim, refresh and breakpoint resize both snap - preserves
   the "no character-by-character reveal" guarantee from the previous fix. */
@media (max-width: 640px) {
  html.nav-collapsed:has(body.page-schedule) .nav a.active .nav-label {
    max-width: 0;
    opacity: 0;
  }
  html.nav-anim:has(body.page-schedule) .nav a.active .nav-label {
    transition: max-width 220ms cubic-bezier(0.22, 1, 0.36, 1),
                opacity 180ms ease;
  }
  /* Neutralise the active highlight during the collapsed state so all 5
     links read as plain icons (no grey background, no brighter text, no
     widened padding). The existing `transition: color 0.25s, background
     0.25s` on `.nav a` smoothly fades the styling out and back in. */
  html.nav-collapsed:has(body.page-schedule) .nav a.active {
    background: transparent;
    color: rgba(255,255,255,0.65);
    /* Symmetric padding + zero gap so the active pill collapses to a true
       circle (16px icon + 9px padding × 2 = 34×34) instead of an oval. */
    padding: 9px;
    gap: 0;
  }
  html[data-theme="light"].nav-collapsed:has(body.page-schedule) .nav a.active {
    color: rgba(0,0,0,0.6);
  }
}
body.page-schedule .nav { gap: 6px; padding: 8px 10px; }
body.page-schedule .nav a { font-size: 14px; padding: 8px 20px; gap: 6px; }
body.page-schedule .nav-icon { width: 16px; height: 16px; }
body.page-schedule .nav-label { max-width: 100px; }
body.page-schedule .theme-toggle { width: 34px; height: 34px; min-width: 34px; margin-left: 2px; }
body.page-schedule .theme-toggle-mobile { width: 48px; height: 48px; margin-left: 0; }
@media (max-width: 640px) {
  body.page-schedule .nav-fit { gap: 8px; }
  body.page-schedule .nav { gap: 3px; padding: 8px 10px; }
  body.page-schedule .nav a { padding: 9px 12px; font-size: 13px; }
  body.page-schedule .nav a:not(.active) .nav-label { max-width: 0; opacity: 0; }
  body.page-schedule .nav a.active .nav-label { max-width: 70px; font-size: 12px; }
  body.page-schedule .nav a.active { padding: 9px 14px; }
}
[data-theme="light"] body.page-schedule .theme-toggle-mobile { border-color: rgba(0,0,0,0.08); color: rgba(0,0,0,0.6); background: rgba(255,255,255,0.3); backdrop-filter: blur(32px) saturate(2.0); -webkit-backdrop-filter: blur(32px) saturate(2.0); box-shadow: 0 4px 24px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.05), inset 0 1px 0 rgba(255,255,255,0.7); }
[data-theme="light"] body.page-schedule .theme-toggle-mobile:hover { border-color: rgba(0,0,0,0.2); }

/* ─── Light mode ─── */
[data-theme="light"]:has(body.page-schedule) { --bg: #eef1f6; --blue-light: #1a66b5; --glass-border: rgba(0,0,0,0.13); }
[data-theme="light"] body.page-schedule { background: var(--bg); color: #1a1a2e; }

[data-theme="light"] body.page-schedule .theme-toggle { color: rgba(0,0,0,0.6); }
[data-theme="light"] body.page-schedule .theme-toggle:hover { background: rgba(0,0,0,0.05); }

[data-theme="light"] body.page-schedule .nav { background: rgba(255,255,255,0.3); backdrop-filter: blur(32px) saturate(2.0); -webkit-backdrop-filter: blur(32px) saturate(2.0); border-color: rgba(0,0,0,0.08); box-shadow: 0 4px 24px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.05), inset 0 1px 0 rgba(255,255,255,0.7); }
[data-theme="light"] body.page-schedule .nav::before { opacity: 0.5; }
[data-theme="light"] body.page-schedule .nav a { color: rgba(0,0,0,0.6); text-shadow: 0 1px 2px rgba(255,255,255,0.5); }
[data-theme="light"] body.page-schedule .nav a:hover { color: #1a1a2e; background: rgba(0,0,0,0.05); }
[data-theme="light"] body.page-schedule .nav a.active { color: #1a1a2e; -webkit-text-fill-color: #1a1a2e; background: rgba(0,0,0,0.11); }

/* ── Adaptive nav text ── */
body.page-schedule .nav.nav-dark-adaptive a { color: rgba(0,0,0,0.7); text-shadow: 0 1px 2px rgba(255,255,255,0.3); }
body.page-schedule .nav.nav-dark-adaptive a:hover { color: rgba(0,0,0,0.9); }
body.page-schedule .nav.nav-dark-adaptive a.active { color: rgba(0,0,0,0.9); }
body.page-schedule .nav.nav-dark-adaptive .theme-toggle { color: rgba(0,0,0,0.6); }
[data-theme="light"] body.page-schedule .nav.nav-light-adaptive a { color: rgba(255,255,255,0.85); text-shadow: 0 1px 3px rgba(0,0,0,0.4); }
[data-theme="light"] body.page-schedule .nav.nav-light-adaptive a:hover { color: #fff; }
[data-theme="light"] body.page-schedule .nav.nav-light-adaptive a.active { color: #fff; }
[data-theme="light"] body.page-schedule .nav.nav-light-adaptive .theme-toggle { color: rgba(255,255,255,0.8); }

[data-theme="light"] body.page-schedule .btn-primary { background: #1a1a2e; color: #fff; }
[data-theme="light"] body.page-schedule .bk { background: rgba(238,241,246,0.76); }
[data-theme="light"] body.page-schedule .bk-panel { background: linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.82) 100%); border-color: rgba(0,0,0,0.08); box-shadow: 0 30px 80px rgba(10,30,61,0.18), inset 0 1px 0 #fff; }
[data-theme="light"] body.page-schedule .bk-close, [data-theme="light"] body.page-schedule .bk-arrow { color: rgba(0,0,0,0.65); border-color: rgba(0,0,0,0.12); background: rgba(0,0,0,0.02); }
[data-theme="light"] body.page-schedule .bk h2, [data-theme="light"] body.page-schedule .bk-month-label, [data-theme="light"] body.page-schedule .bk-day-label, [data-theme="light"] body.page-schedule .bk-when, [data-theme="light"] body.page-schedule .bk-when-line [data-ll-when], [data-theme="light"] body.page-schedule .bk-compare dd { color: #1a1a2e; }
[data-theme="light"] body.page-schedule .bk-head p, [data-theme="light"] body.page-schedule .bk-result > p, [data-theme="light"] body.page-schedule .bk-empty { color: rgba(0,0,0,0.64); }
[data-theme="light"] body.page-schedule .bk-weekdays span, [data-theme="light"] body.page-schedule .bk-help, [data-theme="light"] body.page-schedule .bk-fine, [data-theme="light"] body.page-schedule .bk-optional, [data-theme="light"] body.page-schedule .bk-compare dt { color: rgba(0,0,0,0.56); }
[data-theme="light"] body.page-schedule .bk-fine a { color: rgba(0,0,0,0.75); }
[data-theme="light"] body.page-schedule .bk-day { color: #1a1a2e; background: rgba(26,102,181,0.07); border-color: rgba(26,102,181,0.25); }
[data-theme="light"] body.page-schedule .bk-day:disabled { color: rgba(0,0,0,0.28); background: transparent; border-color: transparent; }
[data-theme="light"] body.page-schedule .bk-day[aria-pressed="true"], [data-theme="light"] body.page-schedule .bk-slot[aria-pressed="true"] { background: #1a66b5; border-color: #1a66b5; color: #fff; }
[data-theme="light"] body.page-schedule .bk-slot { color: #1a1a2e; background: rgba(0,0,0,0.02); border-color: rgba(0,0,0,0.12); }
[data-theme="light"] body.page-schedule .bk-field label { color: rgba(0,0,0,0.7); }
[data-theme="light"] body.page-schedule .bk-field input, [data-theme="light"] body.page-schedule .bk-field textarea { color: #1a1a2e; background: rgba(0,0,0,0.02); border-color: rgba(0,0,0,0.14); }
[data-theme="light"] body.page-schedule .bk-field input::placeholder { color: rgba(0,0,0,0.35); }
[data-theme="light"] body.page-schedule .bk-link { color: #1a66b5; text-decoration-color: rgba(26,102,181,0.35); }
[data-theme="light"] body.page-schedule .bk-message { color: #a02828; background: rgba(200,50,50,0.06); border-color: rgba(200,50,50,0.25); }
[data-theme="light"] body.page-schedule .bk-compare > div { background: rgba(0,0,0,0.02); border-color: rgba(0,0,0,0.1); }
[data-theme="light"] body.page-schedule .bk-when-off { color: rgba(0,0,0,0.5); }
[data-theme="light"] body.page-schedule .bk-mark { color: #fff; background: #1a66b5; box-shadow: 0 0 0 10px rgba(26,102,181,0.12); }
[data-theme="light"] body.page-schedule .bk-danger[data-ll-armed] { color: #a02828; border-color: rgba(200,50,50,0.5); }

[data-theme="light"] body.page-schedule .btn-primary:hover { background: #2a2a4e; box-shadow: 0 8px 30px rgba(43,127,212,0.2); }
[data-theme="light"] body.page-schedule .btn-outline { color: #1a1a2e; border-color: rgba(0,0,0,0.15); }
[data-theme="light"] body.page-schedule .btn-outline:hover { border-color: rgba(0,0,0,0.6); background: rgba(0,0,0,0.04); }

[data-theme="light"] body.page-schedule .schedule-hero .label { color: var(--blue-light); }
[data-theme="light"] body.page-schedule .schedule-hero h1 { color: #1a1a2e; }
[data-theme="light"] body.page-schedule .schedule-hero > p,
[data-theme="light"] body.page-schedule .schedule-hero > .real-content > p,
[data-theme="light"] body.page-schedule .schedule-hero > .skeleton-content > p { color: rgba(0,0,0,0.6); }

[data-theme="light"] body.page-schedule .consult-card { background: linear-gradient(rgba(0,0,0,0.04), rgba(0,0,0,0.04)), var(--bg); border-color: rgba(0,0,0,0.09); }
[data-theme="light"] body.page-schedule .consult-card:hover, [data-theme="light"] body.page-schedule .consult-card:focus-within { border-color: rgba(43,127,212,0.25); }
[data-theme="light"] body.page-schedule .consult-card.featured { border-color: rgba(43,127,212,0.35); background: linear-gradient(rgba(43,127,212,0.04), rgba(43,127,212,0.04)), var(--bg); }
[data-theme="light"] body.page-schedule .consult-card.featured::before { background: #f0a500; color: #1a1a2e; }
[data-theme="light"] body.page-schedule .consult-title { color: #1a1a2e; }
[data-theme="light"] body.page-schedule .consult-meta { color: rgba(0,0,0,0.6); }
[data-theme="light"] body.page-schedule .consult-desc { color: rgba(0,0,0,0.6); }
[data-theme="light"] body.page-schedule .consult-includes li { color: rgba(0,0,0,0.6); }
[data-theme="light"] body.page-schedule .consult-pill { background: rgba(43,127,212,0.08); color: var(--blue-light); border-color: rgba(43,127,212,0.15); }
[data-theme="light"] body.page-schedule .consult-dash-note { color: rgba(0,0,0,0.6); background: rgba(0,0,0,0.035); border-color: rgba(0,0,0,0.09); }

[data-theme="light"] body.page-schedule .process-section::before { background: linear-gradient(90deg, transparent, rgba(43,127,212,0.12), transparent); }
[data-theme="light"] body.page-schedule .process-header .label { color: var(--blue-light); }
[data-theme="light"] body.page-schedule .process-header h2 { color: #1a1a2e; }
[data-theme="light"] body.page-schedule .process-header p { color: rgba(0,0,0,0.6); }
[data-theme="light"] body.page-schedule .process-row { background: linear-gradient(rgba(0,0,0,0.02), rgba(0,0,0,0.02)), var(--bg); border-color: rgba(0,0,0,0.08); }
[data-theme="light"] body.page-schedule .process-row h3 { color: #1a1a2e; }
[data-theme="light"] body.page-schedule .process-row p { color: rgba(0,0,0,0.6); }

[data-theme="light"] body.page-schedule .why-section::before { background: linear-gradient(90deg, transparent, rgba(43,127,212,0.12), transparent); }
[data-theme="light"] body.page-schedule .why-heading h2 { color: #1a1a2e; }
[data-theme="light"] body.page-schedule .why-heading p { color: rgba(0,0,0,0.6); }
[data-theme="light"] body.page-schedule .why-card { background: var(--bg); border-color: rgba(0,0,0,0.09); box-shadow: 0 4px 40px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.02) inset; }
[data-theme="light"] body.page-schedule .why-card:hover { border-color: rgba(43,127,212,0.25); }
[data-theme="light"] body.page-schedule .why-card-accent { background: linear-gradient(90deg, rgba(43,127,212,0.4), transparent); }
[data-theme="light"] body.page-schedule .why-card-icon { background: rgba(43,127,212,0.06); border-color: rgba(43,127,212,0.12); }
[data-theme="light"] body.page-schedule .why-card-title { color: #1a1a2e; }
[data-theme="light"] body.page-schedule .why-card-desc { color: rgba(0,0,0,0.6); }
[data-theme="light"] body.page-schedule .why-card-tag { color: #f0a500; opacity: 1; border-color: rgba(240,165,0,0.24); }

[data-theme="light"] body.page-schedule .booking-faq-section::before { background: linear-gradient(90deg, transparent, rgba(43,127,212,0.12), transparent); }
[data-theme="light"] body.page-schedule .booking-faq-header h2 { color: #1a1a2e; }
[data-theme="light"] body.page-schedule .booking-faq-header p { color: rgba(0,0,0,0.6); }
[data-theme="light"] body.page-schedule .booking-faq-item { border-color: rgba(0,0,0,0.09); }
[data-theme="light"] body.page-schedule .booking-faq-q { color: #1a1a2e; }
[data-theme="light"] body.page-schedule .booking-faq-q:hover { color: var(--blue-light); }
[data-theme="light"] body.page-schedule .booking-faq-q::after { color: rgba(0,0,0,0.6); }
[data-theme="light"] body.page-schedule .booking-faq-a { color: rgba(0,0,0,0.6); }

[data-theme="light"] body.page-schedule .bottom-cta-box { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.09); }
[data-theme="light"] body.page-schedule .bottom-cta-box h2 { color: #1a1a2e; }
[data-theme="light"] body.page-schedule .bottom-cta-box p { color: rgba(0,0,0,0.6); }
[data-theme="light"] body.page-schedule .cta-glow-line span { background: linear-gradient(90deg, transparent, var(--blue-light), transparent); }

[data-theme="light"] body.page-schedule footer { color: rgba(0,0,0,0.6); border-color: rgba(0,0,0,0.09); }
[data-theme="light"] body.page-schedule footer .address { color: rgba(0,0,0,0.6); }
[data-theme="light"] body.page-schedule footer .footer-links a { color: rgba(0,0,0,0.6); }
[data-theme="light"] body.page-schedule footer .footer-links a:hover { color: #1a1a2e; }
[data-theme="light"] body.page-schedule footer .footer-sep { color: rgba(0,0,0,0.45); }
[data-theme="light"] body.page-schedule .footer-social a { border-color: rgba(0,0,0,0.1); color: rgba(0,0,0,0.6); }
[data-theme="light"] body.page-schedule .footer-social a:hover { color: var(--blue-light); border-color: rgba(77,166,255,0.3); }
[data-theme="light"] body.page-schedule footer .footer-logo { filter: drop-shadow(0 0 6px rgba(43,127,212,0.3)); }
@media (max-width: 800px) {
  body.page-schedule .consult-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  body.page-schedule .consult-card { padding: 36px 28px; }
  body.page-schedule .consult-dash-note { margin-top: 24px; }
  body.page-schedule .why-card { padding: 32px 24px 36px; margin-bottom: 30px; }
  body.page-schedule .why-card:nth-child(1) { top: 90px; }
  body.page-schedule .why-card:nth-child(2) { top: 115px; }
  body.page-schedule .why-card:nth-child(3) { top: 140px; }
  body.page-schedule .why-card:nth-child(4) { top: 165px; }
}

@media (max-width: 640px) {
  body.page-schedule .nav { gap: 3px; padding: 8px 10px; }
  body.page-schedule .nav a { padding: 9px 12px; font-size: 13px; }
  body.page-schedule .nav-icon { display: block; }
  body.page-schedule .nav-label { max-width: 0; opacity: 0; }
  body.page-schedule .nav a.active .nav-label { max-width: 70px; opacity: 1; font-size: 12px; }
  body.page-schedule .nav a.active { padding: 9px 14px; }
  body.page-schedule .nav .theme-toggle { display: none; }
  body.page-schedule .theme-toggle-mobile { display: flex; }

  body.page-schedule .process-row.scroll-active { border-color: rgba(77,166,255,0.15); background: linear-gradient(rgba(77,166,255,0.03), rgba(77,166,255,0.03)), var(--bg); }
  body.page-schedule .process-row.scroll-active h3 { color: var(--blue-light); }
}

/* ─── Skeleton ─── */
body.page-schedule .skeleton-text { height: 12px; margin-bottom: 8px; width: 80%; }
body.page-schedule .skeleton-text.short { width: 40%; }
body.page-schedule .skeleton-text.medium { width: 60%; }
body.page-schedule .skeleton-heading { height: 28px; width: 50%; margin-bottom: 12px; border-radius: 8px; }
body.page-schedule .skeleton-pill { height: 28px; width: 100px; border-radius: 999px; }
body.page-schedule .skeleton-bar { height: 4px; width: 100%; border-radius: 999px; }
body.page-schedule .skeleton-circle { width: 30px; height: 30px; border-radius: 50%; }
body.page-schedule .skeleton-amount { height: 36px; width: 120px; margin: 0 auto 8px; border-radius: 8px; }
body.page-schedule .skeleton-btn { height: 48px; width: 100%; border-radius: 14px; }
body.page-schedule .skeleton-card { border-radius: 20px; padding: 24px; min-height: 120px; border: 1px solid rgba(255,255,255,0.06); background: rgba(255,255,255,0.025); }
body.page-schedule .skeleton-heading.large { height: 42px; width: 70%; }
body.page-schedule .skeleton-input { height: 44px; width: 100%; border-radius: 12px; }
body.page-schedule .skeleton-row { display: flex; justify-content: space-between; align-items: center; padding: 5px 0; gap: 12px; }
body.page-schedule .skeleton-row .skeleton-text { margin-bottom: 0; }
body.page-schedule .skeleton-dot { display: flex; align-items: center; gap: 10px; padding: 5px 0; }
body.page-schedule .skeleton-dots-row { display: flex; justify-content: center; gap: 24px; margin-top: 12px; }
/* .real-content is display:contents when loaded, so its children are flex
   items of the flex .schedule-hero (inline spans blockify and keep their
   vertical margins there). The skeleton copy must lay out in the same
   formatting context or it runs short. Hence display:contents here too -
   and because opacity has no effect on a display:contents box, the fade
   moves onto the children (same pattern as pageContact.css). */
body.page-schedule .skeleton-content { display: contents; }
body.page-schedule .skeleton-content > * { opacity: 0; transition: opacity 0.2s; }
body.page-schedule.show-skeleton .skeleton-content > * { opacity: 1; }
body.page-schedule.loaded .skeleton-content { display: none !important; }
body.page-schedule:not(.loaded) .real-content { display: none; }
body.page-schedule.loaded .real-content { display: contents; }
/* sk-mask - text-preserving skeleton shimmer that inherits exact layout from real content */
body.page-schedule .skeleton-content .consult-includes li::before { visibility: hidden !important; }
body.page-schedule .skeleton-content .consult-card.featured::before { visibility: hidden; }

/* Respect prefers-reduced-motion (WCAG 2.2 AA 2.3.3) */
@media (prefers-reduced-motion: reduce) {
  body.page-schedule *, body.page-schedule *::before, body.page-schedule *::after, body.page-schedule {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body.page-schedule .skip-link {position:fixed;top:-48px;left:0;background:#2b7fd4;color:#fff;padding:10px 16px;z-index:99999;text-decoration:none;font-weight:600;border-radius:0 0 4px 0;transition:top .2s ease,opacity .2s ease;font-size:14px;opacity:0;pointer-events:none;white-space:nowrap}
body.page-schedule .skip-link:focus, body.page-schedule .skip-link:focus-visible {top:0;opacity:1;pointer-events:auto;outline:2px solid #fff;outline-offset:-4px}

/* Global :focus-visible - keyboard accessibility (WCAG 2.4.7) */
body.page-schedule a:focus-visible, body.page-schedule button:focus-visible, body.page-schedule [role="button"]:focus-visible, body.page-schedule input:focus-visible, body.page-schedule select:focus-visible, body.page-schedule textarea:focus-visible, body.page-schedule .btn:focus-visible, body.page-schedule .theme-toggle:focus-visible, body.page-schedule .theme-toggle-mobile:focus-visible {
  outline: 2px solid var(--blue-light, #4da6ff);
  outline-offset: 2px;
  border-radius: 4px;
}
body.page-schedule .btn:focus-visible { border-radius: 999px; }