/* Branchen pages – alternating light/dark layout */

/* Override feature-shared navbar on branchen pages */
body.br-page #navbar {
  background: rgba(15, 23, 42, .45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: rgba(255,255,255,.08);
}
body.br-page #navbar.scrolled {
  background: rgba(15, 23, 42, .92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
body.br-page {
  background: #ffffff;
  color: #0f172a;
}


/* ── Hero (dark) ───────────────────────────────────────── */
.br-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h, 72px) + 5rem) 0 5rem;
  background: linear-gradient(145deg, #020817 0%, #0f172a 35%, #1e1b4b 70%, #0f172a 100%);
  color: #fff;
}
.br-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(59,130,246,.18), transparent),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(99,102,241,.12), transparent);
  pointer-events: none;
}
.br-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.br-breadcrumb { font-size: .8125rem; color: rgba(255,255,255,.45); margin-bottom: 1.25rem; }
.br-breadcrumb a { color: rgba(255,255,255,.6); }
.br-breadcrumb a:hover { color: #93c5fd; }
.br-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .4rem 1rem; border-radius: 999px;
  font-size: .75rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 1.25rem;
  background: rgba(59,130,246,.15); border: 1px solid rgba(59,130,246,.28); color: #93c5fd;
}
.br-title {
  font-size: clamp(2.1rem, 4.5vw, 3rem);
  font-weight: 800; letter-spacing: -.03em; line-height: 1.12; margin-bottom: 1rem;
}
.br-sub { font-size: 1.125rem; color: rgba(255,255,255,.65); line-height: 1.75; margin-bottom: 2rem; max-width: 640px; }
.br-hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

