/* ═══════════════════════════════════════════════════════════
   assets/css/main.css  —  Praxisbegehung Pro Design System
   ═══════════════════════════════════════════════════════════ */

/* ── Custom Properties ─────────────────────────────────── */
:root {
  --ink:          #16213e;
  --ink-soft:     #2d3561;
  --cream:        #faf9f6;
  --warm:         #f4f0e8;
  --gold:         #b8860b;
  --gold-light:   #f0dfa0;
  --gold-pale:    #fdf8e8;
  --teal:         #0a4a52;
  --teal-mid:     #1a7a86;
  --teal-light:   #e8f4f5;
  --green:        #1a5c2a;
  --green-light:  #e8f5ec;
  --red:          #8b1a1a;
  --red-light:    #fdf0f0;
  --mid:          #5a5970;
  --soft:         #8a8898;
  --border:       #dbd6cc;
  --border-light: #eae6de;
  --white:        #ffffff;

  --font-sans:  'Outfit', system-ui, sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;

  --radius-sm:  4px;
  --radius-md:  6px;
  --radius-lg:  10px;
  --radius-xl:  16px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.14);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--teal-mid); text-decoration: underline; }
a:hover { color: var(--teal); }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-serif); color: var(--ink); line-height: 1.15; }
h1 { font-size: clamp(28px, 5vw, 48px); font-weight: 700; letter-spacing: -0.5px; }
h2 { font-size: clamp(22px, 3.5vw, 32px); font-weight: 700; }
h3 { font-size: 20px; font-weight: 700; }
h4 { font-size: 16px; font-weight: 700; font-family: var(--font-sans); }
p  { margin-bottom: 14px; color: #28283a; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; }

/* ── Layout ─────────────────────────────────────────────── */
.container   { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container--sm { max-width: 640px;  margin: 0 auto; padding: 0 24px; }
.container--md { max-width: 860px;  margin: 0 auto; padding: 0 24px; }

/* ── Navigation ─────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(22, 33, 62, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.nav-brand {
  font-family: var(--font-serif);
  font-size: 19px; font-weight: 700;
  color: white; text-decoration: none;
}
.nav-brand:hover { color: var(--gold-light); }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-link {
  color: rgba(255,255,255,0.7);
  text-decoration: none; font-size: 14px;
  padding: 6px 12px; border-radius: var(--radius-md);
  transition: all 0.15s;
}
.nav-link:hover, .nav-link.active { color: white; background: rgba(255,255,255,0.1); }
.nav-link--admin { color: var(--gold-light) !important; }
.nav-btn {
  background: var(--gold); color: var(--ink);
  font-size: 13px; font-weight: 700;
  padding: 7px 16px; border-radius: var(--radius-md);
  text-decoration: none; transition: all 0.2s;
}
.nav-btn:hover { background: #d4980d; color: var(--ink); }
.nav-btn--ghost {
  background: transparent; border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  font-size: 13px; font-weight: 500;
  padding: 6px 14px; border-radius: var(--radius-md);
  text-decoration: none; transition: all 0.2s;
}
.nav-btn--ghost:hover { background: rgba(255,255,255,0.1); color: white; }

/* ── Main Content ───────────────────────────────────────── */
.main-content { min-height: calc(100vh - 120px); }

/* ── Alerts ─────────────────────────────────────────────── */
.alert {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 14px 20px;
  font-size: 14px; line-height: 1.6;
  border-left: 4px solid;
  margin: 0 0 0 0;
}
.alert__icon { flex-shrink: 0; }
.alert--error   { background: var(--red-light);   border-color: var(--red);      color: #4a1010; }
.alert--success { background: var(--green-light);  border-color: var(--green);    color: #0f2c17; }
.alert--info    { background: var(--teal-light);   border-color: var(--teal-mid); color: #0f3035; }
.alert--warning { background: var(--gold-pale);    border-color: var(--gold);     color: #4a3000; }

/* ── Cards ──────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.card--shadow { box-shadow: var(--shadow-md); }
.card__header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.card__title { font-family: var(--font-serif); font-size: 18px; font-weight: 700; }
.card__body  { padding: 24px; }
.card__footer {
  padding: 14px 24px;
  border-top: 1px solid var(--border);
  background: var(--warm);
  font-size: 13px; color: var(--mid);
}

/* ── Forms ──────────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--mid); margin-bottom: 6px;
}
.form-label--required::after { content: ' *'; color: var(--red); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 14.5px; color: var(--ink);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--teal-mid);
  box-shadow: 0 0 0 3px rgba(26,122,134,0.12);
}
.form-input.is-error { border-color: var(--red); }
.form-input.is-error:focus { box-shadow: 0 0 0 3px rgba(139,26,26,0.12); }
.form-textarea { resize: vertical; min-height: 80px; }
.form-hint { font-size: 12px; color: var(--soft); margin-top: 5px; }
.form-error { font-size: 12.5px; color: var(--red); margin-top: 5px; }

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

/* Checkbox */
.form-check { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #28283a; }
.form-check input[type="checkbox"] { width: 18px; height: 18px; min-width: 18px; margin-top: 2px; accent-color: var(--teal-mid); cursor: pointer; }
.form-check a { color: var(--teal-mid); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 14.5px; font-weight: 600;
  cursor: pointer; border: none;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--teal-mid); color: white;
  box-shadow: 0 2px 8px rgba(26,122,134,0.3);
}
.btn--primary:hover { background: var(--teal); color: white; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(26,122,134,0.4); }
.btn--gold {
  background: var(--gold); color: var(--ink);
  box-shadow: 0 2px 8px rgba(184,134,11,0.3);
}
.btn--gold:hover { background: #d4980d; color: var(--ink); transform: translateY(-1px); }
.btn--ghost {
  background: white; color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover { background: var(--warm); border-color: var(--mid); color: var(--ink); }
.btn--danger { background: var(--red); color: white; }
.btn--danger:hover { background: #6a1212; color: white; }
.btn--full { width: 100%; }
.btn--sm { padding: 7px 14px; font-size: 13px; }
.btn--lg { padding: 15px 36px; font-size: 16px; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* ── Tables ──────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1.5px solid var(--border); }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
thead tr { background: var(--ink); color: white; }
thead th { padding: 11px 16px; text-align: left; font-size: 11px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; white-space: nowrap; }
tbody tr { border-bottom: 1px solid var(--border-light); transition: background 0.15s; }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: var(--warm); }
tbody td { padding: 11px 16px; vertical-align: middle; }

/* ── Badges ──────────────────────────────────────────────── */
.badge {
  display: inline-block; padding: 2px 9px;
  border-radius: 10px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.badge--paid    { background: var(--green-light); color: var(--green); border: 1px solid rgba(26,92,42,0.2); }
.badge--pending { background: var(--gold-pale);   color: var(--gold);  border: 1px solid rgba(184,134,11,0.2); }
.badge--failed  { background: var(--red-light);   color: var(--red);   border: 1px solid rgba(139,26,26,0.2); }
.badge--admin   { background: #e8effe; color: #1a3a8a; border: 1px solid #b8c8f8; }

/* ── Stats Grid ──────────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; margin-bottom: 28px; }
.stat-card {
  background: white; border: 1.5px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-md); padding: 18px 20px;
}
.stat-card__num { font-family: var(--font-serif); font-size: 36px; font-weight: 700; color: var(--teal-mid); line-height: 1; display: block; }
.stat-card__label { font-size: 12px; color: var(--mid); margin-top: 6px; }

/* ── Section ─────────────────────────────────────────────── */
.section { padding: 60px 0; }
.section--dark { background: var(--ink); color: white; }
.section--warm { background: var(--warm); }
.section__eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.section__title { margin-bottom: 16px; }
.section__title em { font-style: italic; color: var(--teal-mid); }
.section--dark .section__title { color: white; }
.section--dark .section__title em { color: var(--gold-light); }
.section__lead { font-size: 16px; color: var(--mid); max-width: 560px; line-height: 1.75; margin-bottom: 40px; font-weight: 300; }
.section--dark .section__lead { color: rgba(255,255,255,0.6); }

/* ── Auth Pages ──────────────────────────────────────────── */
.auth-wrap {
  min-height: calc(100vh - 60px);
  display: flex; align-items: center; justify-content: center;
  padding: 40px 20px;
  background: var(--ink);
  position: relative;
}
.auth-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(26,122,134,0.2), transparent 65%);
}
.auth-card {
  position: relative; z-index: 1;
  width: 100%; max-width: 460px;
  background: var(--cream);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
  animation: cardIn 0.35s cubic-bezier(0.34,1.2,0.64,1);
}
@keyframes cardIn { from { transform: scale(0.92) translateY(16px); opacity: 0; } to { transform: scale(1) translateY(0); opacity: 1; } }
.auth-card__header {
  background: linear-gradient(135deg, var(--teal), var(--teal-mid));
  padding: 28px 32px;
  position: relative; overflow: hidden;
}
.auth-card__header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 0%, rgba(255,255,255,0.1), transparent 55%);
}
.auth-card__eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 8px; position: relative; z-index: 1; }
.auth-card__title { font-family: var(--font-serif); font-size: 24px; font-weight: 700; color: white; position: relative; z-index: 1; }
.auth-card__title em { color: var(--gold-light); font-style: italic; }
.auth-card__body { padding: 28px 32px; }
.auth-card__footer { padding: 16px 32px 24px; text-align: center; font-size: 13.5px; color: var(--mid); border-top: 1px solid var(--border); }
.auth-card__footer a { color: var(--teal-mid); }

/* ── Account / Dashboard ─────────────────────────────────── */
.account-wrap { padding: 40px 0; }
.account-grid { display: grid; grid-template-columns: 220px 1fr; gap: 28px; align-items: start; }
.account-sidebar { background: white; border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.account-sidebar__header { background: var(--ink); padding: 16px 20px; }
.account-sidebar__name { font-size: 14px; font-weight: 600; color: white; }
.account-sidebar__email { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.account-sidebar__nav { padding: 8px 0; }
.account-sidebar__link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px;
  font-size: 14px; color: var(--ink-soft);
  text-decoration: none;
  transition: all 0.15s; border-left: 3px solid transparent;
}
.account-sidebar__link:hover { background: var(--warm); color: var(--ink); }
.account-sidebar__link.active { background: var(--teal-light); color: var(--teal); border-left-color: var(--teal-mid); font-weight: 600; }
.account-sidebar__link .sl-icon { font-size: 15px; flex-shrink: 0; }

/* ── Admin ───────────────────────────────────────────────── */
.admin-layout { display: grid; grid-template-columns: 200px 1fr; min-height: calc(100vh - 60px); }
.admin-sidebar { background: var(--navy, #0f2044); padding: 24px 0; }
.admin-sidebar__section { font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.3); padding: 12px 20px 6px; }
.admin-sidebar__link {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 20px; font-size: 13.5px;
  color: rgba(255,255,255,0.65); text-decoration: none;
  transition: all 0.15s; border-left: 3px solid transparent;
}
.admin-sidebar__link:hover { background: rgba(255,255,255,0.07); color: white; }
.admin-sidebar__link.active { background: rgba(26,122,134,0.25); color: white; border-left-color: var(--teal-mid); }
.admin-main { padding: 32px; background: var(--cream); }
.admin-page-header { margin-bottom: 28px; padding-bottom: 16px; border-bottom: 1.5px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.admin-page-title { font-family: var(--font-serif); font-size: 26px; font-weight: 700; }

/* ── Hero (Landing Page) ─────────────────────────────────── */
.hero {
  background: var(--ink);
  padding: 100px 24px 80px;
  text-align: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(26,122,134,0.2), transparent 65%),
    radial-gradient(ellipse 40% 50% at 90% 80%, rgba(184,134,11,0.08), transparent 55%);
}
.hero__inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(184,134,11,0.15); border: 1px solid rgba(184,134,11,0.3);
  color: var(--gold-light); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 16px; border-radius: 20px; margin-bottom: 24px;
}
.hero__title { font-family: var(--font-serif); font-size: clamp(38px,7vw,72px); font-weight: 700; color: white; line-height: 1.05; letter-spacing: -1.5px; margin-bottom: 20px; }
.hero__title em { font-style: italic; color: var(--gold-light); }
.hero__sub { font-size: 17px; font-weight: 300; color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto 40px; line-height: 1.75; }
.hero__actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.hero__trust { font-size: 13px; color: rgba(255,255,255,0.4); }

/* ── Pricing ─────────────────────────────────────────────── */
.price-box {
  background: white; border: 2px solid var(--border);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius-xl);
  padding: 36px; max-width: 420px; margin: 0 auto;
  text-align: center; box-shadow: var(--shadow-lg);
}
.price-box__amount {
  font-family: var(--font-serif); font-size: 56px; font-weight: 700; color: var(--ink); line-height: 1;
  margin-bottom: 6px;
}
.price-box__vat { font-size: 13px; color: var(--mid); margin-bottom: 24px; }
.price-box__features { list-style: none; text-align: left; margin-bottom: 28px; }
.price-box__features li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 7px 0; border-bottom: 1px dotted var(--border-light);
  font-size: 14px; color: #28283a;
}
.price-box__features li:last-child { border-bottom: none; }
.price-box__features li::before { content: '✓'; color: var(--teal-mid); font-weight: 700; margin-top: 1px; flex-shrink: 0; }

/* ── Modal ───────────────────────────────────────────────── */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(10,10,20,0.85);
  backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: var(--cream); border-radius: var(--radius-xl);
  width: 100%; max-width: 500px;
  overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  animation: cardIn 0.3s cubic-bezier(0.34,1.2,0.64,1);
}
.modal__header { background: var(--ink); padding: 24px 28px; position: relative; }
.modal__close {
  position: absolute; right: 16px; top: 16px;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: none; color: white;
  cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 14px;
  transition: background 0.2s;
}
.modal__close:hover { background: rgba(255,255,255,0.2); }
.modal__title { font-family: var(--font-serif); font-size: 22px; font-weight: 700; color: white; }
.modal__title em { color: var(--gold-light); font-style: italic; }
.modal__body { padding: 24px 28px; }
.modal__footer { padding: 12px 28px 20px; text-align: center; font-size: 12px; color: var(--mid); border-top: 1px solid var(--border); }

/* ── Processing / Download ───────────────────────────────── */
.processing-wrap, .download-wrap-page {
  min-height: calc(100vh - 60px);
  background: var(--ink);
  display: flex; align-items: center; justify-content: center; padding: 40px 20px;
  position: relative;
}
.processing-wrap::before, .download-wrap-page::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 50% at 50% 40%, rgba(26,122,134,0.18), transparent 65%);
}

/* ── Timer ───────────────────────────────────────────────── */
.timer { display: flex; align-items: center; gap: 5px; }
.timer__block {
  background: var(--ink); color: var(--gold-light);
  font-family: var(--font-serif); font-size: 22px; font-weight: 700;
  padding: 5px 9px; border-radius: var(--radius-sm);
  min-width: 40px; text-align: center; line-height: 1;
}
.timer__sep { color: var(--mid); font-weight: 700; font-size: 18px; }

/* ── Spinner ─────────────────────────────────────────────── */
.spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.3); border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}
.btn.is-loading .spinner { display: inline-block; }
.btn.is-loading .btn__text { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Step List ───────────────────────────────────────────── */
.step-list { list-style: none; margin-bottom: 24px; }
.step-list__item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  font-size: 14px; color: rgba(255,255,255,0.6);
  transition: all 0.3s;
}
.step-list__item.is-active { background: rgba(26,122,134,0.2); border-color: rgba(26,122,134,0.4); color: rgba(255,255,255,0.9); }
.step-list__item.is-done   { background: rgba(26,92,42,0.2);   border-color: rgba(26,92,42,0.4);  color: rgba(255,255,255,0.6); }
.step-list__icon { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
.step-list__spinner { width: 14px; height: 14px; border: 2px solid rgba(255,255,255,0.15); border-top-color: var(--teal-mid); border-radius: 50%; animation: spin 0.8s linear infinite; margin-left: auto; display: none; }
.step-list__item.is-active .step-list__spinner { display: block; }

/* ── Download Button (animated) ─────────────────────────── */
.btn--download-pulse {
  animation: downloadPulse 2.5s 0.5s ease-in-out infinite;
}
@keyframes downloadPulse {
  0%,100% { box-shadow: 0 4px 16px rgba(184,134,11,0.3); }
  50%      { box-shadow: 0 6px 28px rgba(184,134,11,0.6); transform: translateY(-2px); }
}
.btn--download-pulse:hover { animation: none; }

/* ── Checklist Hub ───────────────────────────────────────── */
.cl-hub-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 16px; }
.cl-hub-card {
  background: rgba(255,255,255,0.05); border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); overflow: hidden;
  text-decoration: none; transition: all 0.2s; display: flex; flex-direction: column;
}
.cl-hub-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(184,134,11,0.4); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.cl-hub-card__body { padding: 18px 18px 14px; flex: 1; }
.cl-hub-card__num { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 1px; margin-bottom: 8px; }
.cl-hub-card__title { font-family: var(--font-serif); font-size: 16px; font-weight: 700; color: white; margin-bottom: 6px; }
.cl-hub-card__title em { color: var(--gold-light); font-style: italic; }
.cl-hub-card__desc { font-size: 12.5px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.cl-hub-card__footer { padding: 10px 18px; border-top: 1px solid rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.4); }
.cl-hub-card__arrow { color: var(--teal-mid); font-weight: 700; font-size: 15px; }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: rgba(255,255,255,0.35);
  flex-wrap: wrap; gap: 12px;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 13px; }
.footer-links a:hover { color: rgba(255,255,255,0.7); }

/* ── Utilities ───────────────────────────────────────────── */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.text-muted  { color: var(--mid); font-size: 13px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.d-flex { display: flex; }
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.w-full { width: 100%; }
.hidden { display: none; }
.divider { height: 1px; background: var(--border); margin: 24px 0; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links .nav-link { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .account-grid { grid-template-columns: 1fr; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 40px 0; }
  .auth-card__body { padding: 20px; }
  .modal__body { padding: 20px; }
  .hero { padding: 60px 20px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .cl-hub-grid { grid-template-columns: 1fr; }
}
