/* ============================================================
   TRAVIS THE TRAINER — GLOBAL STYLES
   ============================================================ */

:root {
  --primary: #FF6B00;
  --primary-dark: #e05c00;
  --accent: #FFD700;
  --dark: #0a0a0a;
  --dark2: #111111;
  --dark3: #1a1a1a;
  --card: #1e1e1e;
  --border: #2a2a2a;
  --text: #f0f0f0;
  --text-muted: #888;
  --success: #00c853;
  --font: 'Barlow', sans-serif;
  --font-cond: 'Barlow Condensed', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.accent { color: var(--primary); }
.badge {
  display: inline-block;
  background: var(--primary);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 16px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.cta-btn {
  display: inline-block;
  padding: 16px 36px;
  font-family: var(--font-cond);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 1px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.primary-btn {
  background: var(--primary);
  color: white;
}
.primary-btn:hover { background: var(--primary-dark); transform: translateY(-2px); }
.secondary-btn {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.secondary-btn:hover { background: var(--primary); color: white; }
.full-width { width: 100%; text-align: center; }

/* ============================================================
   LANDING PAGE — HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a00 50%, #0a0a0a 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,107,0,0.15) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 40px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-family: var(--font-cond);
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -1px;
  margin: 16px 0 24px;
  text-transform: uppercase;
}

.hero-sub {
  font-size: 18px;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto 36px;
}

.hero-proof {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

.proof-item {
  font-size: 14px;
  color: #aaa;
  font-weight: 600;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  padding: 80px 20px;
  background: var(--dark2);
  text-align: center;
}

.how-it-works h2 {
  font-family: var(--font-cond);
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 48px;
  letter-spacing: 2px;
}

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 24px;
  max-width: 240px;
  text-align: center;
}

.step-num {
  font-family: var(--font-cond);
  font-size: 48px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 12px;
}

.step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step p { color: var(--text-muted); font-size: 14px; }
.step-arrow { font-size: 32px; color: var(--primary); font-weight: 900; }

/* ============================================================
   RESULTS SECTION
   ============================================================ */
.results-section {
  padding: 80px 20px;
  text-align: center;
}

.results-section h2 {
  font-family: var(--font-cond);
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 48px;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  text-align: left;
}

.stars { color: var(--accent); font-size: 18px; margin-bottom: 12px; }
.testimonial p { color: #ddd; font-size: 15px; margin-bottom: 16px; font-style: italic; }
.author { color: var(--text-muted); font-size: 13px; font-weight: 600; }

/* ============================================================
   PLANS PREVIEW
   ============================================================ */
.plans-preview {
  padding: 80px 20px;
  background: var(--dark2);
  text-align: center;
}

.plans-preview h2 {
  font-family: var(--font-cond);
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 48px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.plan-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 20px;
  transition: border-color 0.2s;
}

.plan-card:hover { border-color: var(--primary); }
.plan-icon { font-size: 40px; margin-bottom: 16px; }
.plan-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.plan-card p { color: var(--text-muted); font-size: 13px; }
.cta-center { margin-top: 16px; }

/* ============================================================
   TRAINER BIO
   ============================================================ */
.trainer-bio { padding: 80px 20px; }

.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.bio-img-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
}

.bio-text h2 {
  font-family: var(--font-cond);
  font-size: 52px;
  font-weight: 900;
  margin-bottom: 16px;
}

.bio-text p { color: #ccc; margin-bottom: 24px; font-size: 16px; }
.credentials { list-style: none; margin-bottom: 32px; }
.credentials li { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 15px; }

/* FOOTER */
footer {
  background: var(--dark2);
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.footer-logo {
  font-family: var(--font-cond);
  font-size: 24px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 8px;
}
.footer-tagline { color: var(--text-muted); font-size: 13px; margin-bottom: 8px; }
.footer-legal { color: #555; font-size: 11px; }

/* ============================================================
   QUESTIONNAIRE PAGE
   ============================================================ */
.questionnaire-page {
  background: var(--dark);
  min-height: 100vh;
}

.q-wrapper {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

.q-header {
  padding: 24px 0 16px;
  text-align: center;
}

.q-logo {
  font-family: var(--font-cond);
  font-size: 20px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 20px;
}

.q-progress-container {
  width: 100%;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.q-progress-bar {
  height: 100%;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.4s ease;
  width: 0%;
}

.q-progress-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
}

.q-container { position: relative; min-height: 60vh; }

.q-step {
  display: none;
  padding: 40px 0;
  animation: fadeInUp 0.4s ease;
}

.q-step.active { display: block; }
.q-step.exit-left { animation: fadeOutLeft 0.3s ease forwards; }
.q-step.entering-right { animation: fadeInRight 0.3s ease; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeOutLeft {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(-30px); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

.q-step-icon { font-size: 48px; margin-bottom: 16px; }

.q-step h2 {
  font-family: var(--font-cond);
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 8px;
  line-height: 1.2;
}

.q-subtitle { color: var(--text-muted); margin-bottom: 32px; }

.q-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.days-options {
  grid-template-columns: repeat(5, 1fr);
}

.q-option {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 20px 16px;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.q-option:hover {
  border-color: var(--primary);
  background: rgba(255,107,0,0.05);
}

.q-option.selected {
  border-color: var(--primary);
  background: rgba(255,107,0,0.12);
}

.q-option.compact {
  align-items: center;
  text-align: center;
  padding: 16px 8px;
}

.opt-icon { font-size: 28px; }
.opt-label { font-weight: 700; font-size: 16px; color: var(--text); }
.opt-desc { font-size: 12px; color: var(--text-muted); }

.q-form { margin-bottom: 24px; }

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
  width: 100%;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 6px;
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.q-nav { margin-top: 16px; }

.nav-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-family: var(--font);
  transition: all 0.2s;
}
.nav-btn:hover { border-color: var(--primary); color: var(--primary); }

/* ============================================================
   LOADING SCREEN
   ============================================================ */
.loading-screen {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.loading-content { text-align: center; }

.loading-spinner {
  width: 64px;
  height: 64px;
  border: 4px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 24px;
}

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

.loading-content h2 {
  font-family: var(--font-cond);
  font-size: 28px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 24px;
}

.loading-steps { display: flex; flex-direction: column; gap: 8px; }

.loading-step {
  font-size: 14px;
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s;
}

.loading-step.active {
  color: var(--text);
  background: rgba(255,107,0,0.1);
  border-left: 3px solid var(--primary);
}

/* ============================================================
   RESULTS PAGE
   ============================================================ */
.results-page { background: var(--dark); }

.results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: var(--dark2);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.rh-logo {
  font-family: var(--font-cond);
  font-size: 20px;
  font-weight: 900;
  color: var(--primary);
}

.rh-name {
  font-family: var(--font-cond);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-muted);
}

.results-hero {
  background: linear-gradient(135deg, #0a0a0a, #1a0800);
  padding: 60px 20px;
  border-bottom: 3px solid var(--primary);
}

.results-hero-text { max-width: 800px; }

.results-hero h1 {
  font-family: var(--font-cond);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 900;
  margin-bottom: 20px;
}

.plan-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.plan-tag {
  background: rgba(255,107,0,0.15);
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

/* Overview cards */
.plan-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 32px 0;
}

.overview-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}

.oc-icon { font-size: 28px; margin-bottom: 8px; }
.oc-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; color: var(--text-muted); margin-bottom: 4px; text-transform: uppercase; }
.oc-value { font-size: 14px; font-weight: 700; color: var(--primary); }

/* Tab bar */
.tab-bar {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0;
}

.tab-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-cond);
  font-size: 16px;
  font-weight: 700;
  padding: 12px 24px;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
  letter-spacing: 0.5px;
}

.tab-btn:hover { color: var(--text); }
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }

.tab-content { display: none; }
.tab-content.active { display: block; }

/* Plan section header */
.plan-section-header { margin-bottom: 24px; }

.plan-section-header h2 {
  font-family: var(--font-cond);
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 12px;
}

.plan-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.meta-pill {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  color: var(--text-muted);
}

/* Macro bar */
.macro-bar-container {
  display: flex;
  height: 48px;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 32px;
}

.macro-segment {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.macro-segment span {
  padding: 0 8px;
  text-align: center;
  font-size: 11px;
}

.macro-segment.protein { background: var(--primary); }
.macro-segment.carbs { background: #2563eb; }
.macro-segment.fats { background: #7c3aed; }

/* Week accordion cards */
.week-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.week-card.open { border-color: var(--primary); }
.week-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  user-select: none;
}

.week-card-header:hover { background: rgba(255,107,0,0.05); }

.week-card-title { display: flex; align-items: center; gap: 12px; }
.week-badge {
  background: var(--primary);
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap;
}
.week-theme { font-size: 15px; font-weight: 600; color: var(--text); }
.week-toggle { color: var(--primary); font-size: 14px; }

.week-card-body { padding: 20px; border-top: 1px solid var(--border); }

/* Meal grid */
.meals-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.meal-category {}
.meal-cat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.meal-list { list-style: none; }
.meal-list li {
  font-size: 13px;
  color: #ccc;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
}
.meal-list li:last-child { border-bottom: none; }
.week-note { color: var(--text-muted); font-size: 14px; padding: 8px 0; }

/* Notes box */
.plan-notes-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  padding: 24px;
  margin-top: 24px;
}

.notes-grid { display: flex; flex-direction: column; gap: 12px; }
.note-item { font-size: 14px; color: #ccc; line-height: 1.6; }

/* Workout */
.workout-desc {
  color: #ccc;
  font-size: 15px;
  margin-bottom: 24px;
  max-width: 700px;
}

.session-block {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 12px;
}

.session-block h4 {
  font-family: var(--font-cond);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.session-warmup, .session-cardio, .session-cooldown, .session-focus, .session-notes, .session-circuit {
  font-size: 13px;
  color: var(--text-muted);
  padding: 6px 0;
}

.exercise-table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
  font-size: 13px;
}

.exercise-table th {
  text-align: left;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--text-muted);
  padding: 8px;
  border-bottom: 2px solid var(--border);
  text-transform: uppercase;
}

.exercise-table td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--border);
  color: #ddd;
}

.exercise-table tbody tr:hover { background: rgba(255,107,0,0.04); }
.exercise-list { list-style: none; }
.exercise-list li { padding: 6px 0; border-bottom: 1px solid var(--border); font-size: 13px; color: #ccc; }

.week-progression-note {
  background: rgba(255,107,0,0.08);
  border-left: 3px solid var(--primary);
  padding: 12px 16px;
  font-size: 14px;
  color: #ddd;
  border-radius: 0 4px 4px 0;
  margin-top: 8px;
}

.structure-note {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 16px 20px;
  font-size: 14px;
  color: #ccc;
  margin-top: 8px;
}

.tips-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  margin-top: 24px;
}

.tips-box h3 {
  font-family: var(--font-cond);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.tips-box ul { list-style: none; }
.tips-box li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: #ccc;
}

/* Schedule */
.schedule-week-grid { display: flex; flex-direction: column; gap: 12px; }
.schedule-week {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
}

.schedule-week-label {
  font-family: var(--font-cond);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.schedule-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }

.schedule-day {
  border-radius: 6px;
  padding: 10px 4px;
  text-align: center;
}

.schedule-day.train-day {
  background: rgba(255,107,0,0.12);
  border: 1px solid var(--primary);
}

.schedule-day.rest-day {
  background: var(--dark2);
  border: 1px solid var(--border);
}

.sd-label { font-size: 11px; font-weight: 700; color: var(--text-muted); margin-bottom: 4px; }
.sd-status { font-size: 16px; margin-bottom: 2px; }
.sd-text { font-size: 10px; color: var(--text-muted); }

/* ============================================================
   BOOKING SECTION
   ============================================================ */
.book-session-cta {
  background: linear-gradient(135deg, var(--dark2), #1a0800);
  border: 1px solid var(--primary);
  border-radius: 12px;
  padding: 48px 32px;
  margin: 48px 0;
  text-align: center;
}

.bsc-text h2 {
  font-family: var(--font-cond);
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 12px;
}

.bsc-text p {
  color: #bbb;
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 16px;
}

.bsc-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.session-option {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 20px;
  position: relative;
  transition: border-color 0.2s;
}

.session-option:hover { border-color: var(--primary); }
.session-option.featured { border: 2px solid var(--primary); }

.so-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 12px;
  border-radius: 12px;
  white-space: nowrap;
}

.so-label { font-size: 12px; font-weight: 700; letter-spacing: 2px; color: var(--text-muted); margin-bottom: 8px; text-transform: uppercase; }
.so-price { font-family: var(--font-cond); font-size: 48px; font-weight: 900; color: var(--primary); margin-bottom: 8px; }
.so-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }

/* MODAL */
.modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.8);
}

.modal-box {
  position: relative;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  z-index: 1;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 20px;
  cursor: pointer;
}

.modal-box h2 {
  font-family: var(--font-cond);
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 20px;
}

.booking-option-info {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
}

.booking-option-info h3 {
  color: var(--primary);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.booking-option-info p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

/* Results footer */
.results-footer {
  padding: 24px;
  text-align: center;
  border-top: 1px solid var(--border);
  color: #555;
  font-size: 12px;
}

.results-body { padding: 32px 20px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .bio-grid { grid-template-columns: 1fr; }
  .bsc-options { grid-template-columns: 1fr; }
  .plan-overview-grid { grid-template-columns: repeat(2, 1fr); }
  .q-options { grid-template-columns: 1fr; }
  .days-options { grid-template-columns: repeat(3, 1fr); }
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .form-row { grid-template-columns: 1fr; }
  .tab-btn { font-size: 13px; padding: 10px 12px; }
  .exercise-table { display: block; overflow-x: auto; }
}

@media (max-width: 480px) {
  .plan-overview-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 36px; }
  .schedule-days { grid-template-columns: repeat(7, 1fr); gap: 3px; }
  .sd-label { font-size: 9px; }
  .sd-status { font-size: 12px; }
}

/* ============================================================
   PLACEHOLDER STYLES (visible until trainer fills in content)
   ============================================================ */

.hero-video-wrapper {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
}

.hero-video-wrapper video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-video-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0800 100%);
  border: 2px dashed #333;
}