@media (max-width: 640px) {
  .br-hero { padding: calc(var(--nav-h, 72px) + 3rem) 0 3.25rem; }
  .br-title { font-size: clamp(1.95rem, 8vw, 2.4rem); line-height: 1.12; }
  .br-sub { font-size: 1rem; line-height: 1.68; margin-bottom: 1.5rem; }
  .br-hero-cta { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .br-hero-cta .btn { width: 100%; max-width: 320px; justify-content: center; }
}

.br-accent-indigo .br-hero { background: linear-gradient(145deg, #020817 0%, #1e1b4b 40%, #312e81 75%, #0f172a 100%); }
.br-accent-indigo .br-badge { background: rgba(99,102,241,.18); border-color: rgba(99,102,241,.35); color: #a5b4fc; }
.br-accent-teal .br-hero { background: linear-gradient(145deg, #020c10 0%, #061a16 40%, #0a3d30 75%, #041812 100%); }
.br-accent-teal .br-badge { background: rgba(20,184,166,.18); border-color: rgba(20,184,166,.35); color: #5eead4; }
.br-accent-amber .br-hero { background: linear-gradient(145deg, #1a0f02 0%, #292006 40%, #3d2a06 75%, #120a02 100%); }
.br-accent-amber .br-badge { background: rgba(245,158,11,.18); border-color: rgba(245,158,11,.35); color: #fcd34d; }
.br-accent-blue .br-hero { background: linear-gradient(145deg, #020817 0%, #0f172a 40%, #1e3a8a 75%, #0f172a 100%); }
.br-accent-blue .br-badge { background: rgba(59,130,246,.18); border-color: rgba(59,130,246,.35); color: #93c5fd; }
.br-accent-pink .br-hero { background: linear-gradient(145deg, #180a12 0%, #2d0f22 40%, #4a1230 75%, #120810 100%); }
.br-accent-pink .br-badge { background: rgba(236,72,153,.18); border-color: rgba(236,72,153,.35); color: #f9a8d4; }
.br-accent-green .br-hero { background: linear-gradient(145deg, #021208 0%, #052e16 40%, #064e3b 75%, #021208 100%); }
.br-accent-green .br-badge { background: rgba(34,197,94,.18); border-color: rgba(34,197,94,.35); color: #86efac; }
.br-accent-violet .br-hero { background: linear-gradient(145deg, #0f0820 0%, #1e1040 40%, #3b0764 75%, #0f0820 100%); }
.br-accent-violet .br-badge { background: rgba(139,92,246,.18); border-color: rgba(139,92,246,.35); color: #c4b5fd; }
.br-accent-sky .br-hero { background: linear-gradient(145deg, #020f18 0%, #0c2340 40%, #0e4f6e 75%, #020f18 100%); }
.br-accent-sky .br-badge { background: rgba(14,165,233,.18); border-color: rgba(14,165,233,.35); color: #7dd3fc; }

/* ── Showcase: light section ───────────────────────────── */
.br-showcase {
  padding: 5rem 0;
  background: #ffffff;
  color: #0f172a;
}
.br-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3.5rem;
  align-items: center;
}
.br-showcase-grid--reverse .br-showcase-copy { order: 2; }
.br-showcase-grid--reverse .br-showcase-visual { order: 1; }
@media (max-width: 900px) {
  .br-showcase-grid { grid-template-columns: 1fr; gap: 2rem; }
  .br-showcase-grid--reverse .br-showcase-copy,
  .br-showcase-grid--reverse .br-showcase-visual { order: unset; }
}
.br-showcase-label {
  display: inline-flex; padding: .35rem 1rem; border-radius: 999px;
  font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  margin-bottom: 1rem;
  background: rgba(59,130,246,.1); border: 1px solid rgba(59,130,246,.2); color: #2563eb;
}
.br-showcase-copy h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem); font-weight: 800;
  margin-bottom: .85rem; line-height: 1.2; color: #0f172a;
}
.br-showcase-copy > p { color: #64748b; line-height: 1.75; margin-bottom: 1.25rem; font-size: 1.02rem; }
.br-list { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.br-list li {
  position: relative; padding-left: 1.25rem; margin-bottom: .6rem;
  color: #334155; font-size: .9375rem; line-height: 1.55;
}
.br-list li::before {
  content: ''; position: absolute; left: 0; top: .55rem;
  width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  box-shadow: 0 2px 6px rgba(59,130,246,.3);
}
.br-links { display: flex; flex-wrap: wrap; gap: .6rem; }
.br-links a {
  font-size: .8125rem; font-weight: 600; color: #2563eb;
  padding: .4rem .85rem; border: 1px solid rgba(37,99,235,.2);
  border-radius: 999px; background: rgba(59,130,246,.06);
  transition: background .2s, border-color .2s;
}
.br-links a:hover { background: rgba(59,130,246,.12); border-color: rgba(37,99,235,.35); }
.br-showcase-visual .mockup-card {
  box-shadow: 0 20px 50px rgba(15,23,42,.12), 0 4px 16px rgba(15,23,42,.06);
  border: 1px solid #e2e8f0;
}

/* ── Showcase: dark section ────────────────────────────── */
.br-showcase--alt {
  background: linear-gradient(160deg, #0f172a 0%, #1e1b4b 55%, #0f172a 100%);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.br-showcase--alt .br-showcase-label {
  background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); color: rgba(255,255,255,.85);
}
.br-showcase--alt .br-showcase-copy h2 { color: #fff; }
.br-showcase--alt .br-showcase-copy > p { color: rgba(255,255,255,.55); }
.br-showcase--alt .br-list li { color: rgba(255,255,255,.78); }
.br-showcase--alt .br-list li::before { background: #60a5fa; }
.br-showcase--alt .br-links a {
  color: #93c5fd; border-color: rgba(147,197,253,.25); background: rgba(255,255,255,.06);
}
.br-showcase--alt .br-links a:hover { background: rgba(255,255,255,.1); border-color: rgba(147,197,253,.4); }
.br-showcase--alt .br-showcase-visual .mockup-card {
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
  border-color: rgba(255,255,255,.1);
}

/* ── Hub (light section with homepage-style cards) ─────── */
.br-hub-section {
  padding: 5rem 0;
  background: #f8fafc;
}
.br-hub-header { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.br-hub-header .section-label {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .35rem 1rem; background: rgba(59,130,246,.1);
  border: 1px solid rgba(59,130,246,.2); border-radius: 999px;
  font-size: .75rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: #3b82f6;
}
.br-hub-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem); font-weight: 800;
  letter-spacing: -.02em; margin-bottom: .75rem; color: #0f172a;
}
.br-hub-header p { color: #64748b; line-height: 1.7; font-size: 1.05rem; }
.br-features-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 640px) { .br-features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .br-features-grid { grid-template-columns: repeat(3, 1fr); } }
.br-features-grid--3 {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .br-features-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .br-features-grid--3 { grid-template-columns: repeat(3, 1fr); }
}
.br-features-grid--4 {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .br-features-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .br-features-grid--4 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1200px) {
  .br-features-grid--4 { grid-template-columns: repeat(4, 1fr); }
}
.br-feature-card {
  position: relative;
  background: #fff; border: 1px solid #e2e8f0; border-radius: 16px;
  padding: 2rem 1.75rem; text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  overflow: hidden;
}
.br-feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #6366f1);
  opacity: 0;
  transition: opacity .3s;
}
.br-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(59,130,246,.12), 0 4px 12px rgba(0,0,0,.05);
  border-color: rgba(59,130,246,.3);
}
.br-feature-card:hover::before { opacity: 1; }
.br-feature-card:hover .br-feature-link { color: #2563eb; gap: .55rem; }
.br-feature-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
  position: relative;
  transition: transform .3s;
}
.br-feature-card:hover .br-feature-icon { transform: scale(1.08); }
.br-feature-icon svg { width: 26px; height: 26px; stroke-width: 1.75; }
.br-feature-title { font-size: 1.0625rem; font-weight: 800; color: #0f172a; margin-bottom: .5rem; letter-spacing: -.01em; }
.br-feature-desc { font-size: .9rem; color: #64748b; line-height: 1.7; flex: 1; }
.br-feature-desc strong { color: #334155; font-weight: 700; }
.br-feature-link {
  display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.25rem;
  font-size: .875rem; font-weight: 700; color: #3b82f6;
  padding: .4rem .85rem; border-radius: 8px;
  background: rgba(59,130,246,.06);
  transition: gap .2s, color .2s, background .2s;
}
.br-feature-card:hover .br-feature-link { background: rgba(59,130,246,.12); }

/* ── CTA (gradient) ────────────────────────────────────── */
.br-cta {
  padding: 5.5rem 0;
  text-align: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
  position: relative;
  overflow: hidden;
}
.br-cta::before {
  content: '';
  position: absolute;
  top: -50%; left: -25%; width: 150%; height: 200%;
  background: radial-gradient(ellipse at 50% 0%, rgba(59,130,246,.15) 0%, transparent 60%);
  pointer-events: none;
}
.br-cta h2 { font-size: clamp(1.75rem, 3vw, 2.35rem); font-weight: 800; margin-bottom: 1rem; color: #fff; position: relative; }
.br-cta p { color: rgba(255,255,255,.6); margin-bottom: 2rem; font-size: 1.05rem; position: relative; }
.br-cta .btn-lg { padding: 1rem 2.5rem; font-size: 1rem; border-radius: 12px; position: relative; }

/* ── Footer (dark) ─────────────────────────────────────── */
.br-footer {
  background: #020817;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,.06);
  color: #fff;
}
.br-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .br-footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .br-footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr; } }
.br-footer-col-title { font-size: .8125rem; font-weight: 700; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; }
.br-footer-links { display: flex; flex-direction: column; gap: .5rem; }
.br-footer-links a { font-size: .9rem; color: rgba(255,255,255,.45); }
.br-footer-links a:hover { color: rgba(255,255,255,.75); }
.br-footer-bottom { padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.06); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: .8125rem; color: rgba(255,255,255,.3); }

/* ── Mock components (light cards – readable) ──────────── */
.mockup-card,
.mockup-card * {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}
.mockup-card--light .mockup-body,
.mockup-card--light .br-mock-body { background: #f8fafc; padding: 1rem 1.1rem 1.1rem; }
.br-mock-row {
  display: flex; justify-content: space-between; align-items: center;
  gap: .75rem;
  padding: .75rem .9rem; margin-bottom: .5rem;
  background: #fff; border: 1px solid #e2e8f0; border-radius: 10px;
  font-size: .8125rem;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.br-mock-row:last-child { margin-bottom: 0; }
.br-mock-row:hover { border-color: rgba(59,130,246,.2); box-shadow: 0 2px 10px rgba(59,130,246,.06); transform: translateY(-1px); }
.br-mock-row > div:first-child { min-width: 0; flex: 1; }
.br-mock-row strong { display: block; color: #0f172a; font-weight: 700; letter-spacing: -.01em; }
.br-mock-row span { color: #64748b; font-size: .7rem; margin-top: .1rem; display: block; }
.br-mock-status {
  font-size: .62rem; font-weight: 700;
  padding: .2rem .55rem;
  border-radius: 999px;
  letter-spacing: .03em;
  white-space: nowrap;
  flex-shrink: 0;
}
.br-mock-status--ok    { background: rgba(16,185,129,.12); color: #047857; }
.br-mock-status--warn  { background: rgba(245,158,11,.14); color: #b45309; }
.br-mock-status--open  { background: rgba(59,130,246,.12); color: #1d4ed8; }

.br-cal-body { display: flex; flex-direction: column; gap: .4rem; padding: .55rem .65rem .65rem; }
.br-cal-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: .3rem; }
.br-cal-kpi { padding: .3rem .35rem; border-radius: 8px; background: #f9fafb; border: 1px solid #e5e7eb; }
.br-cal-kpi-val { font-size: .8rem; font-weight: 700; color: #111827; }
.br-cal-kpi-lbl { font-size: .48rem; color: #6b7280; }
.br-cal-kpi-val.orange { color: #ea580c; }
.br-cal-kpi-val.green { color: #059669; }
.br-cal { border: 1px solid #e5e7eb; border-radius: 10px; overflow: hidden; background: #fff; }
.br-cal-hd { display: flex; border-bottom: 1px solid #e5e7eb; background: #f9fafb; }
.br-cal-day-hd { flex: 1; padding: .3rem .1rem; text-align: center; border-right: 1px solid #e5e7eb; font-size: .48rem; color: #6b7280; font-weight: 600; }
.br-cal-day-hd:last-child { border-right: none; }
.br-cal-day-hd.today { background: #dbeafe; color: #2563eb; }
.br-cal-grid { display: flex; min-height: 120px; }
.br-cal-col { flex: 1; border-right: 1px solid #e5e7eb; padding: .3rem .25rem; display: flex; flex-direction: column; gap: .28rem; }
.br-cal-col:last-child { border-right: none; }
.br-shift { border-radius: 8px; border: 1px solid #e5e7eb; background: #fff; overflow: hidden; }
.br-shift-bar { height: 4px; }
.br-shift-bar--green { background: linear-gradient(90deg, #10b981, #14b8a6); }
.br-shift-bar--amber { background: linear-gradient(90deg, #fbbf24, #fb923c); }
.br-shift-inner { padding: .4rem .35rem .35rem; }
.br-shift-time { font-size: .48rem; font-weight: 600; color: #111827; }
.br-shift-role { font-size: .46rem; font-weight: 600; color: #111827; margin-top: .2rem; }
.br-shift-client { font-size: .42rem; color: #6b7280; }

.br-aa-body { padding: 1rem 1.1rem; background: #f8fafc; }
.br-aa-stats {
  display: flex; gap: 1rem;
  font-size: .68rem; font-weight: 600; color: #64748b;
  margin-bottom: .75rem;
  padding: .5rem .75rem;
  background: #fff; border: 1px solid #e2e8f0; border-radius: 8px;
}
.br-aa-stats .ok   { color: #047857; }
.br-aa-stats .warn { color: #b45309; }
.br-aa-row {
  border: 1px solid #e2e8f0; border-radius: 10px;
  padding: .65rem .8rem; margin-bottom: .45rem;
  background: #fff;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.br-aa-row:hover { border-color: rgba(59,130,246,.2); box-shadow: 0 2px 10px rgba(59,130,246,.06); transform: translateY(-1px); }
.br-aa-row--fail { border-color: #fecaca; background: linear-gradient(135deg, #fef2f2, #fff); }
.br-aa-meta strong { display: block; font-size: .78rem; color: #0f172a; font-weight: 700; }
.br-aa-meta span { font-size: .66rem; color: #64748b; margin-top: .1rem; display: block; }
.br-aa-emp { font-size: .74rem; font-weight: 600; color: #0f172a; margin-top: .35rem; }
.br-aa-score {
  font-size: .6rem; font-weight: 700;
  padding: .18rem .5rem;
  border-radius: 999px;
  background: rgba(16,185,129,.12); color: #047857;
  float: right;
  letter-spacing: .02em;
}
.br-aa-fail { font-size: .68rem; font-weight: 700; color: #dc2626; }

.br-obj-list { padding: 1rem 1.1rem; background: #f8fafc; }
.br-obj-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: .7rem .85rem; margin-bottom: .45rem;
  background: #fff; border: 1px solid #e2e8f0; border-radius: 10px;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.br-obj-item:last-child { margin-bottom: 0; }
.br-obj-item:hover { border-color: rgba(59,130,246,.2); box-shadow: 0 2px 10px rgba(59,130,246,.06); transform: translateY(-1px); }
.br-obj-name { font-size: .8rem; font-weight: 700; color: #0f172a; letter-spacing: -.01em; }
.br-obj-sub { font-size: .68rem; color: #64748b; margin-top: .15rem; display: block; }
.br-obj-badge {
  font-size: .62rem; font-weight: 700;
  padding: .2rem .55rem;
  border-radius: 999px;
  background: rgba(59,130,246,.12); color: #1d4ed8;
  letter-spacing: .03em;
}

.br-kpi-grid {
  display: grid; grid-template-columns: 1fr; gap: .55rem;
  padding: 1rem 1.1rem;
  background: #f8fafc;
}
@media (min-width: 480px) {
  .br-kpi-grid { grid-template-columns: repeat(3, 1fr); }
}
.br-kpi {
  text-align: center; padding: .85rem .5rem;
  background: #fff; border: 1px solid #e2e8f0; border-radius: 12px;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.br-kpi:hover { border-color: rgba(59,130,246,.2); box-shadow: 0 4px 14px rgba(59,130,246,.08); transform: translateY(-2px); }
.br-kpi-val {
  font-size: 1.2rem; font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #2563eb);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -.02em;
}
.br-kpi-lbl { font-size: .6rem; color: #64748b; margin-top: .25rem; font-weight: 500; }

.br-shift-model {
  display: grid; grid-template-columns: 1fr; gap: .55rem;
  padding: 1rem 1.1rem;
  background: #f8fafc;
}
@media (min-width: 480px) {
  .br-shift-model { grid-template-columns: repeat(3, 1fr); }
}
.br-shift-model-card {
  padding: 1rem .6rem .85rem;
  border-radius: 12px; border: 1px solid #e2e8f0;
  background: #fff; text-align: center;
  position: relative; overflow: hidden;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.br-shift-model-card:hover { border-color: rgba(59,130,246,.2); box-shadow: 0 4px 14px rgba(59,130,246,.08); transform: translateY(-2px); }
.br-shift-model-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
}
.br-shift-model-card--early::before { background: linear-gradient(90deg, #3b82f6, #6366f1); }
.br-shift-model-card--late::before  { background: linear-gradient(90deg, #22c55e, #14b8a6); }
.br-shift-model-card--night::before { background: linear-gradient(90deg, #8b5cf6, #ec4899); }
.br-shift-model-time { font-size: .8rem; font-weight: 800; color: #0f172a; letter-spacing: -.01em; }
.br-shift-model-name { font-size: .62rem; color: #64748b; margin-top: .25rem; font-weight: 500; }

.br-gps-map {
  position: relative; height: 150px;
  margin: 1rem 1.1rem;
  background:
    linear-gradient(135deg, #e0f2fe, #dbeafe),
    radial-gradient(circle at 30% 60%, rgba(59,130,246,.15), transparent 50%);
  border-radius: 12px; border: 1px solid #bfdbfe;
  overflow: hidden;
}
.br-gps-pin {
  position: absolute;
  font-size: .6rem; font-weight: 700;
  padding: .3rem .55rem;
  border-radius: 8px;
  background: #fff; border: 1px solid #93c5fd; color: #1e40af;
  box-shadow: 0 4px 12px rgba(59,130,246,.2);
}
.br-gps-list { padding: 0 1.1rem 1rem; background: #f8fafc; padding-top: .25rem; }
.br-gps-row {
  display: flex; align-items: center; gap: .65rem;
  padding: .65rem .85rem; margin-bottom: .4rem;
  background: #fff; border: 1px solid #e2e8f0; border-radius: 10px;
  font-size: .74rem;
  transition: border-color .25s, transform .25s;
}
.br-gps-row:last-child { margin-bottom: 0; }
.br-gps-row:hover { border-color: rgba(59,130,246,.2); transform: translateY(-1px); }
.br-gps-av {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
  color: #4338ca; font-size: .58rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.br-phone { max-width: 240px; margin: 0 auto; padding: 1rem 1.1rem 1.1rem; }
.br-phone-frame {
  border-radius: 22px; border: 2px solid #e2e8f0;
  background: #fff; overflow: hidden;
  box-shadow: 0 8px 24px rgba(15,23,42,.08);
}
.br-phone-status {
  padding: .4rem .6rem;
  background: #f8fafc;
  font-size: .55rem; color: #64748b; font-weight: 600;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
  letter-spacing: .04em;
}
.br-phone-push {
  margin: .75rem;
  padding: .65rem .75rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #eff6ff, #f0f9ff);
  border: 1px solid #bae6fd;
  box-shadow: 0 2px 8px rgba(14,165,233,.08);
}
.br-phone-push-title { font-size: .72rem; font-weight: 700; color: #0f172a; letter-spacing: -.01em; }
.br-phone-push-sub { font-size: .6rem; color: #64748b; margin-top: .2rem; line-height: 1.4; }
.br-phone-card {
  margin: 0 .75rem .75rem;
  padding: .65rem .75rem;
  border-radius: 10px; border: 1px solid #e2e8f0;
  background: #fff;
  transition: border-color .25s, transform .25s;
}
.br-phone-card:hover { border-color: rgba(59,130,246,.2); transform: translateY(-1px); }
.br-phone-card-time { font-size: .68rem; font-weight: 700; color: #0f172a; letter-spacing: -.01em; }
.br-phone-card-role { font-size: .6rem; color: #64748b; margin-top: .2rem; }

.br-req-pills {
  display: flex; flex-wrap: wrap; gap: .4rem;
  padding: 1rem 1.1rem 1.1rem;
  background: #f8fafc;
}
.br-req-pill {
  font-size: .68rem; font-weight: 600;
  padding: .35rem .7rem;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: .35rem;
  border: 1px solid transparent;
  letter-spacing: .01em;
  transition: transform .2s, box-shadow .2s;
}
.br-req-pill::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  flex-shrink: 0;
}
.br-req-pill:hover { transform: translateY(-1px); box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.br-req-pill--green { background: #ecfdf5; color: #047857; border-color: #a7f3d0; }
.br-req-pill--green::before { background: #10b981; }
.br-req-pill--blue  { background: #eff6ff; color: #1d4ed8; border-color: #bfdbfe; }
.br-req-pill--blue::before  { background: #3b82f6; }
.br-req-pill--amber { background: #fffbeb; color: #b45309; border-color: #fde68a; }
.br-req-pill--amber::before { background: #f59e0b; }

.br-cp-list { padding: 1rem 1.1rem; background: #f8fafc; }
.br-cp-item {
  display: flex; align-items: center; gap: .65rem;
  padding: .65rem .8rem; margin-bottom: .4rem;
  background: #fff; border: 1px solid #e2e8f0; border-radius: 10px;
  transition: border-color .25s, transform .25s;
}
.br-cp-item:last-child { margin-bottom: 0; }
.br-cp-item:hover { border-color: rgba(59,130,246,.2); transform: translateY(-1px); }
.br-cp-dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,.15);
}
.br-cp-dot--pending { background: #fbbf24; box-shadow: 0 0 0 3px rgba(251,191,36,.15); }
.br-cp-text { font-size: .76rem; color: #0f172a; font-weight: 600; flex: 1; }
.br-cp-time { font-size: .65rem; color: #64748b; font-weight: 500; }

.br-ts-body { padding: 1rem 1.1rem; background: #f8fafc; }
.br-ts-header {
  font-size: .62rem; font-weight: 700; color: #94a3b8;
  text-transform: uppercase; letter-spacing: .08em;
  margin: 0 0 .55rem .25rem;
}
.br-ts-row {
  display: grid; grid-template-columns: 1fr auto auto; gap: .65rem;
  align-items: center;
  padding: .65rem .85rem; margin-bottom: .35rem;
  background: #fff; border: 1px solid #e2e8f0; border-radius: 10px;
  font-size: .76rem;
  transition: border-color .25s, transform .25s;
}
.br-ts-row:last-child { margin-bottom: 0; }
.br-ts-row:hover { border-color: rgba(59,130,246,.2); transform: translateY(-1px); }
.br-ts-row strong { color: #0f172a; font-weight: 700; }
.br-ts-hrs {
  font-weight: 700; color: #2563eb;
  background: rgba(59,130,246,.1);
  padding: .2rem .5rem;
  border-radius: 999px;
  font-size: .68rem;
}

.br-slot-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: .5rem;
  padding: 1rem 1.1rem;
  background: #f8fafc;
}
.br-slot {
  padding: .75rem .7rem;
  border-radius: 10px; border: 1px solid #e2e8f0;
  background: #fff;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.br-slot:hover { border-color: rgba(59,130,246,.2); box-shadow: 0 2px 10px rgba(59,130,246,.06); transform: translateY(-1px); }
.br-slot-client { font-size: .72rem; font-weight: 700; color: #0f172a; letter-spacing: -.01em; }
.br-slot-role { font-size: .62rem; color: #64748b; margin-top: .15rem; }
.br-slot-fill {
  display: inline-block;
  font-size: .58rem; font-weight: 700; margin-top: .35rem;
  padding: .15rem .45rem;
  border-radius: 999px;
  background: rgba(16,185,129,.12); color: #047857;
  letter-spacing: .03em;
}
.br-slot-fill--open { background: rgba(245,158,11,.14); color: #b45309; }

/* ── FAQ ──────────────────────────────────────────────── */
.br-faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  margin-bottom: 1rem;
  background: #fff;
  overflow: hidden;
  transition: box-shadow .3s, border-color .3s, transform .3s;
}
.br-faq-item:hover { box-shadow: 0 8px 24px rgba(59,130,246,.08); transform: translateY(-1px); }
.br-faq-item[open] { border-color: rgba(59,130,246,.35); box-shadow: 0 4px 20px rgba(59,130,246,.1); }
.br-faq-item summary {
  padding: 1.35rem 1.75rem;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.br-faq-item summary::-webkit-details-marker { display: none; }
.br-faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  font-weight: 500;
  color: #94a3b8;
  background: #f1f5f9;
  border-radius: 8px;
  transition: all .3s;
}
.br-faq-item[open] summary::after {
  content: '\2212';
  color: #fff;
  background: #3b82f6;
}
.br-faq-item p {
  padding: 0 1.75rem 1.5rem;
  font-size: .9375rem;
  color: #64748b;
  line-height: 1.75;
  margin: 0;
}

/* Nav active state on branchen pages */
.nav-links > a.is-active { color: var(--c-400) !important; }
.nav-links > a.is-active::after { opacity: 1; transform: scaleX(1); }
