/* =============================================================
   Feller-Service Plattform — Stylesheet
   ============================================================= */

:root {
  --c-primary:        #1a2332;
  --c-primary-hover:  #243049;
  --c-accent:         #ff6b35;
  --c-accent-hover:   #e55a2b;
  --c-bg:             #ffffff;
  --c-bg-alt:         #f7f8fa;
  --c-bg-dark:        #1a2332;
  --c-text:           #1a2332;
  --c-text-muted:     #5b6578;
  --c-text-inverse:   #ffffff;
  --c-border:         #e2e6ec;
  --c-border-strong:  #c5ccd6;
  --c-success:        #10b981;
  --c-success-bg:     #d1fae5;
  --c-danger:         #ef4444;
  --c-danger-bg:      #fee2e2;
  --c-warning:        #f59e0b;
  --c-warning-bg:     #fef3c7;
  --c-info:           #0ea5e9;
  --c-info-bg:        #e0f2fe;

  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;

  --shadow-sm:  0 1px 2px rgba(15, 23, 42, .04);
  --shadow:     0 4px 12px rgba(15, 23, 42, .06);
  --shadow-lg:  0 12px 32px rgba(15, 23, 42, .10);

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --container-max: 1200px;
  --container-narrow: 760px;

  --header-h: 80px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-primary); text-decoration: none; transition: color .15s; }
a:hover { color: var(--c-accent); }

h1, h2, h3, h4, h5 {
  margin: 0 0 .6em;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: var(--c-primary);
}
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.25rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }
p  { margin: 0 0 1em; }

ul, ol { padding-left: 1.4em; margin: 0 0 1em; }
li { margin-bottom: .35em; }

hr { border: 0; border-top: 1px solid var(--c-border); margin: 2rem 0; }

/* ---------- Layout ---------- */

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }

.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-alt { background: var(--c-bg-alt); }
.section-dark { background: var(--c-bg-dark); color: var(--c-text-inverse); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--c-text-inverse); }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.text-center { text-align: center; }
.text-muted  { color: var(--c-text-muted); }
.text-small  { font-size: .9rem; }
.text-big    { font-size: 1.125rem; }
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: 2rem; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  line-height: 1.2;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .15s ease;
  text-decoration: none;
}
.btn:focus-visible { outline: 3px solid rgba(255, 107, 53, .35); outline-offset: 2px; }
.btn-primary { background: var(--c-accent); color: #fff; }
.btn-primary:hover { background: var(--c-accent-hover); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-dark { background: var(--c-primary); color: #fff; }
.btn-dark:hover { background: var(--c-primary-hover); color: #fff; }
.btn-ghost { background: transparent; color: var(--c-primary); border-color: var(--c-border-strong); }
.btn-ghost:hover { background: var(--c-bg-alt); color: var(--c-primary); }
.btn-danger { background: var(--c-danger); color: #fff; }
.btn-danger:hover { background: #d33; color: #fff; }
.btn-success { background: var(--c-success); color: #fff; }
.btn-success:hover { background: #0e9f73; color: #fff; }
.btn-sm { padding: 8px 16px; font-size: .9rem; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---------- Header (Public) ---------- */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--c-border);
  height: var(--header-h);
  display: flex; align-items: center;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: 100%; }
.site-logo { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 1.15rem; color: var(--c-primary); }
.site-logo img { height: 44px; width: auto; }
.site-logo:hover { color: var(--c-primary); }

.main-nav {
  display: flex; align-items: center; gap: 4px;
  list-style: none; margin: 0; padding: 0;
}
.main-nav a {
  display: block; padding: 10px 14px; font-weight: 500; color: var(--c-primary);
  border-radius: var(--radius-sm);
}
.main-nav a:hover, .main-nav a.active { background: var(--c-bg-alt); color: var(--c-accent); }
.main-nav .has-cta { margin-left: 8px; }

.nav-toggle {
  display: none; background: transparent; border: 0; padding: 8px;
  cursor: pointer; color: var(--c-primary);
}
.nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: #fff; border-bottom: 1px solid var(--c-border);
    padding: 16px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px 16px; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1a2332 0%, #2c3e5e 100%);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('/assets/images/hero-r1.jpg');
  background-size: cover; background-position: center;
  opacity: .35;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,35,50,.92) 0%, rgba(26,35,50,.65) 100%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; padding-top: 64px; padding-bottom: 64px; }
.hero h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 16px; }
.hero .lead { font-size: clamp(1.05rem, 2vw, 1.3rem); max-width: 640px; opacity: .94; margin-bottom: 32px; }
.hero .actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero .badge {
  display: inline-flex; gap: 8px; align-items: center;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(255,107,53,.18); color: #ffb593;
  font-size: .85rem; font-weight: 600; margin-bottom: 24px;
}
.hero .badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--c-accent); }

/* ---------- Cards ---------- */

.card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card-flat { box-shadow: none; }
.card-flat:hover { transform: none; box-shadow: none; }

.card-icon {
  width: 72px; height: 72px;
  border-radius: var(--radius);
  background: var(--c-bg-alt);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; overflow: hidden;
}
.card-icon img { width: 56px; height: 56px; object-fit: contain; }
.card h3 { margin-top: 0; font-size: 1.2rem; }
.card .card-link { font-weight: 600; color: var(--c-accent); display: inline-flex; align-items: center; gap: 6px; }
.card .card-link::after { content: '→'; transition: transform .15s; }
.card:hover .card-link::after { transform: translateX(4px); }

.service-card .card-image {
  margin: -28px -28px 22px;
  height: 200px; overflow: hidden; border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.service-card .card-image img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Container Cards (Buchung) ---------- */

.container-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }
.container-option {
  border: 2px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 0;
  cursor: pointer;
  transition: border-color .15s, transform .15s;
  overflow: hidden;
  background: #fff;
  display: block;
  position: relative;
}
.container-option:hover { border-color: var(--c-accent); transform: translateY(-2px); }
.container-option input[type=radio] { position: absolute; opacity: 0; pointer-events: none; }
.container-option .img { height: 140px; background: var(--c-bg-alt); }
.container-option .img img { width: 100%; height: 100%; object-fit: cover; }
.container-option .body { padding: 16px; }
.container-option .vol { display: inline-block; background: var(--c-accent); color: #fff; font-weight: 700; padding: 3px 10px; border-radius: 999px; font-size: .85rem; margin-bottom: 8px; }
.container-option .name { font-weight: 700; color: var(--c-primary); }
.container-option .dim { font-size: .85rem; color: var(--c-text-muted); margin-top: 4px; }
.container-option.selected,
.container-option input:checked + .img + .body,
.container-option:has(input:checked) { border-color: var(--c-accent); background: #fff7f2; }

.container-option.container-locked {
  opacity: .45;
  cursor: not-allowed;
  pointer-events: none;
  filter: grayscale(.4);
}
.container-option.container-locked:hover { border-color: var(--c-border); transform: none; }
.container-option .availability-badge { min-height: 1.2em; }

/* ---------- Photo Gallery ---------- */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}
.photo-tile {
  margin: 0;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.photo-tile a {
  display: block;
  aspect-ratio: 4/3;
  background: var(--c-bg-alt);
  overflow: hidden;
}
.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .2s;
}
.photo-tile:hover img { transform: scale(1.04); }
.photo-tile figcaption {
  padding: 8px 10px;
  font-size: .85rem;
  border-top: 1px solid var(--c-border);
}

/* ---------- Forms ---------- */

.form-grid { display: grid; gap: 20px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-row-3 { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 20px; }
@media (max-width: 700px) {
  .form-row-2, .form-row-3 { grid-template-columns: 1fr; }
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-weight: 600; font-size: .9rem; color: var(--c-primary); }
.form-group label .req { color: var(--c-accent); margin-left: 2px; }
.form-help { font-size: .85rem; color: var(--c-text-muted); }
.form-error { font-size: .85rem; color: var(--c-danger); margin-top: 4px; }

.input, .textarea, .select {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  border: 1px solid var(--c-border-strong);
  border-radius: var(--radius);
  color: var(--c-text);
  transition: border-color .15s, box-shadow .15s;
}
.input:focus, .textarea:focus, .select:focus {
  outline: none; border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(255,107,53,.18);
}
.input.is-invalid, .textarea.is-invalid, .select.is-invalid { border-color: var(--c-danger); }
.textarea { min-height: 110px; resize: vertical; }

.checkbox-row { display: flex; gap: 10px; align-items: flex-start; padding: 12px; background: var(--c-bg-alt); border-radius: var(--radius); }
.checkbox-row input { margin-top: 4px; flex-shrink: 0; }
.checkbox-row label { font-weight: 400; cursor: pointer; }
.checkbox-row a { font-weight: 600; }

.radio-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.radio-pills label {
  cursor: pointer; padding: 10px 18px; border: 1px solid var(--c-border-strong);
  border-radius: 999px; font-weight: 500; background: #fff; transition: all .15s;
}
.radio-pills input { display: none; }
.radio-pills input:checked + span,
.radio-pills label:has(input:checked) { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }

/* Honeypot — vor Spam-Bots verstecken */
.hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* ---------- Flash messages ---------- */

.alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 20px; border-left: 4px solid; }
.alert-success { background: var(--c-success-bg); color: #064e36; border-color: var(--c-success); }
.alert-danger  { background: var(--c-danger-bg);  color: #7f1d1d; border-color: var(--c-danger); }
.alert-info    { background: var(--c-info-bg);    color: #075985; border-color: var(--c-info); }
.alert-warning { background: var(--c-warning-bg); color: #78350f; border-color: var(--c-warning); }

/* ---------- Badges (Status) ---------- */

.badge {
  display: inline-block; padding: 3px 10px; font-size: .8rem; font-weight: 600;
  border-radius: 999px; line-height: 1.4; white-space: nowrap;
}
.badge-pending   { background: #fef3c7; color: #78350f; }
.badge-approved  { background: #d1fae5; color: #064e36; }
.badge-declined  { background: #fee2e2; color: #7f1d1d; }
.badge-delivered { background: #dbeafe; color: #1e3a8a; }
.badge-picked_up { background: #e0e7ff; color: #312e81; }
.badge-cancelled { background: #f3f4f6; color: #4b5563; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--c-primary); color: #c5ccd6;
  padding: 64px 0 24px; margin-top: 80px;
}
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .05em; }
.site-footer ul { list-style: none; padding: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: #c5ccd6; }
.site-footer a:hover { color: var(--c-accent); }
.site-footer .grid { gap: 40px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 48px; padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: .9rem;
}

/* ---------- App-/Admin-Layout ---------- */

.app-shell { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; background: var(--c-bg-alt); }
.app-sidebar {
  background: var(--c-primary); color: #c5ccd6; padding: 24px 0; position: sticky; top: 0; height: 100vh; overflow-y: auto;
}
.app-sidebar .brand { padding: 0 24px 24px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 16px; }
.app-sidebar .brand img { height: 38px; filter: brightness(0) invert(1); }
.app-sidebar .brand-name { color: #fff; font-weight: 700; margin-top: 8px; font-size: .95rem; letter-spacing: .03em; }
.app-sidebar nav { padding: 0 12px; }
.app-sidebar nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: var(--radius-sm);
  color: #c5ccd6; font-weight: 500; margin-bottom: 2px;
}
.app-sidebar nav a:hover { background: rgba(255,255,255,.06); color: #fff; }
.app-sidebar nav a.active { background: var(--c-accent); color: #fff; }
.app-sidebar nav .section-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: #6b7385; padding: 18px 14px 6px; }

.app-main { display: flex; flex-direction: column; min-width: 0; }
.app-header {
  background: #fff; border-bottom: 1px solid var(--c-border); padding: 16px 32px;
  display: flex; justify-content: space-between; align-items: center;
}
.app-header h1 { font-size: 1.3rem; margin: 0; }
.app-user { display: flex; align-items: center; gap: 12px; font-size: .9rem; color: var(--c-text-muted); }
.app-content { padding: 32px; flex: 1; }

@media (max-width: 850px) {
  .app-shell { grid-template-columns: 1fr; }
  .app-sidebar { position: relative; height: auto; }
}

/* ---------- Stats Cards ---------- */

.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.stat {
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 22px;
}
.stat .label { color: var(--c-text-muted); font-size: .85rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.stat .value { font-size: 2rem; font-weight: 700; color: var(--c-primary); margin-top: 6px; }
.stat .value.acc { color: var(--c-accent); }

/* ---------- Tables ---------- */

.table-wrap { background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius-lg); overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.table th, .table td { padding: 14px 18px; text-align: left; }
.table th { background: var(--c-bg-alt); font-weight: 600; color: var(--c-text-muted); font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; border-bottom: 1px solid var(--c-border); }
.table tbody tr { border-top: 1px solid var(--c-border); }
.table tbody tr:hover { background: var(--c-bg-alt); }
.table .actions { display: flex; gap: 8px; }

/* ---------- Booking Detail ---------- */

.detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; }
@media (max-width: 850px) { .detail-grid { grid-template-columns: 1fr; } }
.panel { background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 24px; }
.panel h3 { margin-top: 0; font-size: 1.1rem; }
.panel dl { display: grid; grid-template-columns: 180px 1fr; gap: 8px 16px; margin: 0; }
.panel dt { font-weight: 600; color: var(--c-text-muted); font-size: .9rem; }
.panel dd { margin: 0; }
@media (max-width: 700px) { .panel dl { grid-template-columns: 1fr; } .panel dt { margin-top: 8px; } }

.timeline { list-style: none; padding: 0; margin: 0; }
.timeline li { padding-left: 24px; position: relative; padding-bottom: 14px; }
.timeline li::before { content: ''; position: absolute; left: 6px; top: 6px; width: 10px; height: 10px; border-radius: 50%; background: var(--c-accent); }
.timeline li::after { content: ''; position: absolute; left: 10px; top: 18px; bottom: 0; width: 2px; background: var(--c-border); }
.timeline li:last-child::after { display: none; }
.timeline .time { font-size: .8rem; color: var(--c-text-muted); }

/* ---------- Calendar ---------- */

.calendar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.calendar-grid .day-label { font-weight: 600; color: var(--c-text-muted); padding: 8px; text-align: center; font-size: .85rem; text-transform: uppercase; }
.calendar-day {
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius-sm);
  min-height: 100px; padding: 8px; display: flex; flex-direction: column; gap: 4px;
}
.calendar-day.empty { background: transparent; border-color: transparent; }
.calendar-day.today { border-color: var(--c-accent); border-width: 2px; }
.calendar-day .num { font-weight: 600; color: var(--c-text-muted); font-size: .85rem; }
.calendar-day.today .num { color: var(--c-accent); }
.calendar-day .ev {
  background: var(--c-info-bg); color: #075985; font-size: .75rem;
  padding: 2px 6px; border-radius: 4px; text-decoration: none;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.calendar-day .ev.pending  { background: #fef3c7; color: #78350f; }
.calendar-day .ev.approved { background: #d1fae5; color: #064e36; }
.calendar-day .ev.delivered{ background: #dbeafe; color: #1e3a8a; }

/* ---------- Wizard / Stepper ---------- */

.stepper { display: flex; gap: 0; margin-bottom: 32px; }
.stepper .step { flex: 1; text-align: center; padding-bottom: 16px; border-bottom: 3px solid var(--c-border); color: var(--c-text-muted); font-weight: 600; font-size: .9rem; position: relative; }
.stepper .step.active { color: var(--c-accent); border-color: var(--c-accent); }
.stepper .step .num { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: var(--c-bg-alt); margin-right: 8px; font-weight: 700; }
.stepper .step.active .num { background: var(--c-accent); color: #fff; }

/* ---------- Auth pages ---------- */

.auth-page { min-height: 100vh; background: var(--c-bg-alt); display: flex; align-items: center; justify-content: center; padding: 40px 20px; }
.auth-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 40px; max-width: 460px; width: 100%; }
.auth-card-wide { max-width: 760px; }
.auth-card .logo { display: flex; justify-content: center; margin-bottom: 24px; }
.auth-card .logo img { height: 48px; }
.auth-card h1 { text-align: center; margin-bottom: 8px; font-size: 1.6rem; }
.auth-card .lead { text-align: center; color: var(--c-text-muted); margin-bottom: 32px; }
.auth-card .alt-link { text-align: center; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--c-border); }

/* ---------- Utilities ---------- */

.toolbar { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.search-input { max-width: 280px; }
.divider { height: 1px; background: var(--c-border); margin: 24px 0; }

.tag { display: inline-block; padding: 2px 8px; background: var(--c-bg-alt); border-radius: var(--radius-sm); font-size: .8rem; color: var(--c-text-muted); }

details.detail-box { background: var(--c-bg-alt); border-radius: var(--radius); padding: 14px 18px; margin-bottom: 12px; }
details.detail-box summary { cursor: pointer; font-weight: 600; color: var(--c-primary); }
details.detail-box[open] { background: #fff; border: 1px solid var(--c-border); }

.contact-list { list-style: none; padding: 0; }
.contact-list li { display: flex; gap: 12px; align-items: center; padding: 10px 0; }
.contact-list .icon { width: 36px; height: 36px; background: var(--c-accent); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; }

.cta-band {
  background: linear-gradient(120deg, var(--c-accent) 0%, #ff8e62 100%);
  color: #fff; border-radius: var(--radius-lg); padding: 48px;
  text-align: center;
}
.cta-band h2 { color: #fff; }

/* ---------- Print ---------- */

@media print {
  .site-header, .site-footer, .app-sidebar, .nav-toggle, .btn, .toolbar { display: none !important; }
  body { background: #fff; color: #000; }
}