.placeholder-icon { font-size: 48px; margin-bottom: 8px; opacity: 0.4; }
.placeholder-label { font-family: var(--font-cond); font-size: 18px; font-weight: 700; color: #555; letter-spacing: 3px; }
.placeholder-hint { font-size: 12px; color: #444; margin-top: 4px; }

.photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--card);
  border: 2px dashed #333;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.photo-placeholder-card {
  background: var(--card);
  border: 2px dashed #333;
  border-radius: 8px;
  padding: 48px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-height: 200px;
  justify-content: center;
}

.hero-logo-area {
  margin-bottom: 16px;
}

.logo-placeholder {
  display: inline-block;
  border: 2px dashed #444;
  padding: 10px 24px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.logo-placeholder-text {
  font-family: var(--font-cond);
  font-size: 20px;
  font-weight: 700;
  color: #555;
  letter-spacing: 3px;
}

.logo-img {
  max-height: 80px;
  max-width: 300px;
  object-fit: contain;
}

.bio-photo-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.bio-photo-wrap img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.bio-action-photo-wrap {
  margin-top: 16px;
  border-radius: 8px;
  overflow: hidden;
}

.bio-action-photo-wrap img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

/* ============================================================
   SPECIALTY SECTION
   ============================================================ */
.specialty-section {
  padding: 80px 20px;
  background: var(--dark2);
  text-align: center;
}

.specialty-section h2 {
  font-family: var(--font-cond);
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 48px;
}

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.specialty-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 16px;
  transition: border-color 0.2s, transform 0.2s;
}

