/* ── Wachportal Global CSS ───────────────────────────────────────────────── */

/* ── Scrollbar ───────────────────────────────────────────────────────────── */
* { scrollbar-width: thin; scrollbar-color: #3a3a3a #1a1a1a; }
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #1a1a1a; }
::-webkit-scrollbar-thumb { background: #3a3a3a; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #555555; }
::-webkit-scrollbar-corner { background: #1a1a1a; }
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Source+Sans+3:wght@300;400;600&display=swap');

:root {
  --c-bg:        #1a1a1a;
  --c-surface:   #222222;
  --c-surface2:  #2a2a2a;
  --c-border:    #333333;
  --c-border2:   #444444;
  --c-text:      #f2f2f2;
  --c-muted:     #888888;
  --c-accent:    #c8a84b;
  --c-accent2:   #e8c96a;
  --c-green:     #4caf82;
  --c-yellow:    #c8a84b;
  --c-red:       #c04040;
  --c-green-bg:  rgba(76,175,130,0.1);
  --c-yellow-bg: rgba(200,168,75,0.1);
  --c-red-bg:    rgba(192,64,64,0.1);
  --radius:      6px;
  --radius-lg:   10px;
  --shadow:      0 4px 24px rgba(0,0,0,0.5);
  --font-head:   'Rajdhani', sans-serif;
  --font-body:   'Source Sans 3', sans-serif;
  --transition:  all 0.18s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; overscroll-behavior-x: none; }

img, video, iframe, table { max-width: 100%; }

body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ── Typografie ────────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.2;
}
h1 { font-size: 2.2rem; }
h2 { font-size: 1.7rem; }
h3 { font-size: 1.3rem; }

a { color: inherit; text-decoration: none; }
a:not(.btn):hover { color: var(--c-accent) !important; text-decoration: none; }

/* ── Navigation ────────────────────────────────────────────────────────────── */
.navbar-links {
  display: flex;
  gap: 0.1rem;
  align-items: center;
  margin-left: auto;
  margin-right: 0.5rem;
}
.navbar-links a {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-muted);
  text-decoration: none;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.navbar-links a:hover {
  color: var(--c-accent) !important;
  background: var(--c-surface2);
  text-decoration: none;
}
@media (max-width: 760px) {
  .navbar-links { display: none; }
  .navbar-cta   { display: none !important; }
  .nav-burger   { display: flex !important; }
}

.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.35rem;
  color: var(--c-text);
  font-size: 1.6rem;
  line-height: 1;
  align-items: center;
  margin-left: auto;
}

/* ── Mobile Overlay-Menü ───────────────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--c-surface);
  z-index: 500;
  flex-direction: column;
  padding: 0 1.5rem 2rem;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  border-bottom: 1px solid var(--c-border);
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}
.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--c-text);
  font-size: 1.6rem;
  line-height: 1;
  padding: 0.35rem;
}
.mobile-menu-nav { flex: 1; display: flex; flex-direction: column; }
.mobile-menu-nav a {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-muted);
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--c-border);
  display: block;
  transition: color 0.15s;
}
.mobile-menu-nav a:hover, .mobile-menu-nav a.mm-active { color: var(--c-accent) !important; }
.mobile-menu-cta { padding-top: 2rem; }
.mobile-menu-cta .btn { width: 100%; text-align: center; padding: 0.9rem; font-size: 1rem; }

.navbar {
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
  padding: 0 clamp(1.5rem, 10vw, 12rem);
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar-brand {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 0;
}
.navbar-brand i {
  color: var(--c-accent);
  font-size: 1.25em;
  margin-right: 0.45rem;
  flex-shrink: 0;
}
.brand-logo {
  height: 1.25em;
  width: auto;
  margin-right: 0.45rem;
  flex-shrink: 0;
}
.navbar-brand span { color: var(--c-accent2); }
.footer-brand {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 0;
}
.footer-brand i { color: var(--c-accent); }
.footer-brand span { color: var(--c-accent2); }
.footer-brand .brand-logo { height: 1.25em; width: auto; margin-right: 0.4rem; flex-shrink: 0; }
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
}
.navbar-nav a {
  color: var(--c-muted);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  transition: var(--transition);
}
.navbar-nav a:hover, .navbar-nav a.active {
  color: var(--c-text);
  background: var(--c-surface2);
  text-decoration: none;
}
.nav-user {
  font-size: 0.85rem;
  color: var(--c-muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ── Layout ────────────────────────────────────────────────────────────────── */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}
