/* ═══════════════════════════════════════════════════════════════
   lebensfeld.coach – Master CSS
   Einzige CSS-Datei. Keine Konflikte. Kein Chaos.
═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ─── Navbar fix ────────────────────────────────────────────── */
:root {
  --bg:           #081926;
  --bg-2:         #0b2233;
  --bg-card:      #0e2d42;
  --border:       rgba(255,255,255,.08);
  --border-h:     rgba(255,255,255,.14);
  --orange:       #ef7d21;
  --orange-d:     #db6f16;
  --text:         #eaf3f8;
  --text-muted:   rgba(234,243,248,.72);
  --text-faint:   rgba(234,243,248,.38);
  --slate-50:     #f7fafc;
  --slate-100:    #eef4f8;
  --slate-200:    #dbe6ee;
  --slate-500:    #6d8194;
  --slate-700:    #33485a;
  --slate-900:    #122230;
  --success:      #10b981;
  --danger:       #ef4444;
  --warning:      #f59e0b;
  --radius:       12px;
  --radius-lg:    22px;
  --shadow:       0 10px 30px rgba(7,25,38,.1);
  --shadow-lg:    0 18px 44px rgba(7,25,38,.16);
}

/* ─── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 15px;
}
img { max-width: 100%; display: block; }
a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: none; }

/* ─── Container ─────────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ═══════════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════════ */
.navbar {
  position: sticky; top: 0; z-index: 200;
  height: 72px;
  background: rgba(8,25,38,.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.navbar-brand { display: flex; align-items: center; flex-shrink: 0; }
.navbar-brand img {
  height: 52px;
  width: auto;
  display: block;
  border-radius: 8px;
}
.navbar-brand:hover { opacity: .85; }

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.navbar-links a {
  color: var(--text-muted);
  font-size: 14px; font-weight: 500;
  transition: color .18s;
  white-space: nowrap;
}
.navbar-links a:hover { color: var(--text); }

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav-plain {
  color: var(--text-muted) !important;
  font-size: 14px; font-weight: 500;
  transition: color .18s;
}
.nav-plain:hover { color: var(--text) !important; }

.nav-user { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: 14px; }
.nav-user img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
.nav-logout {
  background: none; border: none;
  color: var(--text-faint); font-size: 13px;
  cursor: pointer; font-family: inherit;
  transition: color .18s;
}
.nav-logout:hover { color: var(--text); }

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 10px 22px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: 14px;
  cursor: pointer; border: 1px solid transparent;
  transition: all .18s ease;
  white-space: nowrap; letter-spacing: -.01em;
}
.btn-primary, .btn-accent {
  background: var(--orange); color: #fff; border-color: var(--orange);
}
.btn-primary:hover, .btn-accent:hover {
  background: var(--orange-d); border-color: var(--orange-d); color: #fff;
}
.btn-outline {
  background: transparent; color: var(--text);
  border-color: var(--border-h);
}
.btn-outline:hover { border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.05); }
.btn-ghost {
  background: rgba(255,255,255,.07); color: var(--text-muted);
  border-color: var(--border);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); color: var(--text); }