.specialty-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.spec-icon { font-size: 40px; margin-bottom: 12px; }
.spec-label { font-family: var(--font-cond); font-size: 18px; font-weight: 700; }
.spec-desc { font-size: 12px; color: var(--text-muted); margin-top: 6px; }

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-section {
  padding: 80px 20px;
  text-align: center;
}

.gallery-section h2 {
  font-family: var(--font-cond);
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--text-muted);
  margin-bottom: 40px;
  font-size: 16px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-item img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  aspect-ratio: 3/4;
  display: block;
}

.gallery-caption {
  font-size: 12px;
  color: var(--text-muted);
  padding: 8px 0;
  text-align: center;
}

/* ============================================================
   PRICING PREVIEW
   ============================================================ */
.pricing-preview {
  padding: 80px 20px;
  background: var(--dark2);
  text-align: center;
}

.pricing-preview h2 {
  font-family: var(--font-cond);
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 12px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 40px auto 0;
}

.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px 24px;
  position: relative;
  transition: border-color 0.2s;
}

.pricing-card:hover { border-color: var(--primary); }
.pricing-card.featured { border: 2px solid var(--primary); }

.pc-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.pc-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pc-name {
  font-family: var(--font-cond);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.pc-price {
  font-family: var(--font-cond);
  font-size: 52px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 20px;
}

.pc-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
  color: #ccc;
  font-size: 14px;
}