.container-wide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* ── Cards ─────────────────────────────────────────────────────────────────── */
.card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.card-header {
  border-bottom: 1px solid var(--c-border);
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--c-muted);
}

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.25rem;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn:disabled { opacity: 0.45; cursor: not-allowed; }
.btn-primary {
  background: var(--c-accent);
  color: #fff;
}
.btn-primary:hover:not(:disabled) { background: var(--c-accent2); color: #fff; text-decoration: none; }
.btn-success {
  background: var(--c-green);
  color: #1a1a1a;
}
.btn-success:hover:not(:disabled) { filter: brightness(1.1); color: #1a1a1a; text-decoration: none; }
.btn-danger {
  background: var(--c-red);
  color: #fff;
}
.btn-danger:hover:not(:disabled) { filter: brightness(1.1); text-decoration: none; }
.btn-ghost {
  background: transparent;
  color: var(--c-muted);
  border: 1px solid var(--c-border);
}
.btn-ghost:hover:not(:disabled) {
  background: var(--c-surface2);
  color: var(--c-text);
  text-decoration: none;
}
.btn-sm { padding: 0.35rem 0.8rem; font-size: 0.85rem; }
.navbar .btn { padding: 0.5rem 1.35rem; font-size: 0.92rem; }
.btn-lg { padding: 0.75rem 2rem; font-size: 1.15rem; }
.btn-block { width: 100%; justify-content: center; }

/* ── Formular ──────────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.1rem; }
.form-label {
  display: block;
  font-size: 0.85rem;
  color: var(--c-muted);
  margin-bottom: 0.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-control {
  width: 100%;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  color: var(--c-text);
  padding: 0.6rem 0.9rem;
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--c-accent); box-shadow: 0 0 0 3px rgba(200,168,75,0.2); }
textarea.form-control { resize: vertical; min-height: 100px; }

/* ── Alerts ────────────────────────────────────────────────────────────────── */
.alert {
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.alert-error   { background: var(--c-red-bg);    border: 1px solid var(--c-red);    color: #e07070; }
.alert-success { background: var(--c-green-bg);  border: 1px solid var(--c-green);  color: var(--c-green); }
.alert-warning { background: var(--c-yellow-bg); border: 1px solid var(--c-yellow); color: var(--c-accent2); }

/* ── Badges ────────────────────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-head);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge-green  { background: var(--c-green-bg);  color: var(--c-green);  border: 1px solid var(--c-green); }
.badge-yellow { background: var(--c-yellow-bg); color: var(--c-yellow); border: 1px solid var(--c-yellow); }
.badge-red    { background: var(--c-red-bg);    color: var(--c-red);    border: 1px solid var(--c-red); }
.badge-blue   { background: rgba(200,168,75,0.12); color: var(--c-accent2); border: 1px solid var(--c-accent); }
.badge-grey   { background: rgba(136,136,136,0.12); color: var(--c-muted); border: 1px solid var(--c-border2); }

/* ── Tabellen ──────────────────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; overflow-y: hidden; }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
th {
  text-align: left;
  padding: 0.65rem 1rem;
  border-bottom: 2px solid var(--c-border);
  color: var(--c-muted);
  font-family: var(--font-head);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--c-border);
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--c-surface2); }

/* ── Loader ────────────────────────────────────────────────────────────────── */
.spinner {
  width: 32px; height: 32px;
  border: 3px solid var(--c-border);
  border-top-color: var(--c-accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3rem;
  color: var(--c-muted);
}

/* ── Progress ──────────────────────────────────────────────────────────────── */
.progress-bar-wrap {
  background: var(--c-surface2);
  border-radius: 99px;
  height: 6px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  background: var(--c-accent);
  border-radius: 99px;
  transition: width 0.3s ease;
}

/* ── Toast ─────────────────────────────────────────────────────────────────── */
#toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  left: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  z-index: 9999;
  pointer-events: none;
}
.toast {
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
  animation: slideIn 0.2s ease;
  max-width: 320px;
  pointer-events: auto;
}
@media (max-width: 500px) {
  #toast-container { left: 0.75rem; right: 0.75rem; bottom: 0.75rem; align-items: stretch; }
  .toast { max-width: 100%; text-align: center; }
}
.toast.success { border-color: var(--c-green); color: var(--c-green); }
.toast.error   { border-color: var(--c-red);   color: #e07070; }
@keyframes slideIn { from { transform: translateX(120%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@media (max-width: 500px) {
  @keyframes slideIn { from { transform: translateY(100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
}

/* ── Modal ─────────────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  padding: 1rem;
  overflow-y: auto;
}
.modal-overlay.hidden { display: none; }
.modal-box {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: calc(100dvh - 2rem);
}
@media (max-width: 600px) {
  .modal-overlay { align-items: flex-start; padding: 0.5rem; }
  .modal-box { max-height: calc(100dvh - 1rem); border-radius: var(--radius); }
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--c-border);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
}
.modal-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--c-muted);
  font-size: 1.1rem;
  padding: 0.2rem;
  line-height: 1;
}
.modal-close:hover { color: var(--c-text); }
.modal {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  width: 100%;
  max-width: 480px;
  box-shadow: var(--shadow);
}
.modal-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}

/* ── Werbung-Banner ────────────────────────────────────────────────────────── */
.ad-banner {
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--c-surface2);
}
.ad-banner img { width: 100%; display: block; }
.ad-label {
  font-size: 0.7rem;
  color: var(--c-muted);
  text-align: right;
  padding: 0.2rem 0.5rem;
}

/* ── Utility ───────────────────────────────────────────────────────────────── */
.hidden  { display: none !important; }
.mt-1   { margin-top: 0.5rem; }
.mt-2   { margin-top: 1rem; }
.mt-3   { margin-top: 1.5rem; }
.mb-1   { margin-bottom: 0.5rem; }
.mb-2   { margin-bottom: 1rem; }
.mb-3   { margin-bottom: 1.5rem; }
.text-muted  { color: var(--c-muted); }
.text-center { text-align: center; }
.text-right  { text-align: right; }
.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1       { gap: 0.5rem; }
.gap-2       { gap: 1rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }

.stat-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
}
.stat-card .stat-value {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--c-accent2);
  line-height: 1;
}
.stat-card .stat-label {
  font-size: 0.8rem;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.3rem;
}

@media (max-width: 700px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  h1 { font-size: 1.7rem; }
  .container, .container-wide { padding: 1.25rem 1rem; }
  .navbar { padding: 0 1rem; }
  .auth-box { padding: 1.25rem; }
}

/* ── Firma-Name in Navbar ─────────────────────────────────────────────────── */
.nav-firma-name {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: var(--c-muted);
  white-space: nowrap;
  overflow: hidden;
  max-width: 200px;
}
.nav-firma-name i { font-size: 0.95rem; flex-shrink: 0; }
.nav-firma-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .nav-firma-label { display: none; }
  .nav-firma-name { max-width: unset; }
}

/* ── User-Dropdown ────────────────────────────────────────────────────────── */
.user-dropdown { position: relative; }
.user-dropdown-btn {
  display: flex; align-items: center; gap: 0.45rem;
  background: none; border: 1px solid var(--c-border);
  border-radius: var(--radius); padding: 0.35rem 0.85rem;
  color: var(--c-muted); font-size: 0.85rem; cursor: pointer;
  transition: var(--transition); font-family: var(--font-body);
}
.user-dropdown-btn:hover { color: var(--c-text); border-color: var(--c-accent); }
.user-dropdown-btn .caret { font-size: 0.6em; opacity: 0.6; transition: transform 0.15s ease; }
.user-dropdown-btn.open .caret { transform: rotate(180deg); }
.user-dropdown-menu {
  position: absolute; top: calc(100% + 0.5rem); right: 0;
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  min-width: 200px; z-index: 300; overflow: hidden;
}
.dropdown-header {
  padding: 0.8rem 1rem 0.6rem;
  font-family: var(--font-head); font-weight: 700;
  font-size: 0.95rem; color: var(--c-text);
  border-bottom: 1px solid var(--c-border);
  letter-spacing: 0.03em;
}
.dropdown-item {
  display: block; width: 100%; text-align: left;
  padding: 0.7rem 1rem; background: none; border: none;
  color: var(--c-muted); font-size: 0.88rem; cursor: pointer;
  transition: var(--transition); font-family: var(--font-body);
}
.dropdown-item:hover { background: var(--c-surface2); color: var(--c-text); }
.dropdown-item.active { color: var(--c-accent2); background: var(--c-surface2); }
.dropdown-item-danger { color: var(--c-red) !important; }
.dropdown-item-danger:hover { background: var(--c-red-bg) !important; color: var(--c-red) !important; }
.dropdown-divider { border: none; border-top: 1px solid var(--c-border); margin: 0; }

/* ── Burger Button (nur Mobile) ─────────────────────────────────────────── */
.burger-btn {
  display: none;
  background: none;
  border: none;
  color: var(--c-text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .user-dropdown { display: none; }
  .burger-btn    { display: flex; align-items: center; }
  .nav-firma-name { display: none; }
}

/* ── Mobile Menu ─────────────────────────────────────────────────────────── */
.mob-menu-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 8000;
  opacity: 0; pointer-events: none;
  transition: opacity 0.22s ease;
}
.mob-menu-overlay.open { opacity: 1; pointer-events: auto; }

.mob-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(300px, 85vw);
  background: var(--c-surface);
  border-left: 1px solid var(--c-border);
  z-index: 8001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  overflow: hidden;
}
.mob-menu.open { transform: translateX(0); }

.mob-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--c-border);
  flex-shrink: 0;
}
.mob-menu-user {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-text);
}
.mob-menu-close {
  background: none; border: none;
  color: var(--c-muted); font-size: 1.3rem;
  cursor: pointer; padding: 0.25rem; line-height: 1;
}
.mob-menu-close:hover { color: var(--c-text); }
.mob-menu-body { flex: 1; overflow-y: auto; padding: 0.5rem 0; }
.mob-menu-label {
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--c-muted);
  padding: 0.85rem 1.25rem 0.3rem;
}
.mob-menu .dropdown-item { padding: 0.85rem 1.25rem; font-size: 0.95rem; }
.mob-menu .dropdown-divider { margin: 0.25rem 0; }

/* ── Sofort-Feedback ─────────────────────────────────────────────────────── */
.feedback-banner {
  display: flex; align-items: center; gap: 1rem;
  padding-bottom: 1.1rem;
  margin-bottom: 1.1rem;
  border-bottom: 1px solid var(--c-border);
  animation: feedbackIn 0.25s ease;
}
.feedback-correct { color: var(--c-green); }
.feedback-wrong   { color: var(--c-red); }
.feedback-icon    { font-size: 2.2rem; flex-shrink: 0; }
.feedback-banner strong { font-size: 1.5rem; font-weight: 700; }
.feedback-punkte  { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; margin-left: 0.4rem; }
.feedback-gesamt  { font-size: 0.85rem; margin-top: 0.2rem; color: var(--c-muted); }
@keyframes feedbackIn { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:translateY(0); } }

/* ── Einstellungen – Feedback-Optionen ───────────────────────────────────── */
.feedback-option {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem; border: 2px solid var(--c-border);
  border-radius: var(--radius-lg); cursor: pointer;
  margin-bottom: 0.75rem; transition: var(--transition);
}
.feedback-option:hover  { border-color: var(--c-accent); }
.feedback-option.active { border-color: var(--c-accent2); background: rgba(200,168,75,0.06); }
.feedback-radio {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid var(--c-border2); flex-shrink: 0;
  margin-top: 2px; transition: var(--transition);
}
.feedback-option.active .feedback-radio {
  border-color: var(--c-accent2); background: var(--c-accent2);
  box-shadow: 0 0 0 3px rgba(200,168,75,0.2);
}
.feedback-opt-title { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.2rem; }
.feedback-opt-desc  { font-size: 0.82rem; color: var(--c-muted); line-height: 1.5; }

/* ── Footer: aktive Seite ────────────────────────────────────────────────── */
.footer-col ul li a.footer-active {
  color: var(--c-accent2);
  font-weight: 600;
}