.btn-white { background: #fff; color: var(--slate-900); font-weight: 700; }
.btn-white:hover { background: var(--slate-100); color: var(--slate-900); }
.btn-secondary {
  background: transparent; color: var(--text-muted);
  border-color: rgba(255,255,255,.18);
}
.btn-secondary:hover { background: rgba(255,255,255,.06); color: var(--text); border-color: rgba(255,255,255,.28); }
.btn-sm  { padding: 7px 16px; font-size: 13px; }
.btn-lg  { padding: 13px 30px; font-size: 15px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .45; cursor: not-allowed; }

/* ═══════════════════════════════════════════════════════════════
   ALERTS
═══════════════════════════════════════════════════════════════ */
.alert { padding: 13px 40px; font-size: 14px; }
.alert-success { background: rgba(16,185,129,.12); color: #6ee7b7; border-bottom: 1px solid rgba(16,185,129,.2); }
.alert-danger  { background: rgba(239,68,68,.12);  color: #fca5a5; border-bottom: 1px solid rgba(239,68,68,.2);  }
.alert-warning { background: rgba(239,125,33,.12);  color: #fdba74; border-bottom: 1px solid rgba(239,125,33,.2); }
.alert-info    { background: rgba(59,130,246,.12);  color: #93c5fd; border-bottom: 1px solid rgba(59,130,246,.2); }

/* ─── Badges ────────────────────────────────────────────────── */
.badge { display: inline-block; padding: 3px 10px; border-radius: 99px; font-size: 11px; font-weight: 600; letter-spacing: .03em; }
.badge-success   { background: rgba(16,185,129,.15); color: #6ee7b7; }
.badge-warning   { background: rgba(239,125,33,.15); color: #fdba74; }
.badge-danger    { background: rgba(239,68,68,.15);  color: #fca5a5; }
.badge-secondary { background: rgba(255,255,255,.07); color: var(--text-muted); }
.badge-primary   { background: rgba(239,125,33,.15); color: var(--orange); }

/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE – lf-* classes
═══════════════════════════════════════════════════════════════ */

/* Site Shell */
.lf-site-shell {
  background:
    radial-gradient(circle at top left, rgba(49,112,162,.2), transparent 34%),
    radial-gradient(circle at top right, rgba(239,125,33,.1), transparent 28%),
    linear-gradient(180deg, #081926 0%, #0b2233 100%);
}

/* Hero */
.lf-hero { padding: 100px 0 96px; }
.lf-hero-grid {
  display: grid;
  grid-template-columns: minmax(0,1.15fr) minmax(0,.85fr);
  gap: 52px;
  align-items: center;
}

.lf-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--text-muted);
  font-size: .88rem; font-weight: 600;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  padding: 9px 16px;
  margin-bottom: 30px;
}
.lf-eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(239,125,33,.18);
  flex-shrink: 0;
}

.lf-hero-title {
  margin: 0;
  color: #fff;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: .96;
  letter-spacing: -.05em;
  font-weight: 800;
}
.lf-hero-title span { color: #f3b37f; font-style: italic; }

.lf-hero-sub {
  margin: 28px 0 36px;
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.74;
  max-width: 580px;
}

.lf-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 36px; }

.lf-hero-points { display: flex; flex-wrap: wrap; gap: 16px 24px; }
.lf-hero-points span {
  display: inline-flex; align-items: center; gap: 9px;
  color: var(--text-faint); font-size: .9rem;
}
.lf-hero-points span::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #7ee3c4;
  flex-shrink: 0;
}

/* Hero Panel */
.lf-hero-panel {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 24px 80px rgba(0,0,0,.2);
}
.lf-panel-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
  color: var(--text-muted); font-weight: 600; font-size: 14px;
}
.lf-panel-chip {
  font-size: .72rem; letter-spacing: .05em; text-transform: uppercase;
  color: #f2b17a;
  background: rgba(239,125,33,.12);
  border: 1px solid rgba(239,125,33,.2);
  padding: 6px 12px; border-radius: 999px;
}
.lf-panel-card {
  background: #fff; border-radius: 18px; padding: 22px;
  color: var(--slate-900);
  box-shadow: var(--shadow);
}
.lf-panel-card h3 { margin: 0 0 8px; font-size: 1.25rem; letter-spacing: -.03em; color: var(--slate-900); }
.lf-panel-card > p { margin: 0 0 16px; color: var(--slate-500); line-height: 1.65; font-size: .93rem; }
.lf-panel-list { display: grid; gap: 10px; }
.lf-panel-item {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  background: #f7fafc;
  border: 1px solid var(--slate-200);
  border-radius: 12px; padding: 12px 16px;
  transition: transform .18s, box-shadow .18s;
}
.lf-panel-item:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(18,34,48,.07); }
.lf-panel-item strong { display: block; font-size: .93rem; color: var(--slate-900); }
.lf-panel-item small  { color: var(--slate-500); font-size: .8rem; }
.lf-panel-price { font-weight: 700; color: var(--slate-900); font-size: .85rem; white-space: nowrap; }

/* Sections */
.lf-section { padding: 96px 0; }
.lf-section-light { background: var(--slate-50); }
.lf-section-dark  { background: linear-gradient(180deg, #0c2233, #0a1d2b); }

.lf-section-head { text-align: center; max-width: 780px; margin: 0 auto 52px; }
.lf-section-kicker {
  display: inline-block; margin-bottom: 12px;
  color: var(--orange);
  font-weight: 700; font-size: .78rem;
  letter-spacing: .12em; text-transform: uppercase;
}
.lf-section-head h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -.045em; line-height: 1.04;
}
.lf-section-light .lf-section-head h2 { color: var(--slate-900); }
.lf-section-dark  .lf-section-head h2 { color: #fff; }
.lf-section-head p { margin: 0; font-size: 1.04rem; line-height: 1.74; }
.lf-section-light .lf-section-head p { color: var(--slate-500); }
.lf-section-dark  .lf-section-head p { color: rgba(234,243,248,.72); }

/* Offer Cards */
.lf-offer-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.lf-offer-card {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px; padding: 36px;
  transition: transform .2s, border-color .2s;
}
.lf-offer-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,.18); }
.lf-offer-label {
  display: inline-block; margin-bottom: 16px;
  color: #f2b17a;
  font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}
.lf-offer-card h3 { margin: 0 0 12px; font-size: 1.75rem; color: #fff; letter-spacing: -.04em; }
.lf-offer-card > p { margin: 0 0 22px; color: rgba(234,243,248,.75); line-height: 1.72; font-size: .98rem; }
.lf-offer-list { display: grid; gap: 11px; margin-bottom: 28px; }
.lf-offer-list span { display: flex; align-items: flex-start; gap: 10px; color: rgba(234,243,248,.82); font-size: .95rem; }
.lf-offer-list span::before { content: ""; width: 7px; height: 7px; margin-top: 8px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }

/* Topic / Step / Value / FAQ Cards */
.lf-topics-grid, .lf-steps-grid, .lf-values-grid, .lf-faq-grid {
  display: grid; gap: 22px; grid-template-columns: repeat(3, 1fr);
}
.lf-topic-card, .lf-step-card, .lf-value-card, .lf-faq-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.lf-topic-card:hover, .lf-step-card:hover, .lf-value-card:hover, .lf-faq-card:hover {
  transform: translateY(-5px); box-shadow: var(--shadow-lg);
}
.lf-topic-card h3, .lf-step-card h3, .lf-value-card h3, .lf-faq-card h3 {
  margin: 0 0 10px; font-size: 1.25rem; letter-spacing: -.03em; color: var(--slate-900);
}
.lf-topic-card p, .lf-step-card p, .lf-value-card p, .lf-faq-card p {
  margin: 0; color: var(--slate-700); line-height: 1.7; font-size: .95rem;
}
.lf-step-no, .lf-value-no {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 12px;
  background: #edf4f9; color: var(--orange);
  font-weight: 800; font-size: .9rem; margin-bottom: 18px;
}

/* SEO Text */
.lf-text-section { padding: 80px 0; background: #fff; }
.lf-text-wrap { max-width: 900px; margin: 0 auto; }
.lf-seo-text { display: grid; gap: 28px; color: var(--slate-700); line-height: 1.78; }
.lf-seo-text h2 { margin: 0 0 10px; color: var(--slate-900); font-size: 1.45rem; letter-spacing: -.03em; }
.lf-seo-text p { margin: 0; font-size: .97rem; }

/* Coach CTA */
.lf-coach-cta {
  padding: 100px 0;
  background: linear-gradient(180deg, #0b2233, #081926);
  text-align: center;
}
.lf-coach-cta-inner {
  max-width: 700px; margin: 0 auto;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px; padding: 48px 40px;
}
.lf-coach-cta h2 { margin: 0 0 14px; color: #fff; font-size: clamp(1.9rem,4vw,3rem); letter-spacing: -.04em; }
.lf-coach-cta p  { margin: 0 auto 30px; max-width: 540px; color: rgba(234,243,248,.75); line-height: 1.74; }

/* Ghost button for disabled */
.lf-ghost-btn {
  display: inline-flex; align-items: center; padding: 10px 22px;
  background: rgba(255,255,255,.06); color: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.1); border-radius: 8px;
  font-size: 14px; font-weight: 500; cursor: not-allowed;
}

/* ═══════════════════════════════════════════════════════════════
   DASHBOARD
═══════════════════════════════════════════════════════════════ */
.dashboard-layout { display: flex; min-height: calc(100vh - 72px); }
.sidebar { width: 240px; background: var(--bg-2); border-right: 1px solid var(--border); padding: 24px 0; flex-shrink: 0; }
.sidebar-logo { padding: 0 20px 20px; border-bottom: 1px solid var(--border); margin-bottom: 8px; }
.sidebar-logo img { height: 34px; }
.sidebar-user { display: flex; align-items: center; gap: 12px; padding: 18px 20px 14px; }
.sidebar-name { color: var(--text); font-size: 13px; font-weight: 600; }
.sidebar-role { color: var(--text-faint); font-size: 11px; text-transform: capitalize; letter-spacing: .03em; }
.sidebar-nav { display: flex; flex-direction: column; gap: 1px; padding: 4px 12px; }
.sidebar-link { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 8px; color: var(--text-muted); font-size: 13px; font-weight: 500; transition: all .15s; }
.sidebar-link:hover { background: rgba(255,255,255,.05); color: var(--text); }
.sidebar-link.active { background: rgba(239,125,33,.12); color: var(--orange); }
.sidebar-link--alert { color: #fdba74 !important; }
.sidebar-link .icon { font-size: 14px; width: 18px; text-align: center; }
.dashboard-main { flex: 1; padding: 36px 40px; overflow-y: auto; }
.page-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.page-title { font-size: 22px; font-weight: 700; letter-spacing: -.02em; }

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.stats-grid--3 { grid-template-columns: repeat(3,1fr); }
.stats-grid--5 { grid-template-columns: repeat(5,1fr); }
.stat-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 24px; }
.stat-card--green  { border-left: 2px solid rgba(16,185,129,.5); }
.stat-card--indigo { border-left: 2px solid rgba(239,125,33,.5); }
.stat-icon { font-size: 16px; margin-bottom: 10px; opacity: .6; }
.stat-value { font-size: 26px; font-weight: 700; color: var(--text); line-height: 1; margin-bottom: 4px; letter-spacing: -.02em; }
.stat-label { font-size: 11px; color: var(--text-faint); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.stat-badge { margin-top: 8px; font-size: 11px; background: rgba(239,125,33,.12); color: var(--orange); padding: 2px 8px; border-radius: 99px; display: inline-block; }

/* Cards */
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.card:hover { border-color: var(--border-h); }
.card-header { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; border-bottom: 1px solid var(--border); }
.card-header h2 { font-size: 15px; font-weight: 600; margin: 0; }
.card-body { padding: 24px; }

/* Forms */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 11px; font-weight: 700; color: var(--text-muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .05em; }
.form-control {
  width: 100%; padding: 10px 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif; font-size: 14px; color: var(--text);
  transition: border-color .15s;
}
.form-control:focus { outline: none; border-color: rgba(239,125,33,.4); background: rgba(255,255,255,.07); }
.form-control::placeholder { color: var(--text-faint); }
.form-control.is-invalid { border-color: rgba(239,68,68,.4); }
.invalid-feedback { font-size: 12px; color: #fca5a5; margin-top: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-textarea { width: 100%; padding: 10px 14px; background: rgba(255,255,255,.05); border: 1px solid var(--border); border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 14px; color: var(--text); resize: vertical; }
.form-textarea::placeholder { color: var(--text-faint); }
.form-check { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; font-size: 14px; color: var(--text-muted); }
.form-check-input { width: 15px; height: 15px; accent-color: var(--orange); }
.form-control--sm { padding: 6px 10px; font-size: 13px; }
select.form-control option { background: var(--bg-2); }

/* Auth */
.auth-page { min-height: calc(100vh - 72px); display: flex; align-items: center; justify-content: center; padding: 40px 24px; }
.auth-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 48px 44px; width: 100%; max-width: 440px; }
.auth-card--wide { max-width: 620px; }
.auth-logo img { height: 38px; margin-bottom: 24px; }
.auth-title { font-size: 24px; font-weight: 700; margin-bottom: 6px; letter-spacing: -.02em; }
.auth-sub { color: var(--text-muted); font-size: 14px; margin-bottom: 28px; }
.auth-footer { text-align: center; margin-top: 24px; font-size: 13px; color: var(--text-faint); }
.auth-footer a { color: var(--orange); }
.role-selector { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.role-option { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 18px; border: 1px solid var(--border); border-radius: var(--radius); cursor: pointer; transition: all .15s; }
.role-option input[type=radio] { display: none; }
.role-option.active { border-color: rgba(239,125,33,.45); background: rgba(239,125,33,.07); }
.role-icon { font-size: 22px; }
.role-label { font-size: 13px; font-weight: 600; color: var(--text-muted); }
.role-option.active .role-label { color: var(--orange); }

/* Tables */
.table-wrap { overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; font-size: 13px; }
.table th { text-align: left; padding: 11px 16px; background: rgba(255,255,255,.03); font-weight: 600; color: var(--text-faint); font-size: 10px; text-transform: uppercase; letter-spacing: .07em; border-bottom: 1px solid var(--border); }
.table td { padding: 13px 16px; border-bottom: 1px solid var(--border); color: var(--text); vertical-align: middle; }
.table tr:last-child td { border-bottom: none; }
.table tr:hover td { background: rgba(255,255,255,.02); }

/* Booking / Dashboard rows */
.booking-row { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.booking-row:last-child { border-bottom: none; }
.booking-row-info { flex: 1; }
.booking-row-name { font-weight: 600; font-size: 14px; }
.booking-row-service { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.booking-row-time { text-align: right; font-size: 13px; font-weight: 600; min-width: 90px; }
.time-small { font-size: 11px; color: var(--text-faint); font-weight: 400; }
.booking-row-actions { display: flex; gap: 8px; }

/* Booking flow */
.booking-flow { padding: 48px 0; }
.booking-progress { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 44px; font-size: 13px; font-weight: 500; }
.booking-progress .step { color: var(--text-faint); }
.booking-progress .step.active { color: var(--orange); }
.booking-progress .step.done { color: #6ee7b7; }
.step-sep { color: var(--border-h); }
.booking-grid { display: grid; grid-template-columns: 280px 1fr; gap: 24px; }
.booking-summary { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; text-align: center; }
.booking-summary h3 { font-size: 15px; font-weight: 600; margin: 12px 0 4px; }
.booking-service-title { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.booking-meta { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: var(--text-muted); }
.booking-calendar { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.calendar-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; font-weight: 600; }
.timezone-notice { font-size: 12px; color: var(--text-faint); margin-bottom: 16px; background: rgba(255,255,255,.03); padding: 8px 12px; border-radius: 6px; }
.slots-container { min-height: 200px; display: flex; gap: 16px; overflow-x: auto; margin-bottom: 24px; padding-bottom: 8px; }
.day-column { min-width: 90px; }
.day-label { font-size: 11px; font-weight: 600; color: var(--text-faint); text-align: center; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .05em; }
.slot-grid { display: flex; flex-direction: column; gap: 6px; }
.slot-btn { width: 100%; padding: 8px 4px; border: 1px solid var(--border); border-radius: 7px; background: rgba(255,255,255,.03); font-size: 13px; font-weight: 500; cursor: pointer; transition: all .12s; color: var(--text); font-family: 'Inter', sans-serif; }
.slot-btn:hover { border-color: var(--border-h); background: rgba(255,255,255,.06); }
.slot-btn.selected { border-color: var(--orange); background: rgba(239,125,33,.12); color: var(--orange); }
.no-slots { text-align: center; color: var(--text-faint); padding: 40px; font-size: 14px; }
.loading-spinner { color: var(--text-faint); font-size: 13px; text-align: center; padding: 40px; width: 100%; }

/* Checkout */
.checkout-grid { display: grid; grid-template-columns: 320px 1fr; gap: 24px; }
.checkout-summary, .checkout-payment { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.checkout-summary h3, .checkout-payment h3 { font-size: 15px; font-weight: 600; margin-bottom: 20px; letter-spacing: -.01em; }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; padding: 9px 0; border-bottom: 1px solid var(--border); color: var(--text-muted); }
.summary-row strong { color: var(--text); font-weight: 500; }
.summary-row:last-of-type { border-bottom: none; }
.summary-total { font-size: 15px; font-weight: 600; }
.summary-total strong { color: var(--orange); }
.summary-divider { height: 1px; background: var(--border); margin: 4px 0; }
.summary-note { font-size: 11px; color: var(--text-faint); margin-top: 12px; }
.stripe-element { border: 1px solid var(--border); border-radius: 8px; padding: 14px; margin-bottom: 20px; background: rgba(255,255,255,.03); }
.payment-error { color: #fca5a5; font-size: 13px; margin-bottom: 12px; min-height: 18px; }
.payment-secure { font-size: 11px; color: var(--text-faint); text-align: center; margin-top: 12px; }

/* Profile */
.profile-page { padding: 48px 0; }
.profile-grid { display: grid; grid-template-columns: 300px 1fr; gap: 28px; align-items: start; }
.profile-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; text-align: center; }
.profile-avatar { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; margin: 0 auto 20px; border: 2px solid var(--border); }
.profile-name { font-size: 20px; font-weight: 700; margin-bottom: 4px; letter-spacing: -.01em; }
.profile-title { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.profile-rating { font-size: 15px; font-weight: 600; color: var(--orange); margin: 12px 0; }
.profile-bio { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin: 14px 0; }
.profile-languages { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.tag { background: rgba(255,255,255,.07); color: var(--text-muted); padding: 4px 12px; border-radius: 99px; font-size: 11px; font-weight: 600; letter-spacing: .03em; text-transform: uppercase; border: 1px solid var(--border); }

/* Service cards */
.service-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 28px; display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; transition: border-color .2s; }
.service-card:hover { border-color: var(--border-h); }
.service-info h3 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.service-info p { font-size: 14px; color: var(--text-muted); margin-bottom: 12px; line-height: 1.6; }
.service-meta { display: flex; gap: 16px; font-size: 12px; color: var(--text-faint); text-transform: uppercase; letter-spacing: .04em; }
.service-cta { display: flex; flex-direction: column; align-items: flex-end; gap: 14px; min-width: 140px; }
.service-price { font-size: 24px; font-weight: 700; letter-spacing: -.02em; }

/* Reviews */
.review-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 24px; }
.review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.review-stars { color: var(--orange); font-size: 13px; }
.review-date { font-size: 11px; color: var(--text-faint); margin-left: auto; }
.review-comment { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* Misc */
.avatar-sm { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
.avatar-md { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.btn-icon { background: none; border: none; cursor: pointer; padding: 5px 8px; border-radius: 6px; color: var(--text-muted); }
.btn-icon:hover { color: var(--text); background: rgba(255,255,255,.06); }
.text-muted { color: var(--text-muted); }
.text-sm { font-size: 12px; }
.empty-state { color: var(--text-faint); font-size: 14px; padding: 20px 0; }
.empty-state-block { text-align: center; padding: 56px 20px; color: var(--text-faint); }
.empty-state-block p { margin-bottom: 20px; font-size: 15px; }
.flex-grow { flex: 1; }
.two-col-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.rule-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.exception-row { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 13px; color: var(--text-muted); }
.admin-coach-row { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.admin-coach-row:last-child { border-bottom: none; }
.admin-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.quick-actions { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 20px; }
.quick-action-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; text-align: center; color: var(--text-muted); transition: all .15s; font-size: 13px; }
.quick-action-card:hover { border-color: var(--border-h); color: var(--text); }
.qa-icon { display: block; font-size: 18px; margin-bottom: 8px; color: var(--orange); opacity: .8; }
.status-tabs { display: flex; gap: 0; border-bottom: 1px solid var(--border); }
.status-tab { padding: 10px 18px; font-size: 13px; font-weight: 500; color: var(--text-faint); border-bottom: 2px solid transparent; margin-bottom: -1px; cursor: pointer; transition: all .15s; }
.status-tab:hover { color: var(--text); }
.status-tab.active { color: var(--orange); border-bottom-color: var(--orange); }
.modal { position: fixed; inset: 0; z-index: 999; display: flex; align-items: center; justify-content: center; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.65); backdrop-filter: blur(4px); }
.modal-content { position: relative; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; max-width: 480px; width: 100%; }
.modal-content h3 { font-size: 18px; font-weight: 700; margin-bottom: 20px; }
.modal-actions { display: flex; gap: 12px; justify-content: flex-end; margin-top: 24px; }
.star-picker { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 4px; margin-top: 8px; }
.star-picker input { display: none; }
.star-picker label { font-size: 28px; color: var(--text-faint); cursor: pointer; transition: color .1s; }
.star-picker input:checked ~ label, .star-picker label:hover, .star-picker label:hover ~ label { color: var(--orange); }

/* Success */
.success-page { padding: 80px 0; }
.success-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 56px; max-width: 540px; margin: 0 auto; text-align: center; }
.success-icon { font-size: 44px; margin-bottom: 20px; }
.success-card h1 { font-size: 28px; font-weight: 700; margin-bottom: 8px; letter-spacing: -.02em; }
.success-ref { color: var(--text-faint); font-size: 13px; margin-bottom: 28px; }
.success-details { background: rgba(255,255,255,.03); border-radius: var(--radius); padding: 20px; margin: 20px 0; text-align: left; border: 1px solid var(--border); }
.detail-row { display: flex; justify-content: space-between; font-size: 14px; padding: 8px 0; border-bottom: 1px solid var(--border); color: var(--text-muted); }
.detail-row strong { color: var(--text); font-weight: 500; }
.detail-row:last-child { border-bottom: none; }
.success-email { font-size: 13px; color: var(--text-faint); margin: 16px 0; }
.success-actions { display: flex; gap: 12px; justify-content: center; margin-top: 28px; }

/* Coaches listing */
.coaches-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.coach-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color .2s, transform .2s; }
.coach-card:hover { border-color: var(--border-h); transform: translateY(-3px); }
.coach-card-avatar { aspect-ratio: 1; overflow: hidden; background: #0d2030; }
.coach-card-avatar img { width: 100%; height: 100%; object-fit: cover; }
.coach-card-body { padding: 20px 22px; }
.coach-card-body h3 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.coach-specialization { font-size: 11px; color: var(--text-faint); margin-bottom: 10px; letter-spacing: .04em; text-transform: uppercase; }
.coach-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.stars { color: var(--orange); font-size: 13px; font-weight: 600; }
.review-count { color: var(--text-faint); font-size: 12px; }
.coach-bio { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.coach-price { font-size: 14px; color: var(--orange); font-weight: 600; margin-bottom: 14px; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.footer { background: #040e14; border-top: 1px solid var(--border); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand img { height: 40px; width: auto; margin-bottom: 14px; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,.38); margin-bottom: 10px; line-height: 1.6; }
.footer-disclaimer { font-size: 11px; color: rgba(255,255,255,.18); line-height: 1.6; }
.footer h4 { color: rgba(255,255,255,.35); font-size: 10px; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .1em; }
.footer-link { display: block; font-size: 13px; color: rgba(255,255,255,.38); margin-bottom: 10px; transition: color .15s; }
.footer-link:hover { color: rgba(255,255,255,.7); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 24px; text-align: center; font-size: 12px; color: rgba(255,255,255,.18); }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 980px) {
  .lf-hero-grid, .lf-offer-wrap { grid-template-columns: 1fr; }
  .lf-topics-grid, .lf-steps-grid, .lf-values-grid, .lf-faq-grid { grid-template-columns: repeat(2,1fr); }
  .lf-hero { padding: 64px 0; }
  .coaches-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid, .stats-grid--5 { grid-template-columns: repeat(2,1fr); }
  .quick-actions { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .lf-topics-grid, .lf-steps-grid, .lf-values-grid, .lf-faq-grid, .lf-offer-wrap { grid-template-columns: 1fr; }
  .lf-hero-title { font-size: 2.6rem; }
  .lf-hero-actions { flex-direction: column; align-items: stretch; }
  .coaches-grid, .form-row, .two-col-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .profile-grid, .booking-grid, .checkout-grid { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .service-card { flex-direction: column; }
  .service-cta { align-items: flex-start; }
}

/* ── Navbar extras ── */
.navbar-actions { display: flex; align-items: center; gap: 12px; }
.nav-plain { color: var(--text-muted); font-size: 14px; font-weight: 500; transition: color .18s; }
.nav-plain:hover { color: var(--text); }
.nav-user { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: 14px; }
.nav-logout { background: none; border: none; color: var(--text-faint); font-size: 13px; cursor: pointer; font-family: 'Inter', sans-serif; transition: color .18s; }
.nav-logout:hover { color: var(--text); }