.pc-features li {
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.final-cta {
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--dark), #1a0800);
  text-align: center;
  border-top: 3px solid var(--primary);
}

.final-cta h2 {
  font-family: var(--font-cond);
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 16px;
}

.final-cta p {
  font-size: 18px;
  color: #bbb;
  margin-bottom: 36px;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  margin: 0 12px;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-link:hover { color: var(--primary); }

.footer-links {
  margin: 12px 0;
}

.footer-powered {
  color: #444;
  font-size: 11px;
  margin-top: 8px;
}

/* ============================================================
   QUESTIONNAIRE — remove branding where needed
   ============================================================ */
.q-logo { cursor: pointer; }

/* ============================================================
   RESPONSIVE — new sections
   ============================================================ */
@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .specialty-grid { grid-template-columns: repeat(2, 1fr); }
  .final-cta h2 { font-size: 36px; }
}

/* ============================================================
   NAV BAR
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,107,0,0.2);
}

.nav-logo {
  font-family: var(--font-cond);
  font-size: 22px;
  font-weight: 900;
  color: var(--primary);
  cursor: pointer;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--primary); }

.nav-cta {
  background: var(--primary) !important;
  color: white !important;
  padding: 10px 20px;
  border-radius: 4px;
  font-family: var(--font-cond);
  font-size: 15px !important;
  font-weight: 700 !important;
}

.hero { padding-top: 64px; }

/* ============================================================
   HERO VALUE PROP BAR
   ============================================================ */
.hero-value-prop {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,107,0,0.3);
  border-radius: 8px;
  padding: 16px 24px;
  backdrop-filter: blur(4px);
  flex-wrap: wrap;
  justify-content: center;
}

.hvp-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hvp-icon { font-size: 24px; }

.hvp-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.hvp-text span {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 12px;
}

.hvp-divider {
  color: rgba(255,107,0,0.4);
  font-size: 20px;
}

/* ============================================================
   PRICING SECTION (Landing)
   ============================================================ */
.pricing-section {
  padding: 100px 20px;
  background: var(--dark2);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: var(--font-cond);
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 12px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}

.price-card:hover { border-color: var(--primary); transform: translateY(-4px); }
.price-card.featured { border: 2px solid var(--primary); }

.pc-badge-top {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.autopay-badge { background: #7c3aed !important; }

.pc-top { margin-bottom: 24px; }

.pc-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pc-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}

.pc-price {
  font-family: var(--font-cond);
  font-size: 56px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.pc-per { color: var(--text-muted); font-size: 14px; }
.pc-compare { color: var(--success); font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.pc-desc { color: #bbb; font-size: 14px; line-height: 1.5; }

.pc-includes {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}

.pc-includes li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: #ccc;
}

/* ============================================================
   8-WEEK PROGRAM VALUE PROP SECTION
   ============================================================ */
.program-value {
  padding: 100px 20px;
}

.pv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.pv-text h2 {
  font-family: var(--font-cond);
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 16px;
}

.pv-text p {
  color: #bbb;
  font-size: 16px;
  margin-bottom: 24px;
  line-height: 1.7;
}

.pv-list {
  list-style: none;
  margin-bottom: 32px;
}

.pv-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: #ddd;
}

/* Program mockup */
.program-mockup {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.mockup-header {
  background: #2a2a2a;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.mockup-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}

.mockup-dot.red    { background: #ff5f57; }
.mockup-dot.yellow { background: #ffbd2e; }
.mockup-dot.green  { background: #28c840; }

.mockup-body { padding: 20px; }

.mockup-section {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.mockup-section:last-child { border-bottom: none; margin-bottom: 0; }

.mockup-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.mockup-value {
  font-size: 15px;
  font-weight: 700;
}

.accent-text { color: var(--primary); }

.mockup-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  font-size: 13px;
  color: #ccc;
}

.mockup-ex { }
.mockup-sets { color: var(--primary); font-weight: 700; }

.mockup-locked {
  margin-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #555;
  padding: 10px;
  background: rgba(0,0,0,0.3);
  border-radius: 4px;
  border: 1px dashed #333;
}

/* ============================================================
   PLAN PREVIEW PAGE
   ============================================================ */
.preview-page { background: var(--dark); }

.preview-wrapper { min-height: 100vh; }

.preview-topbar {
  padding: 16px 24px;
  background: var(--dark2);
  border-bottom: 1px solid var(--border);
}

.ptb-logo {
  font-family: var(--font-cond);
  font-size: 20px;
  font-weight: 900;
  color: var(--primary);
}

.plan-ready-banner {
  background: linear-gradient(135deg, rgba(255,107,0,0.15), rgba(255,107,0,0.05));
  border-bottom: 2px solid var(--primary);
  padding: 24px 20px;
}

.prb-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.prb-icon { font-size: 48px; }

.prb-text h2 {
  font-family: var(--font-cond);
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 4px;
}

.prb-text p { color: #bbb; font-size: 15px; }

.preview-body { padding: 32px 20px 80px; }

/* Preview cards */
.preview-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.preview-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}

.preview-card-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.preview-card-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

/* Locked plan teaser */
.locked-plan-teaser {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
}

.lpt-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: #1a1a1a;
  border-bottom: 1px solid var(--border);
}

.lpt-header h3 {
  font-family: var(--font-cond);
  font-size: 18px;
  font-weight: 700;
}

.lpt-lock-badge {
  background: #2a2a2a;
  border: 1px solid #444;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
}

.lpt-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.lpt-column {
  padding: 20px 24px;
}

.lpt-column:first-child {
  border-right: 1px solid var(--border);
}

.lpt-col-label {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.lpt-exercise-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.lpt-ex { color: #ccc; }
.lpt-sets { color: var(--primary); font-weight: 700; }

.lpt-meal-row {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: #ccc;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lpt-blur-row {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lpt-blurred {
  background: linear-gradient(90deg, #222 40%, #1a1a1a 100%);
  color: transparent;
  border-radius: 3px;
  font-size: 13px;
  padding: 4px 0;
  user-select: none;
  filter: blur(4px);
  opacity: 0.4;
}

.lpt-unlock-cta {
  padding: 16px 24px;
  background: rgba(255,107,0,0.06);
  border-top: 1px solid var(--border);
  text-align: center;
}

.unlock-text {
  font-size: 14px;
  color: #aaa;
}

/* Preview pricing grid */
.preview-pricing {
  margin-top: 40px;
}

.preview-pricing h2 {
  font-family: var(--font-cond);
  font-size: 36px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 8px;
}

.preview-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
}

.pp-card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
  text-align: center;
}

.pp-card:hover { border-color: var(--primary); transform: translateY(-3px); }
.pp-card.featured { border-color: rgba(255,107,0,0.5); }
.pp-card.selected { border-color: var(--primary); background: rgba(255,107,0,0.08); }

.pp-top-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 14px;
  border-radius: 20px;
  background: var(--primary);
  color: white;
  white-space: nowrap;
}

.pp-label {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.pp-price {
  font-family: var(--font-cond);
  font-size: 52px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.pp-per {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.pp-features {
  list-style: none;
  text-align: left;
  margin-bottom: 20px;
}

.pp-features li {
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: #ccc;
}

.pp-select-btn {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 15px;
  color: var(--primary);
  letter-spacing: 1px;
}

/* Checkout area */
.pp-checkout-area {
  background: var(--card);
  border: 2px solid var(--primary);
  border-radius: 12px;
  padding: 32px;
  margin-top: 8px;
}

.selected-pkg-display {
  background: rgba(255,107,0,0.1);
  border: 1px solid var(--primary);
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 15px;
  margin-bottom: 20px;
}

.autopay-note {
  font-size: 12px;
  color: #7c3aed;
  margin-top: 4px;
}

.secure-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
  margin-top: 12px;
}

/* ============================================================
   BOOKING CONFIRMED BANNER
   ============================================================ */
.booking-confirmed-banner {
  background: rgba(0,200,83,0.1);
  border-bottom: 2px solid var(--success);
  padding: 16px 20px;
}

.bcb-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bcb-icon { font-size: 28px; }

.bcb-text {
  font-size: 14px;
  color: #ccc;
  line-height: 1.5;
}

.bcb-text strong {
  color: var(--success);
  font-size: 16px;
  display: block;
  margin-bottom: 2px;
}

/* ============================================================
   SESSION TRACKER
   ============================================================ */
.session-tracker {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 32px;
}

.st-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.st-header h2 {
  font-family: var(--font-cond);
  font-size: 24px;
  font-weight: 900;
}

.st-meta {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

.st-progress-bar-wrap {
  width: 100%;
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 24px;
}

.st-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 4px;
  transition: width 0.4s ease;
  width: 0%;
}

.st-sessions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.session-chip {
  background: var(--dark2);
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  text-align: center;
  cursor: pointer;
  min-width: 80px;
  transition: all 0.2s;
  user-select: none;
}

.session-chip:hover { border-color: var(--primary); }
.session-chip.done { background: rgba(0,200,83,0.1); border-color: var(--success); }

.sc-num { font-size: 10px; color: var(--text-muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; }
.sc-label { font-size: 18px; margin-bottom: 4px; }
.sc-text { font-size: 11px; color: var(--text-muted); }

.st-footer { margin-top: 16px; }
.st-note { font-size: 12px; color: #555; }

/* ============================================================
   BOOK MORE CTA
   ============================================================ */
.book-more-cta {
  background: linear-gradient(135deg, var(--dark2), #1a0800);
  border: 1px solid var(--primary);
  border-radius: 12px;
  padding: 40px 32px;
  margin: 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.bmc-text h2 {
  font-family: var(--font-cond);
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 8px;
}

.bmc-text p { color: #bbb; font-size: 15px; }

/* ============================================================
   RESPONSIVE — new sections
   ============================================================ */
@media (max-width: 900px) {
  .pv-grid { grid-template-columns: 1fr; gap: 40px; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .preview-pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 32px auto; }
  .preview-cards { grid-template-columns: repeat(2, 1fr); }
  .lpt-content { grid-template-columns: 1fr; }
  .lpt-column:first-child { border-right: none; border-bottom: 1px solid var(--border); }
  .book-more-cta { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .site-nav { padding: 12px 16px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .st-sessions-grid { gap: 6px; }
  .session-chip { min-width: 64px; padding: 10px 8px; }
}


/* ============================================================
   BOOKING CALENDAR v2
   ============================================================ */

/* Modal backdrop */
.cal-modal {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: flex;
  align-items: flex-end;       /* sheet from bottom on mobile */
  justify-content: center;
  padding: 0;
}

@media (min-width: 640px) {
  .cal-modal {
    align-items: center;
    padding: 16px;
  }
}

.cal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.82);
}

/* The modal box itself */
.cal-box {
  position: relative;
  z-index: 1;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 16px 16px 0 0;
  width: 100%;
  max-width: 600px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;         /* children scroll, not the box */
}

@media (min-width: 640px) {
  .cal-box {
    border-radius: 16px;
    max-height: 88vh;
  }
}

/* ── HEADER (fixed) ──────────────────────────────────────── */
.cal-header {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 24px 14px;
  border-bottom: 1px solid var(--border);
}

.cal-header h2 {
  font-family: var(--font-cond);
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 2px;
}

.cal-header p { font-size: 12px; color: var(--text-muted); }

.cal-close-btn {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.cal-close-btn:hover { color: white; border-color: var(--primary); }

/* ── MONTH NAV (fixed) ───────────────────────────────────── */
.cal-month-nav {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--dark2);
}

.cal-month-title {
  font-family: var(--font-cond);
  font-size: 20px;
  font-weight: 700;
}

.cal-nav-btn {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font);
}
.cal-nav-btn:hover { border-color: var(--primary); color: var(--primary); }

/* ── SCROLLABLE BODY ─────────────────────────────────────── */
.cal-scroll-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 80px;       /* space for sticky footer */
}

/* scrollbar styling */
.cal-scroll-body::-webkit-scrollbar { width: 4px; }
.cal-scroll-body::-webkit-scrollbar-track { background: transparent; }
.cal-scroll-body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

/* ── CALENDAR GRID ───────────────────────────────────────── */
.cal-section { padding: 20px 20px 12px; }

.cal-day-headers {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 8px;
  text-align: center;
}
.cal-day-headers div {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  padding: 4px 0;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.c-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.15s;
  position: relative;
}

.c-blank { background: transparent; }

.c-off {
  color: #383838;
  background: transparent;
  cursor: not-allowed;
}

.c-on {
  background: var(--card);
  cursor: pointer;
  border: 1px solid var(--border);
}
.c-on:hover {
  background: rgba(255,107,0,0.15);
  border-color: var(--primary);
}

.c-today { border-color: var(--primary) !important; }
.c-today::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  background: var(--primary);
  border-radius: 50%;
}

.c-sel {
  background: var(--primary) !important;
  color: white !important;
  border-color: var(--primary) !important;
}
.c-sel::after { background: white; }

/* ── TIME SLOTS ──────────────────────────────────────────── */
.cal-slots-section {
  border-top: 1px solid var(--border);
  padding: 20px;
}

.cal-slots-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 80px;
  color: var(--text-muted);
  font-size: 14px;
  background: var(--card);
  border: 1px dashed var(--border);
  border-radius: 8px;
  padding: 20px;
}

.cal-slots-date-label {
  font-family: var(--font-cond);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.cal-slots-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Individual slot row */
.slot-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--card);
  transition: all 0.15s;
}

.slot-free {
  cursor: pointer;
}
.slot-free:hover {
  border-color: var(--primary);
  background: rgba(255,107,0,0.07);
}

.slot-active {
  border-color: var(--primary) !important;
  background: rgba(255,107,0,0.15) !important;
}

.slot-past, .slot-taken {
  opacity: 0.4;
  cursor: not-allowed;
}

.slot-icon {
  font-size: 18px;
  width: 28px;
  text-align: center;
  flex-shrink: 0;
  color: var(--primary);
}
.slot-past .slot-icon,
.slot-taken .slot-icon { color: var(--text-muted); }

.slot-details { flex: 1; }

.slot-time-range {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}

.slot-duration { font-size: 11px; color: var(--text-muted); }

.slot-right { flex-shrink: 0; }

.slot-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 12px;
}
.free-tag  { background: rgba(0,200,83,0.12);  color: var(--success); }
.sel-tag   { background: rgba(255,107,0,0.2);  color: var(--primary); }
.taken-tag { background: rgba(255,50,50,0.12); color: #ff6666; }
.past-tag  { background: rgba(100,100,100,0.15); color: #666; }

/* Loading state */
.cal-loading-slots {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 24px 0;
  color: var(--text-muted);
  font-size: 14px;
}
.cal-spin {
  width: 18px; height: 18px;
  border: 2px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

/* ── STICKY CONFIRM BAR ──────────────────────────────────── */
.cal-confirm-bar {
  position: sticky;
  bottom: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
  background: var(--dark2);
  border-top: 2px solid var(--primary);
  flex-wrap: wrap;
}

.cal-confirm-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
}

.ci-date { color: var(--text); }
.ci-dot  { color: var(--text-muted); }
.ci-time { color: var(--primary); font-size: 17px; }

.cal-confirm-btn {
  padding: 12px 28px;
  font-size: 15px;
  white-space: nowrap;
}

/* ── CALENDAR STEP ON PREVIEW PAGE ──────────────────────── */
.pp-calendar-step {
  background: var(--card);
  border: 2px solid var(--primary);
  border-radius: 12px;
  padding: 28px;
  margin-top: 16px;
}

.pcs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 8px;
}

.pcs-back {
  color: var(--text-muted);
  font-size: 13px;
  cursor: pointer;
  transition: color 0.2s;
}
.pcs-back:hover { color: var(--primary); }

.pcs-selected {
  font-size: 14px;
  font-weight: 600;
  color: var(--success);
}

.pcs-calendar-cta { text-align: center; }
.pcs-calendar-cta h3 {
  font-family: var(--font-cond);
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 8px;
}
.pcs-calendar-cta p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
  max-width: 400px;
  margin-inline: auto;
}

.pcs-slot-selected {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0,200,83,0.08);
  border: 1px solid var(--success);
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.pcs-slot-label { font-size: 11px; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.pcs-slot-value { font-size: 15px; font-weight: 700; color: var(--success); flex: 1; }
.pcs-change-btn {
  background: none; border: 1px solid var(--border);
  color: var(--text-muted); padding: 4px 12px;
  border-radius: 4px; cursor: pointer; font-size: 12px;
  transition: all 0.2s;
}
.pcs-change-btn:hover { border-color: var(--primary); color: var(--primary); }

.selected-slot-line { font-size: 13px; color: var(--success); margin-top: 4px; }

